# Python (/docs/ai/sdks/python)



Requires Python 3.10 or later. Supports synchronous and asynchronous clients.

## Install [#install]

```bash
pip install trackee
```

## Configure [#configure]

Create an [access key](/dashboard/api-keys) and set it in your environment. The SDK reads `TRACKEE_API_KEY`.

```bash
export TRACKEE_API_KEY="your_access_key"
```

## Quick start [#quick-start]

```python
from trackee import Trackee

with Trackee() as client:
    brands = client.brands.list()
    print(brands)
```

[Source and API usage](https://github.com/trackee-API/trackee-python) · [PyPI](https://pypi.org/project/trackee/)
