Metadata-Version: 2.5
Name: youlmk
Version: 0.1.0
Summary: Send a notification to your YouLMK inbox from Python. One call, no dependencies.
Project-URL: Homepage, https://youlmk.com
Project-URL: Documentation, https://youlmk.com/docs/sdks
Project-URL: Source, https://github.com/bylivebetter/youlmk
Author: Live Better Platforms, Inc.
License-Expression: MIT
Keywords: alerts,notifications,push,webhook,youlmk
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# youlmk

Send a notification to your [YouLMK](https://youlmk.com) inbox with one call. Python 3.9+, the standard library only.

```bash
pip install youlmk
```

```python
from youlmk import notify

notify(os.environ["YOULMK_TOKEN"], "backup finished", body="4.2 GB in 3 min 10 s", priority="low")
```

The token is your source's bearer token (`ylk_…`), from the source's page. Every option is in the [payload reference](https://youlmk.com/docs/payload); the answer is a `Result(id, receipt, grouped, held)`; an error is a `YouLMKError` with the door's `code`, the `field` for a 422, and `retry_after` for a 429.

Docs: https://youlmk.com/docs/sdks
