Metadata-Version: 2.4
Name: warevoyant
Version: 0.1.1
Summary: Python SDK for the WareVoyant API — typed endpoints, Pydantic models, zero guesswork.
Project-URL: Homepage, https://developers.warevoyant.com
Project-URL: Documentation, https://developers.warevoyant.com/getting-started
Project-URL: Repository, https://github.com/JonathanCioffi/warevoyant-platform
License-Expression: MIT
Keywords: api,av,commissioning,openapi,sdk,warevoyant
Requires-Python: >=3.9
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# warevoyant

Python SDK for the WareVoyant API -- typed endpoints, Pydantic models, zero guesswork.

## Install

```bash
pip install warevoyant
```

## Quick Start

> **Note:** The Python SDK is generated from the OpenAPI spec at publish time.
> The exact client API depends on the generated output. Below is the expected
> usage pattern:

```python
from warevoyant import Client

client = Client(
    base_url="https://api-production-566c.up.railway.app",
    token="wv_live_YOUR_KEY",
)

sites = client.get_sites()
for site in sites:
    print(f"{site.name} — {site.address}")
```

## Documentation

- [Getting Started](https://developers.warevoyant.com/getting-started)
- [API Reference](https://developers.warevoyant.com/docs)

## License

MIT
