Python bindings for Tempo (https://apidocs.tempo.io/)
Project description
tempo-api-python-client
Python bindings for Tempo Rest API.
This is a Tempo API client library to simplify the interaction with Tempo timesheets. The implementation supports Tempo API v3 and v4.
Pip release is available: https://pypi.org/project/tempo-api-python-client/
Tempo Rest API documentation can be found at https://apidocs.tempo.io/
Installation
Install current release by pip
pip install tempo-api-python-client
Getting Started
You need an API token for communicating with tempo REST APIs.
For v3 use
from tempoapiclient import client_v3
tempo = client_v3.Tempo(
auth_token="<your_tempo_api_key>",
)
worklogs = tempo.get_worklogs(
dateFrom="2019-11-10",
dateTo="2019-11-11"
)
for i in worklogs:
print(i)
For v4 use
from tempoapiclient import client_v4
tempo = client_v4.Tempo(
auth_token="<your_tempo_api_key>",
)
worklogs = tempo.get_worklogs(
dateFrom="2019-11-10",
dateTo="2019-11-11"
)
for i in worklogs:
print(i)
There are also functions to retrieve user
and team
-specific worklogs.
Code Format
-
Flake8:
flake8 --max-line-length=120 tempoapiclient/*
-
Pylint:
pylint --max-line-length=120 tempoapiclient
Contributing
Contribution is welcome. See CONTRIBUTING.md for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for tempo-api-python-client-0.9.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 444016a02b55e6d6dd1782681fcbc11fc682b374ebc520646bfa1a5a6825fee4 |
|
MD5 | 886b6409e7ef2322c89f2ce040bccddf |
|
BLAKE2b-256 | 2a64fbbc5fb12e84cb70619cf026342045aea6e219e9e96c282fd79a74ddbb6e |
Hashes for tempo_api_python_client-0.9.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3949bbcb5d1f3c52011cb03a34157a54c82bce17e0be91bd7683d07218e6c685 |
|
MD5 | 9c49665d2798e2325beb816261634430 |
|
BLAKE2b-256 | a40fd09a0e8beb7945e4afa8a1fdb6aebcf5f91cd5568999738cca5a1ad71455 |