Async client for Yandex Tracker API
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.
Source Distribution
yatracker-2021.7.2.tar.gz
(8.4 kB
view hashes)
Built Distribution
Close
Hashes for yatracker-2021.7.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | be0f0f08e7251ddfbbf2009a1db3935a34603bc4e08134d87f8f1fd19d927718 |
|
MD5 | 8223a2c36f4dc7b83b5a90a364cf5293 |
|
BLAKE2-256 | f892ffd4b96936456bb8ae3bb3bf6858460e4053f0ef55cd32afef965a81fbd7 |