Metadata-Version: 2.0
Name: django-github-webhook
Version: 0.1.1
Summary: Django view for GitHub webhook recievers
Home-page: https://github.com/fladi/django-github-webhook
Author: Michael Fladischer
Author-email: michael@openservices.at
License: BSD
Keywords: django,view,github,webhook,signature
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Dist: Django

========
Overview
========



A class based view for Django that can act as an receiver for GitHub webhooks. It is designed to validate all requests through their ``X-Hub-Signature``
headers.

Handling of GitHub events is done by implementing a class method with the same name as the event, e.g. ``ping``, ``push`` or ``fork``. See the documentation for
more in-depth information and examples.

* Free software: BSD license

Installation
============

::

    pip install django-github-webhook

Documentation
=============

https://django-github-webhook.readthedocs.org/

Development
===========

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========

0.1.0 (2016-01-29)
-----------------------------------------

* First release on PyPI.


