yandex_tracker_client icon indicating copy to clipboard operation
yandex_tracker_client copied to clipboard

Python client for working with Yandex.Tracker Api

Results 11 yandex_tracker_client issues
Sort by recently updated
recently updated
newest added

I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=ru

Привет! К моему большому сожалению, выяснилось, что не смотря на реализованную в вашей библиотеке пагинацию, ваш API жестко лимитирует количество любых отдаваемых объектов до 10000, независимо от того пагинируются они...

I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=ru

Добрый день. Пытаюсь делать так: ```php for queue in client.queues: print(queue.workflows) ``` Получаю "AttributeError: workflows". Хотя другие свойства очереди, например `issuetypes` нормально работают. Что я могу делать не так? Заранее...

I hereby agree to the terms of the CLA available at: https://yandex.ru/legal/cla/?lang=ru

Hi, I'm trying to fetch all the existing work logs through your API ```python worklogs = TrackerClient().worklog.find() for worklog in worklogs: print(worklog.id) ``` this code works fine until I'm exceeding...

Hello, How could I get last sprint of my queue? Is it possible to get all sprints for 'MYQUEUE' queue = client.queues['MYQUEUE'] sprints = queue.sprints

Hi, It looks like markdown formatting is escaped for API calls. Is it possible to format text input somehow with API?

Blocking requests in 2019...? Welcome to the future :) ``` async with aiohttp.ClientSession() as session: async with session.get('http://httpbin.org/get') as resp: print(resp.status) print(await resp.text()) ```

**Description** We are using `yandex_tracker_client` as a library on a backend to perform issue search in Yandex Tracker, where our backend app receives request from our frontend app and performs...