Skip to content

Commit 884596d

Browse files
Updated README.md
1 parent 99623ab commit 884596d

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
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

44
This 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
1831
for 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

0 commit comments

Comments
 (0)