File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed
Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change 11# tempo-api-python-client
2- Python bindings for Tempo ( https://tempo-io.github.io/tempo-api-docs/ )
2+ Python bindings for Tempo - https://tempo-io.github.io/tempo-api-docs/
33
44This is a Tempo API client library to simplify the interaction with Tempo timesheets.
55
6+ Pip release is available: https://pypi.org/project/tempo-api-python-client/
7+
8+ ## Changelog
9+
10+ Install current reelase by pip
11+
12+ ```
13+ pip install tempo-api-python-client
14+ ```
15+
616
717## Getting Started
818
@@ -13,16 +23,15 @@ tempo = client.Tempo(
1323 auth_token="<your_tempo_api_key>",
1424 base_url="https://api.tempo.io/core/3")
1525
16- worklogs = tempo.get_worklogs("2019-11-10", "2019-11-11")
26+ worklogs = tempo.get_worklogs(
27+ date_from="2019-11-10",
28+ date_to="2019-11-11"
29+ )
1730
1831for i in worklogs:
1932 print(i)
2033```
2134
22- ## Changelog
23-
24- - 2019-12-17: Initial version with /worklogs, /work-attributes and /user-schedule
25- - 2019-12-18: Updated client initialization, internal code reorganization
2635
2736## Contributing
2837
You can’t perform that action at this time.
0 commit comments