Metadata-Version: 2.1
Name: django-signal-webhooks
Version: 0.2.4
Summary: Add webhooks to django using signals.
Home-page: https://mrthearman.github.io/django-signal-webhooks/
License: MIT
Keywords: django,signal,webhooks
Author: Matti Lamppu
Author-email: lamppu.matti.akseli@gmail.com
Requires-Python: >=3.8,<4
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Framework :: Django :: 3.2
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: drf
Requires-Dist: Django (>=3.1)
Requires-Dist: asgiref (>=3.5.0)
Requires-Dist: cryptography (>=36.0.0)
Requires-Dist: django-settings-holder (>=0.1.0)
Requires-Dist: djangorestframework (>=3.13.0) ; extra == "drf"
Requires-Dist: httpx (>=0.23.0)
Project-URL: Bug Tracker, https://github.com/MrThearMan/django-signal-webhooks/issues
Project-URL: Repository, https://github.com/MrThearMan/django-signal-webhooks
Description-Content-Type: text/markdown

# Django Signal Webhooks

[![Coverage Status][coverage-badge]][coverage]
[![GitHub Workflow Status][status-badge]][status]
[![PyPI][pypi-badge]][pypi]
[![GitHub][licence-badge]][licence]
[![GitHub Last Commit][repo-badge]][repo]
[![GitHub Issues][issues-badge]][issues]
[![Downloads][downloads-badge]][pypi]

[![Python Version][version-badge]][pypi]
[![Django Version][django-badge]][pypi]

```shell
pip install django-signal-webhooks
```

---

**Documentation**: [https://mrthearman.github.io/django-signal-webhooks/](https://mrthearman.github.io/django-signal-webhooks/)

**Source Code**: [https://github.com/MrThearMan/django-signal-webhooks/](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.

```python
# 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": ...,
    },
}
```

[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/django-signal-webhooks/badge.svg?branch=main
[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/django-signal-webhooks/test.yml?branch=main
[pypi-badge]: https://img.shields.io/pypi/v/django-signal-webhooks
[licence-badge]: https://img.shields.io/github/license/MrThearMan/django-signal-webhooks
[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/django-signal-webhooks
[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/django-signal-webhooks
[version-badge]: https://img.shields.io/pypi/pyversions/django-signal-webhooks
[downloads-badge]: https://img.shields.io/pypi/dm/django-signal-webhooks
[django-badge]: https://img.shields.io/pypi/djversions/django-signal-webhooks

[coverage]: https://coveralls.io/github/MrThearMan/django-signal-webhooks?branch=main
[status]: https://github.com/MrThearMan/django-signal-webhooks/actions/workflows/test.yml
[pypi]: https://pypi.org/project/django-signal-webhooks
[licence]: https://github.com/MrThearMan/django-signal-webhooks/blob/main/LICENSE
[repo]: https://github.com/MrThearMan/django-signal-webhooks/commits/main
[issues]: https://github.com/MrThearMan/django-signal-webhooks/issues

