Skip to main content

Decorator that pings URLs before and after executing the wrapped obj.

Project description

babis

https://img.shields.io/pypi/v/babis.svg https://img.shields.io/travis/glogiotatidis/babis.svg Documentation Status Updates

Decorator that pings URLs before and after executing the wrapped obj.

Features

  • Pre and After run pings

  • Custom user agent

  • Silent failures

Usage

Ping after successful execution. Useful to monitor cron jobs with services like Dead Man’s Snitch or HealthChecks.io:

@babis.decorator(ping_after='http://healthchecks.io/XXX')
def cron_job():
  pass

Some services support pre and after hooks to measure the running time:

@babis.decorator(ping_before='http://healthchecks.io/XXX', ping_after='http://healthchecks.io/XXX')
def measured_cron_job():
  pass

You can also send a POST instead of the default GET:

@babis.decorator(ping_before='http://healthchecks.io/XXX', method='post')
def cron_job_with_post():
  pass

And if you don’t care if the ping fails, silence the errors:

@babis.decorator(ping_before='http://healthchecks.io/XXX', silent_failures=True)
def cron_job_silent_failure():
  pass

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.1.0 (2016-08-23)

  • First release on PyPI.

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

babis-0.1.0.tar.gz (13.6 kB view hashes)

Uploaded Source

Built Distribution

babis-0.1.0-py2.py3-none-any.whl (4.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page