File: control

package info (click to toggle)
python-django-rest-hooks 1.6.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 204 kB
  • sloc: python: 784; makefile: 6
file content (44 lines) | stat: -rw-r--r-- 1,777 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Source: python-django-rest-hooks
Section: python
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders:
 Michael Fladischer <fladi@debian.org>,
Build-Depends:
 debhelper-compat (= 12),
 dh-python,
 python3-all,
 python3-django,
 python3-mock,
 python3-requests,
 python3-setuptools,
Standards-Version: 4.4.0
Homepage: https://github.com/zapier/django-rest-hooks/
Vcs-Git: https://salsa.debian.org/python-team/modules/python-django-rest-hooks.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/python-django-rest-hooks
Testsuite: autopkgtest-pkg-python

Package: python3-django-rest-hooks
Architecture: all
Depends:
 ${misc:Depends},
 ${python3:Depends},
Description: Add webhook subscriptions to Django apps (Python3 version)
 REST Hooks are advanced versions of webhooks. Traditional webhooks are usually
 managed manually by the user, but REST Hooks are not. They encourage RESTful
 access to the hooks (or subscriptions) themselves. Add several hooks for any
 combination of event and URLs, then get notificatied in real-time by a bundled
 threaded callback mechanism.
 .
 By reusing Django's signals framework, this library can be integrated into any
 existing Django app.
 .
 Using built-in actions, no work is required to support any basic created,
 updated, and deleted actions across any Django model. It also allows for custom
 actions (IE: beyond CRUD) to be simply defined and triggered for any model, as
 well as truly custom events that let an application send arbitrary payloads.
 .
 By default, this library will just POST Django's JSON serialization of a model,
 but it  provides a serialize_hook method to customize payloads.
 .
 This package contains the Python 3 version of the library.