Metadata-Version: 2.1
Name: apologist
Version: 1.0.2
Summary: 
Requires-Python: >=3.10,<4.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Provides-Extra: aiohttp
Requires-Dist: aiohttp (>=3.14.1,<4) ; (python_version >= "3.10") and (extra == "aiohttp")
Requires-Dist: httpx (>=0.21.2)
Requires-Dist: httpx-aiohttp (>=0.1.8,<0.2.0) ; (python_version >= "3.10") and (extra == "aiohttp")
Requires-Dist: pydantic (>=1.9.2)
Requires-Dist: pydantic-core (>=2.18.2,<3.0.0)
Requires-Dist: typing_extensions (>=4.0.0)
Project-URL: Repository, https://github.com/apologist-project/apg-sdk-python
Description-Content-Type: text/markdown

# Apologist Python SDK

Official Python client for the [Apologist Agent API](https://docs.apologist.ai).

## Install

```bash
pip install apologist
```

## Quickstart

```python
import os
from apologist import ApologistAgentClient

client = ApologistAgentClient(
    domain="YOUR_AGENT_HOST",
    api_key=os.environ["APOLOGIST_API_KEY"],
)
```

## Documentation

- Product docs: https://docs.apologist.ai
- API reference: https://docs.apologist.ai/agent-api/api-reference
- Source: https://github.com/apologist-project/apg-sdk-python

## License

See the repository for license details.

