Metadata-Version: 2.1
Name: yatracker
Version: 0.0.6
Summary: Fully asynchronous library for Yandex Tracker
Home-page: https://github.com/Olegt0rr/YaTracker
Author: Oleg A.
Author-email: oleg@trueweb.app
License: MIT
Description: # 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')
        
            # get transitions:
            transitions = await issue.get_transitions()
        
            # execute transition
            transition = transitions[0]
            await transition.execute()
        
        ```
        ```python
        # don't forget to close tracker on app shutdown
        async def on_shutdown():
            await tracker.close()
        
        ```
        
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
