Metadata-Version: 2.1
Name: sinkr
Version: 0.2.2
Summary: Sinkr Python SDK
Home-page: https://github.com/Wundero/sinkr
License: MIT
Author: Wundero
Author-email: Wundero@users.noreply.github.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: aiohttp[speedups] (>=3.11.11,<4.0.0)
Requires-Dist: nanoid (>=2.0.0,<3.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: ruff (>=0.8.1,<0.9.0)
Requires-Dist: websockets (>=14.1,<15.0)
Project-URL: Repository, https://github.com/Wundero/sinkr
Description-Content-Type: text/markdown

Python SDK for `Sinkr`.

Usage:

```py

from sinkr import SinkrSource


async with SinkrSource() as my_source:
    await my_source.send_to_channel("my-channel", "my-event", {
        "my-data": 123
    })
```

