python-django-rest-hooks 1.6.0-1.1 source package in Ubuntu

Changelog

python-django-rest-hooks (1.6.0-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * source-only upload to enable migration (Closing: #953186)

 -- Paul Gevers <email address hidden>  Thu, 05 Mar 2020 17:30:27 +0100

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-django-rest-hooks_1.6.0-1.1.dsc 2.0 KiB 520de6f016ee1ac11a4141ca060524b06f0a3698036e57d03673f8feb385cb60
python-django-rest-hooks_1.6.0.orig.tar.gz 17.6 KiB 643cf2c55f3a9e13b4fc0c4ff5e0b39c65495991738fe39d1602351229f49d43
python-django-rest-hooks_1.6.0-1.1.debian.tar.xz 2.4 KiB c19edb06c188f8140a55434a3d06f5d89fa5356928cc966f612156feec0db246

Available diffs

No changes file available.

Binary packages built by this source

python3-django-rest-hooks: 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.