An open API service indexing awesome lists of open source software.

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

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)