django-signal-webhooks


Namedjango-signal-webhooks JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://mrthearman.github.io/django-signal-webhooks/
SummaryAdd webhooks to django using signals.
upload_time2023-12-02 13:36:29
maintainer
docs_urlNone
authorMatti Lamppu
requires_python>=3.9,<4
licenseMIT
keywords django signal webhooks
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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/)

**Contributing**: [https://github.com/MrThearMan/django-signal-webhooks/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/django-signal-webhooks/blob/main/CONTRIBUTING.md)

---

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://mrthearman.github.io/django-signal-webhooks/",
    "name": "django-signal-webhooks",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9,<4",
    "maintainer_email": "",
    "keywords": "django,signal,webhooks",
    "author": "Matti Lamppu",
    "author_email": "lamppu.matti.akseli@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/0f/e2/1974349def31611eeb689651d50c744c1a0810d36dc3830a961ea950578e/django_signal_webhooks-0.3.0.tar.gz",
    "platform": null,
    "description": "# Django Signal Webhooks\n\n[![Coverage Status][coverage-badge]][coverage]\n[![GitHub Workflow Status][status-badge]][status]\n[![PyPI][pypi-badge]][pypi]\n[![GitHub][licence-badge]][licence]\n[![GitHub Last Commit][repo-badge]][repo]\n[![GitHub Issues][issues-badge]][issues]\n[![Downloads][downloads-badge]][pypi]\n\n[![Python Version][version-badge]][pypi]\n[![Django Version][django-badge]][pypi]\n\n```shell\npip install django-signal-webhooks\n```\n\n---\n\n**Documentation**: [https://mrthearman.github.io/django-signal-webhooks/](https://mrthearman.github.io/django-signal-webhooks/)\n\n**Source Code**: [https://github.com/MrThearMan/django-signal-webhooks/](https://github.com/MrThearMan/django-signal-webhooks/)\n\n**Contributing**: [https://github.com/MrThearMan/django-signal-webhooks/blob/main/CONTRIBUTING.md](https://github.com/MrThearMan/django-signal-webhooks/blob/main/CONTRIBUTING.md)\n\n---\n\nThis library enables you to add webhooks to a Django project for any create/update/delete\nevents on your models with a simple configuration. New webhooks can be added in the\nadmin panel, with or without authentication, with plenty of hooks into the webhook sending\nprocess to customize them for your needs.\n\n```python\n# project/settings.py\n\n# Add to instaled apps\nINSTALLED_APPS = [\n    ...\n    \"signal_webhooks\",\n    ...\n]\n\n# Add default webhook configuration to the User model\nSIGNAL_WEBHOOKS = {\n    \"HOOKS\": {\n        \"django.contrib.auth.models.User\": ...,\n    },\n}\n```\n\n[coverage-badge]: https://coveralls.io/repos/github/MrThearMan/django-signal-webhooks/badge.svg?branch=main\n[status-badge]: https://img.shields.io/github/actions/workflow/status/MrThearMan/django-signal-webhooks/test.yml?branch=main\n[pypi-badge]: https://img.shields.io/pypi/v/django-signal-webhooks\n[licence-badge]: https://img.shields.io/github/license/MrThearMan/django-signal-webhooks\n[repo-badge]: https://img.shields.io/github/last-commit/MrThearMan/django-signal-webhooks\n[issues-badge]: https://img.shields.io/github/issues-raw/MrThearMan/django-signal-webhooks\n[version-badge]: https://img.shields.io/pypi/pyversions/django-signal-webhooks\n[downloads-badge]: https://img.shields.io/pypi/dm/django-signal-webhooks\n[django-badge]: https://img.shields.io/pypi/djversions/django-signal-webhooks\n\n[coverage]: https://coveralls.io/github/MrThearMan/django-signal-webhooks?branch=main\n[status]: https://github.com/MrThearMan/django-signal-webhooks/actions/workflows/test.yml\n[pypi]: https://pypi.org/project/django-signal-webhooks\n[licence]: https://github.com/MrThearMan/django-signal-webhooks/blob/main/LICENSE\n[repo]: https://github.com/MrThearMan/django-signal-webhooks/commits/main\n[issues]: https://github.com/MrThearMan/django-signal-webhooks/issues\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Add webhooks to django using signals.",
    "version": "0.3.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/MrThearMan/django-signal-webhooks/issues",
        "Homepage": "https://mrthearman.github.io/django-signal-webhooks/",
        "Repository": "https://github.com/MrThearMan/django-signal-webhooks"
    },
    "split_keywords": [
        "django",
        "signal",
        "webhooks"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b07563944fa0d6a854ce59158f5a02e4afc4d64dab5a1ddb3f25efe8747fdf10",
                "md5": "3097d15a2291fcc3b6d2b01f2dc1329c",
                "sha256": "64be32ff06c1b74fe80176395258cfb51f1757fed28f026285f38a44d559c00f"
            },
            "downloads": -1,
            "filename": "django_signal_webhooks-0.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3097d15a2291fcc3b6d2b01f2dc1329c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9,<4",
            "size": 22571,
            "upload_time": "2023-12-02T13:36:27",
            "upload_time_iso_8601": "2023-12-02T13:36:27.838537Z",
            "url": "https://files.pythonhosted.org/packages/b0/75/63944fa0d6a854ce59158f5a02e4afc4d64dab5a1ddb3f25efe8747fdf10/django_signal_webhooks-0.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fe21974349def31611eeb689651d50c744c1a0810d36dc3830a961ea950578e",
                "md5": "30c4a73d0dc5f78641197f0efc69e9c7",
                "sha256": "3efff4305a8c0555a17ce8f4cbb1006014afd7314862647db5724e06eec4493e"
            },
            "downloads": -1,
            "filename": "django_signal_webhooks-0.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "30c4a73d0dc5f78641197f0efc69e9c7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9,<4",
            "size": 16566,
            "upload_time": "2023-12-02T13:36:29",
            "upload_time_iso_8601": "2023-12-02T13:36:29.173875Z",
            "url": "https://files.pythonhosted.org/packages/0f/e2/1974349def31611eeb689651d50c744c1a0810d36dc3830a961ea950578e/django_signal_webhooks-0.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-02 13:36:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MrThearMan",
    "github_project": "django-signal-webhooks",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "django-signal-webhooks"
}
        
Elapsed time: 0.15826s