Metadata-Version: 2.4
Name: tarsus-sdk
Version: 0.1.1
Summary: Python Client SDK for Tarsus
Author-email: Tarsus <support@tarsus.tech>
License: MIT
Requires-Python: >=3.9
Requires-Dist: attrs>=21.3.0
Requires-Dist: httpx>=0.23.0
Requires-Dist: python-dateutil>=2.8.0
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# Tarsus Python SDK

The official Python client for the Tarsus API.

## Installation

```bash
pip install tarsus-sdk
```

## Usage

```python
import tarsus

# Initialize client (uses TARSUS_API_KEY environment variable by default)
client = tarsus.init()

# List products
products = client.products.list()
for product in products:
    print(product.name)
```
