Skip to content

rsaleev/aio_yatracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AIO Yandex.Tracker Client

Table of Contents

About

Project is still in development. Main approach to implement all API methods

Usage

import asyncio
from aiotracker import issues

async def main()
    async with BaseClient(token="<APP TOKEN>", org_id="<TRACKER ORGANIZATION ID>") as client:
        #https://cloud.yandex.com/en/docs/tracker/concepts/issues/search-issues
        async for result in issues.search(client, data=issues.IssueSearchRequest(filter={"queue": "TEST", "assignee": "Empty()"}))
            for issue in result:
            ...

            
asyncio.run(main())

About

Asynchronous client for Yandex.Tracker

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages