Metadata-Version: 2.4
Name: omnistream-sdk
Version: 0.2.0
Summary: Universal Python SDK for OmniStream - one key, every API. Discover and call any marketplace API.
Project-URL: Homepage, https://omnistream.skinvaults.online
Author: OmniStream
License: MIT
Keywords: api,marketplace,omnistream,sdk
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24
Description-Content-Type: text/markdown

# omnistream (Python)

The universal OmniStream SDK for Python. One Omni key reaches every API on the marketplace.

```bash
pip install omnistream
```

```python
from omnistream import Omni

omni = Omni("omni_live_...")            # your Omni key (dashboard or `omni keys`)

print(omni.call("skinapi", "status"))
print(omni.call("skinapi", "items-search", params={"q": "ak 47"}))
```

`call(slug, operation, params=..., body=...)` proxies through the OmniStream gateway, which
resolves the endpoint and injects the upstream credential. Passing `body` sends a POST.

Point at a different gateway with `Omni(token, base="https://your-gateway")`.
