Metadata-Version: 2.4
Name: oruk
Version: 0.1.0
Summary: Python client for the Oruk Speech API
License: MIT
Requires-Python: >=3.10
Requires-Dist: httpx<1,>=0.27
Description-Content-Type: text/markdown

# Oruk Python SDK

```python
import os
from oruk import Oruk

with Oruk(api_key=os.environ["ORUK_API_KEY"]) as client:
    result = client.analyze("sample.wav", model="oruk-resonance")

print(result["text"], result["emotions"], result["styles"])
```

The client uses unique request IDs and retries only 429 and transient 5xx responses.
