Metadata-Version: 2.2
Name: hfl-healthcheck
Version: 0.0.3
Summary: Send healthchecks to dedicated endpoint
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests

# install
```
pip install hfl-healthcheck
```

# import 
`from healthcheck import health_check_sender`

# use
```python
from healthcheck import health_check_sender
import threading
threading.Thread(target=health_check_sender(0),name="healthcheck").start()
```
