Python
Official Trackee SDK for Python, with sync and async clients.
Requires Python 3.10 or later. Supports synchronous and asynchronous clients.
Install
pip install trackeeConfigure
Create an access key and set it in your environment. The SDK reads TRACKEE_API_KEY.
export TRACKEE_API_KEY="your_access_key"Quick start
from trackee import Trackee
with Trackee() as client:
brands = client.brands.list()
print(brands)