Metadata-Version: 2.4
Name: athena-trust-sdk
Version: 1.2.1
Summary: ATHENA SDK for Python
Project-URL: Homepage, https://athenatrust.ai
Author-email: ATHENA <support@athena.ai>
License-Expression: MIT
Keywords: ai,analytics,athena,compliance,sdk
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: async
Requires-Dist: httpx[http2]>=0.25.0; extra == 'async'
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: respx>=0.20.0; extra == 'dev'
Description-Content-Type: text/markdown

# ATHENA SDK for Python

## Installation

```bash
pip install athena-trust-sdk
```

### Optional: Async Support

```bash
pip install athena-trust-sdk[async]
```

## Quick Start

```python
from athena import AthenaClient

client = AthenaClient(api_key="ak_xxx")
```

## Features

- Sync and async clients
- Full type safety with Pydantic v2
- Automatic retries with exponential backoff
- Rate limit handling
- Webhook signature verification
- Framework support (Flask, FastAPI, Django)

## Support

Contact hello@athenatrust.ai for documentation and support.

## License

MIT
