Python client for the Factorial API.
Documentation: https://dribia.github.io/drifactorial
Source Code: https://github.com/dribia/drifactorial
Factorial is a software dedicated to manage everything related to HR.
Drifactorial provides a tiny Python interface to the official API.
- Authorize programatic access to your application.
- Obtain and refresh access tokens.
- Implements generic GET and POST methods.
- Parses responses to Pydantic models.
- Easily implement additional methods.
The simplest example.
from drifactorial import Factorial
from datetime import datetime
factorial = Factorial(access_token="abc")
# get list of employees
employees = factorial.get_employees()
# get list of company holidays
holidays = factorial.get_holidays()
# get list of leaves
leaves = factorial.get_leaves()
# get list of days off of an employee
daysoff = factorial.get_daysoff(employee_id=123)
# get list of all shifts in October 2021
shifts = factorial.get_shifts(year=2021, month=10)
# get single employee
single_employee = factorial.get_single_employee(employee_id=123)
# get my account
account = factorial.get_account()
# clock in shift
clock_in = datetime(2021, 10, 1, 9, 0)
new_shift = factorial.clock_in(now=clock_in, employee_id=123)
# clock out shift
clock_out = datetime(2021, 10, 1, 13, 0)
updated_shift = factorial.clock_out(now=clock_in, employee_id=123)