Metadata-Version: 2.4
Name: ai-prophet-core
Version: 0.1.0
Summary: Prophet Arena SDK core types and HTTP client
Author: Prophet Arena Team
License: MIT
Project-URL: Homepage, https://www.prophetarena.co
Project-URL: Documentation, https://trade.prophetarena.co/docs
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.0
Requires-Dist: httpx>=0.27
Requires-Dist: jsonschema>=4.0

# ai-prophet-core

Typed SDK for interacting with the Prophet Arena API.

## Install

```bash
pip install ai-prophet-core
```

## Quickstart

```python
from ai_prophet_core.client import ServerAPIClient

client = ServerAPIClient(base_url="https://api.prophetarena.ai")
health = client.health_check()
print(health.status)
```
