Metadata-Version: 2.1
Name: yatracker
Version: 0.0.4
Summary: Fully asynchronous library for Yandex Tracker
Home-page: https://github.com/Olegt0rr/YaTracker
Author: Oleg A.
Author-email: oleg@trueweb.app
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (==3.6.2)
Requires-Dist: certifi (==2019.9.11)
Requires-Dist: pydantic[ujson] (==1.0)
Requires-Dist: python-rapidjson (==0.8.0)

# YaTracker
Asyncio Yandex Tracker API client

API docs: https://tech.yandex.com/connect/tracker/api/about-docpage/

## Attention!
* All `self` properties renamed to `url` cause it's incompatible with Python.
* All `camelCase` properties renamed to `pythonic_case`.
* Methods named by author, cause Yandex API has no clear method names.


## How to install
```text
python3.7 -m pip install yatracker
```


## How to use
```python
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')
```
```python
# don't forget to close tracker on app shutdown
async def on_shutdown():
    await tracker.close()

```


