Metadata-Version: 2.3
Name: alert-helper
Version: 0.1.2
Summary: Simple python notification helper.
Author: richardSHkim
Author-email: richardSHkim <kshtrue95@gmail.com>
Requires-Dist: requests>=2.32.5
Requires-Python: >=3.11
Project-URL: Homepage, https://github.com/richardSHkim/alert-helper
Description-Content-Type: text/markdown

# Simple Python Notification Helper

## Supported Apps
### Slack
- After obtaining a webhook URL from Slack, set it as the `SLACK_WEBHOOK_URL` environment variable.

## Usage
- Context manager
```python
from noticeme import noticeme

with noticeme("test-job"):
    # do something
```

- Decorator
```python
from noticeme import noticeme

@noticeme("test-job")
def dummy():
    # do something

dummy()
```

## To Do
- [ ] Support other apps.