Metadata-Version: 2.4
Name: voxovo
Version: 0.2.0
Summary: Voxovo AI Public API Python client
License: MIT
Project-URL: Homepage, https://voxovo-ai.com
Project-URL: Documentation, https://voxovo-ai.com/docs/api
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# voxovo (Python)

```bash
pip install voxovo
# or from this repo:
pip install -e ./sdks/python
```

```python
from voxovo import VoxovoClient, verify_webhook_signature, browser_voice_ws_url

client = VoxovoClient(api_key="omni_sk_…", base_url="https://api.voxovo-ai.com")
agents = client.list_agents()
client.create_outbound_call({"agent_id": "…", "to": "+15551234567"})

ok = verify_webhook_signature(raw_body, request.headers.get("X-Voxovo-Signature"), webhook_secret)
ws = browser_voice_ws_url("https://api.voxovo-ai.com", call_id="…")
```

Browser mic capture lives in `@voxovo/sdk` (`WebVoiceClient`). This package is the server/automation client.

## Publish

```bash
cd sdks/python
python -m build
twine upload dist/*
```
