Add webhooks to django using signals.
Project description
Django Signal Webhooks
pip install django-signal-webhooks
Documentation: https://mrthearman.github.io/django-signal-webhooks/
Source Code: https://github.com/MrThearMan/django-signal-webhooks/
This library enables you to add webhooks to a Django project for any create/update/delete events on your models with a simple configuration. New webhooks can be added in the admin panel, with or without authentication, with plenty of hooks into the webhook sending process to customize them for your needs.
# project/settings.py
# Add to instaled apps
INSTALLED_APPS = [
...
"signal_webhooks",
...
]
# Add default webhook configuration to the User model
SIGNAL_WEBHOOKS = {
"HOOKS": {
"django.contrib.auth.models.User": ...,
},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for django_signal_webhooks-0.2.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 170cb03084af849b6fe4fd86ab56e679089cb1a2912d82c986f2ac6929bc34a4 |
|
MD5 | dedde40884684983c5b2d9d2bc90abae |
|
BLAKE2b-256 | 9ccb78ee0aa86a971753ff016685b658b1c5edb50f9d4d00e72a171687d261bd |
Close
Hashes for django_signal_webhooks-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad30c297f1e7ea326836b67908e60d1e0df8aa08f900714c6b5dad4b3eab2ea9 |
|
MD5 | 954c0e9223486520c367cc1c16ccecbe |
|
BLAKE2b-256 | b3e3ea8bbbc8c1b17975f28fb78759cbab359b785b1112e61b58e0f56eafface |