Skip to main content

Official Python SDK for the Factorial API

Project description

factorial-api-client (Python)

Official Python SDK for the Factorial API.

Versioning

The SDK uses standard semver (MAJOR.MINOR.PATCH), independent of the Factorial API version date.

SDK version Factorial API version
1.x.y 2026-04-01

Factorial releases new API versions quarterly (Jan/Apr/Jul/Oct).

See the Factorial API versioning docs for details.

Installation

pip install factorial-api-client

Quick start

from factorial_api_client import FactorialClient

client = FactorialClient(api_key="YOUR_KEY")

# First page only
result = client.employees.employee.list()
employees = result.data

# Cursor-paginated iterator (sync)
for emp in client.employees.employee.paginate(max_items=100):
    print(emp.full_name)

# Collect all pages into a list
all_employees = client.employees.employee.all()

# Async iterator
import asyncio

async def main():
    async for emp in await client.employees.employee.paginate_async(max_items=100):
        print(emp.full_name)

asyncio.run(main())

Authentication

Pass your API key via api_key= or an OAuth2 bearer token via token=:

# API key (sent as x-api-key header)
client = FactorialClient(api_key="YOUR_KEY")

# OAuth2 bearer token
client = FactorialClient(token="YOUR_BEARER_TOKEN")

Domain namespaces

The client is organised as client.{domain}.{resource}.{method}().

Domain Example
employees client.employees.employee.list()
ats client.ats.application.list()
attendance client.attendance.shift.list()
timeoff client.timeoff.leave.list()
contracts client.contracts.contract_version.list()
payroll client.payroll.supplement.list()
documents client.documents.document.list()
performance client.performance.review_process.list()
... 36 domains total

Available methods per resource: list, get, create, update, delete, paginate, paginate_async, all, plus any custom action endpoints.

Pagination

All list endpoints support cursor-based pagination via paginate() / paginate_async() / all():

# Stop after 50 items
for emp in client.employees.employee.paginate(max_items=50):
    ...

# Collect everything (use carefully on large datasets)
all_leaves = client.timeoff.leave.all()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

factorial_api_client-1.0.0.tar.gz (441.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

factorial_api_client-1.0.0-py3-none-any.whl (1.7 MB view details)

Uploaded Python 3

File details

Details for the file factorial_api_client-1.0.0.tar.gz.

File metadata

  • Download URL: factorial_api_client-1.0.0.tar.gz
  • Upload date:
  • Size: 441.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for factorial_api_client-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7de0e5436392f32fdfe0ae5e858858120634ae372dbd134475b75328d821c5db
MD5 b5069789b2330d2bb01b69893959e83d
BLAKE2b-256 ae97a329475cf987cd8b39433463e573f020ad6542becbe1bf317b9f8b5f4957

See more details on using hashes here.

File details

Details for the file factorial_api_client-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: factorial_api_client-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for factorial_api_client-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4ac969738ea21cbf4401548402dbf37a9e790ef80ff2a4f9a93af12b48a30bc1
MD5 9b45c9eb291a7b0a82b8369737cc4b26
BLAKE2b-256 ed7e4a8a830d18da8908201d1df34910fe9e8a85ecee57d4fdae9185ad153ad8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page