added

Python SDK: Introducing Rate Limit Management

Our HrFlow.ai Python SDK has been updated to include rate-limit management.

😍 Why it’s a big deal for HrFlow.ai users?

Our users can now control the flow of requests to the Profile Parsing API Endpoint.


🔧 How does it work?

  1. Install the HrFlow.ai Python SDK using the command pip install -U hrflow or conda install hrflow -c conda-forge.
  2. Log in to the HrFlow.ai Portal at hrflow.ai/signin.
  3. Obtain your API key from developers.hrflow.ai/docs/api-authentication.
  4. Ensure the Profile Parsing API is enabled in your account
  5. Create a Source as described at developers.hrflow.ai/docs/connectors-source.
  6. Use the add_file() function from our Python SDK, providing the necessary arguments and specify the following parameters in the function:
    • max_requests_per_minute: Sets the maximum number of requests allowed per minute.
    • min_sleep_per_request: Specifies the minimum time interval, in seconds, between two consecutive requests.
Python SDK: Introducing Rate Limit Management

Python SDK: Introducing Rate Limit Management


💡 Useful Links