Python client
To help you get started using the Tracker API, we created yandex_tracker_client
To start using the client:
-
Download and install the latest Python version from https://www.python.org/downloads/
. -
From your OS command line, run:
pip install yandex_tracker_client
-
Get an OAuth token and your organization ID to access the API. For more information about how to do this, see the API reference.
-
Initialize the client in your program code:
from yandex_tracker_client import TrackerClient client = TrackerClient(token='<OAuth_token>', org_id='<organization_ID>')
Here,
<OAuth_token>
is your OAuth token and<organization_ID>
is your organization ID.
In the client, use the same data format as in the Tracker API.
For more information about how the client works and its terms of use, see its page on GitHub: https://github.com/yandex/yandex_tracker_client