Metadata-Version: 2.4
Name: rymi
Version: 1.2.0
Summary: The official Python REST API wrapper for Rymi.
Author-email: Rymi AI <engineering@rymi.live>
Project-URL: Homepage, https://rymi.live
Project-URL: Documentation, https://docs.rymi.live/api/sdk-python
Project-URL: Source, https://github.com/rymi-live/rymi-python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: responses>=0.23.0; extra == "dev"
Dynamic: license-file

# Rymi Python SDK

The official Python wrapper for the Rymi Voice AI REST API. Manage agents (incl. multi-language and model-stack config), phone numbers, calls, knowledge sources, evaluations, usage, and templates, plus webhook verification.

Resources: `agents` · `calls` · `numbers` · `telephony` · `keys` · `billing` · `templates` · `webhooks` · `dnc`.

## Installation

```bash
pip install rymi
```

## Quick Start

```python
import os
from rymi import Rymi

# Automatically picks up RYMI_API_KEY from environment
client = Rymi()

# Or pass explicitly
# client = Rymi(api_key="rymi_live_...")

agents = client.agents.list()
for agent in agents["agents"]:
    print(agent['name'])
```

## Documentation

Full reference: [docs.rymi.live/api/sdk-python](https://docs.rymi.live/api/sdk-python)

PyPI: [pypi.org/project/rymi](https://pypi.org/project/rymi/)

## License

MIT
