- SDK to interact with TimeChimp API
- Can return a converted response to JSON and check for errors.
- Log HTTP method, url, params (hide access token)
pip3 install timechimp
https://timechimp.readthedocs.io/en/latest/
- TimeChimp endpoints are defined in
timechimp.api
- access token is retrieved through env variables
TIMECHIMP_ACCESS_TOKEN
- TimeChimp API Documentation
import timechimp
response = timechimp.api.users.get_all()
import timechimp
users = timechimp.api.users.get_all(to_json=True)
pytest