Fully asynchronous library for Yandex Tracker
Project description
YaTracker
Asyncio Yandex Tracker API client
API docs: https://tech.yandex.com/connect/tracker/api/about-docpage/
Attention!
- All
self
properties renamed tourl
cause it's incompatible with Python. - All
camelCase
properties renamed topythonic_case
. - Methods named by author, cause Yandex API has no clear method names.
How to install
python3.7 -m pip install yatracker
How to use
from yatracker import YaTracker tracker = YaTracker(org_id=..., token=...) async def foo(): # create issue issue = await tracker.create_issue('New Issue', 'KEY') # get issue issue = await tracker.get_issue('KEY-1') # update issue (just pass kwargs) issue = await tracker.edit_issue('KEY-1', description='Hello World') # get transitions: transitions = await issue.get_transitions() # execute transition transition = transitions[0] await transition.execute()
# don't forget to close tracker on app shutdown async def on_shutdown(): await tracker.close()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size yatracker-0.0.6-py3-none-any.whl (9.1 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size yatracker-0.0.6.tar.gz (6.9 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for yatracker-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f870416685e1d5efb75541557e3246be4457ac289a7869ffff6101f97d6430e2 |
|
MD5 | 12b05300d43617efb8500c05934d2c42 |
|
BLAKE2-256 | 68aed701a767d572091223879de08154029dfa99a1da112b71fdd5d460d40126 |