Skip to main content

Flask extension for github-webhooks

Project description

Flask-Github-Webhook

Build Status Coverage Status

Flask-Github-Webhook adds extension support for GitHub webhooks to Flask. This extension primarily extends the python-github-webhook project by making the Flask Extension Pattern available as an initialization option.

Initialization

The Github-Webhook Extension may be initialized directly or as an extension:

Direct Setup

from flask import Flask
from flask_github_webhook import GithubWebhook

app = Flask(__name__)
webhook = GithubWebhook(app)

Extension Setup

from flask import Flask

# The extension may be initialized from anywhere in the project, including
# inside this file, by calling GithubWebhook()
from .extension import WEBHOOK

app = Flask(__name__)
WEBHOOK.init_app(app)

Usage

The extension may be used in the same manner as python-github-webhook.

from .extension import WEBHOOK

@WEBHOOK.hook()
def push_handler(data):
    print('Received the following PUSH event:{}'.format(data))

@WEBHOOK.hook(event_type='pull_request')
def pullrequest_handler(data):
    print('Received the following PULL-REQUEST event:{}'.format(data))

Versions

Version 0.1.x supports ^2.7 and ^3.4.

Versions 0.2+ supports ^3.6.7. This is primarily due to Python version constraints on the package and test tools. For instance, here are some dependencies and their supported Python versions: poetry=^3.4, coveralls=^3.5, pre-commit=^3.6.1, and pytest=^3.6. Due to these constraints, the decision was made to drop official support for 2.7, 3.4 and 3.5. However, flask-github-webhook=^0.1.x should work for older Python versions.

Configuration

The extension has the same configurations available as the python-github-webhook package. However, unlike referenced package, this extension reads those configurations from the Flask application, not initialization arguments. The values below should be configured in the Flask application (app.config) prior to initializing the extension.

GITHUB_WEBHOOK_ENDPOINT

This setting declares the route that all webhook event handlers will use. If left unset, the setting will default to the endpoint as declared in python-github-webook. As of this writing, the default endpoint is /postreceive.

GITHUB_WEBHOOK_SECRET

If provided, this setting's value should match the secret set in the GitHub repository from which this extension will receive webhooks.

Contributing

Contributions are welcomed! If you would like to improve or modify Flask-Github-Webhook, please follow these steps:

  1. Fork this repository.
  2. Make your changes and create a pull request.
  3. Ensure that all status checks are passing.

Author & License

This package is released under an open source MIT License. Flask-Github-Webhook was originally written by Shawn Wallis.

References

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

flask-github-webhook-0.2.0.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

flask_github_webhook-0.2.0-py3-none-any.whl (4.6 kB view hashes)

Uploaded 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