Python library for Standard Webhooks
Verifying a webhook payload:
from standardwebhooks.webhooks import Webhook
wh = Webhook(base64_secret)
wh.verify(webhook_payload, webhook_headers)- python 3
python -m venv .venv
pip install -r requirements.txt && pip install -r requirements-dev.txtBefore opening a PR be sure to format your code!
./scripts/format.shSimply run:
pytest