https://github.com/immmdreza/pytasky
Task System api for python
https://github.com/immmdreza/pytasky
Last synced: 7 months ago
JSON representation
Task System api for python
- Host: GitHub
- URL: https://github.com/immmdreza/pytasky
- Owner: immmdreza
- License: mit
- Created: 2021-01-14T09:38:25.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-18T15:00:05.000Z (almost 5 years ago)
- Last Synced: 2024-11-13T21:52:10.242Z (about 1 year ago)
- Language: Python
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyTasky
A package to connect to TsWw Api.
## Installation
You can install the Package using [PyPi](https://pypi.org/project/PyTasky/).
Run `py -m pip install PyTasky`.
## Usage
Simple example to get top groups.
```py
from PyTasky import TaskSystem
client = TaskSystem('API_TOKEN')
tops = client.topGroups()
for x in tops:
print(x.name)
```
Replace `API_TOKEN` with you own token.
Read More at [Task System WebStie](https://taskyonline.com/docs.html).
## Examples
Examples provided in [examples](examples) directory.
Thanks to [Gheysar](https://github.com/gheysar-official)