python hrflow api
v4.2.0
統一,釋放,自動化人才和勞動力數據
HRFLOW.AI是人才和勞動力數據的第一個智能係統,可實現領先的AI驅動人才和勞動力體驗。我們的API套件提供了一套AI解決方案,可以使用最先進的七個AI模塊釋放清潔,結構化,規範化,更新和分析的人才數據。
此外,hrflow.ai打破數據孤島,並為人才數據創建一個真實的來源(SSOT)。借助我們的API連接器,企業可以以毫秒為單位的工具之間同步數據,並構建可符合其業務邏輯的可自定義工作流程。
我們的API套件包括解析API,標記API,嵌入API,搜索API,評分API,Imaging API和OEM小部件。借助我們的自動化工作室和AI工作室,企業可以利用AI驅動的用戶界面和低代碼/無代碼自動化來創建高級自定義用戶體驗。
有關更多示例,請參見文檔。
使用pip install -U hrflow或conda install hrflow -c conda-forge 。

from hrflow import Hrflow
client = Hrflow ( api_secret = "YOUR_API_KEY" , api_user = "YOU_USER_EMAIL" )
# read file from directory (in binary mode)
with open ( "path_to_file.pdf" , "rb" ) as profile_file :
# Parse it using this method without reference:
response = client . profile . parsing . add_file (
source_key = "INSERT_THE_TARGET_SOURCE_KEY" ,
profile_file = file ,
sync_parsing = 1 , # This is to invoke real time parsing
tags = [{ "name" : "application_reference" , "value" : "TS_X12345" }], # Attach an application tag to the profile to be parsed
)