Metadata-Version: 2.4
Name: zyris
Version: 0.1.0
Summary: Python SDK for Zyris.
Project-URL: Homepage, https://www.zyris.ai/
Author-email: "zyris.ai" <contact@zyris.ai>
License: MIT
License-File: LICENSE
Keywords: api,collections,sdk,video
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: httpx<1.0,>=0.24
Requires-Dist: pydantic<3.0,>=2.0
Provides-Extra: dev
Requires-Dist: build>=1.0; extra == 'dev'
Requires-Dist: pytest-httpx>=0.21; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Requires-Dist: twine>=4.0; extra == 'dev'
Description-Content-Type: text/markdown

# Zyris Python SDK

The official Python SDK for Zyris.

## Documentation

- [Python SDK reference](https://www.zyris.ai/build/sdks/python) — install, quick start, every resource, response shapes, recipes.
- [HTTP API reference](https://www.zyris.ai/build/api-docs) — wire protocol if you are calling the API without the SDK.

## Install

```bash
pip install zyris
```

Requires Python 3.8+.

## Quick start

```python
from zyris import Client

client = Client(
    api_key="sk_...",
    base_url="https://playground.zyris.ai",
)

collections = client.collections.list(page=1, page_size=10)
print(f"{collections.total} collection(s)")
```

For full usage — every resource, response shapes, and recipes — see the [Python SDK reference](https://www.zyris.ai/build/sdks/python).
