Skip to main content

Typed event handling for GitHub Webhooks

Project description

Typed event handling for GitHub Webhooks

CI codecov PyPI

This library provides types for using GitHub Webhook events in Python, and a class for registering event handlers for each event type.

An example using FastAPI:

from fastapi import FastAPI, Request
from gh_webhooks import GhWebhookEventHandler
from gh_webhooks.types import BranchProtectionRuleCreated

app = FastAPI()
event_handler = GhWebhookEventHandler()

@event_handler.on(BranchProtectionRuleCreated)
async def handle_new_branch_protection_rule(event: BranchProtectionRuleCreated):
    print(event.repository.name)


@app.post("/payload")
async def handle_webhook_payload(request: Request):
    event = await request.json()
    await event_handler.handle_event(event)

You can also see a basic example project here.

Multiple handlers can be registered to the same event type, and they'll run concurrently.

The types are auto-generated using datamodel-code-generator. A GitHub action maintains these types automatically.

Integration tests are also auto-generated from the example events in the GitHub Webhook events spec docs.

Developing

Install Poetry and poetry install the project

Useful Commands

Note: if Poetry is managing a virtual environment for you, you may need to use poetry run poe instead of poe

  • poe autoformat - Autoformat code
  • poe lint - Lint code
  • poe test - Run tests
  • poe docs - Build docs
  • poe codegen - Generate types

Release

Release a new version by manually running the release action on GitHub with a 'major', 'minor', or 'patch' version bump selected. This will create and push a new semver tag of the format v1.2.3, which in turn will trigger an action to automatically publish a new version to PyPI.

Optionally create a release from this new tag to let users know what changed.

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

gh-webhooks-0.6.0.tar.gz (29.0 kB view details)

Uploaded Source

Built Distribution

gh_webhooks-0.6.0-py3-none-any.whl (29.0 kB view details)

Uploaded Python 3

File details

Details for the file gh-webhooks-0.6.0.tar.gz.

File metadata

  • Download URL: gh-webhooks-0.6.0.tar.gz
  • Upload date:
  • Size: 29.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.0a2 CPython/3.9.6 Linux/5.13.0-1031-azure

File hashes

Hashes for gh-webhooks-0.6.0.tar.gz
Algorithm Hash digest
SHA256 188f7b8edcb5184270ab89aeadd5e7c3f5c43c209b051132d8146506f69aa6ef
MD5 a34d69dbe52ee95c9681c0453b9968dd
BLAKE2b-256 fa3e828cde0881390681eecd2a8053d6a021342ee72e5298b494119d4c4c226b

See more details on using hashes here.

File details

Details for the file gh_webhooks-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: gh_webhooks-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 29.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.2.0a2 CPython/3.9.6 Linux/5.13.0-1031-azure

File hashes

Hashes for gh_webhooks-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e115f5928badd877cb39d582e0c61d5468af279f71936a8c904957ffb8785fc8
MD5 9e3d25cd42b4ead5a569b9598f64a397
BLAKE2b-256 8596522b6891d0b0cf7c35f63d1b38eb5f3fbd31d25048dd1391bcc6ae00536f

See more details on using hashes here.

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