Metadata-Version: 2.1
Name: sinkr
Version: 0.1.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: 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


my_source = SinkrSource()
my_source.send_to_channel("my-channel", "my-event", {
    "my-data": 123
})
```

