Context manager around service provided by HealthChecks for easy use
Project description
Simple HealthChecks Wrapper
Context manager around service provided by healthchecks.io that will ping your check URL for both success and failure (includes stack trace).
Features
- Zero requirements outside the standard library
- Easily report the status of your python jobs
- Supports both sync and async jobs
Getting started
Make a free account with at healthchecks.io and create a check. You need to copy the url of the check endpoint.
Install the library
pip install healthchecks-wrapper
Use it in your code
from healthchecks_wrapper import HealthCheck
import asyncio
valid_ping_url = "https://hc-ping.com/b2b308a5-765c-4136-8d0a-2ff0b906e3ee" # Replace with your job url
# Sync jobs
with HealthCheck(valid_ping_url):
# Do your job
print("hi")
# Async jobs requires a bit more boiler plate code
async def print_hi():
async with HealthCheck(valid_ping_url):
# Do your job
await asyncio.sleep(1) # Read database async
print("hi")
def main():
loop = asyncio.get_event_loop()
loop.run_until_complete(print_hi())
loop.close()
main()
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
healthchecks_wrapper-0.1.6.tar.gz
(11.6 kB
view hashes)
Built Distribution
Close
Hashes for healthchecks_wrapper-0.1.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | df35820227e3cfcc23f7fd2add20eb2f4a39032dc5343a970867b7f2caf20d56 |
|
MD5 | af1844f3f5fb34388fa81f177773e369 |
|
BLAKE2b-256 | 015dc44d8b4a2e2fe658c923b7f1f664f5fbaff3377244a4401c2fe3de535f0e |
Close
Hashes for healthchecks_wrapper-0.1.6-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cdd4477442cb6df318ea0c5af3fa4395f4244508f5ad82f8d7491c731f83f56 |
|
MD5 | 055eafe6a264ac04a5bd3d585626e6e4 |
|
BLAKE2b-256 | 6eadc0e41399169055a3b13f83b37c5cde18ef8c6fb395eeb21839bcda843bc4 |