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

Changelog

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

  * Add patch for Django 4 compatibility (Closes: #1013503).
  * Bump Standards-Version to 4.6.1.0.
  * Update year in d/copyright.
  * Depend on python3-all for autopkgtests.

 -- Michael Fladischer <email address hidden>  Sun, 31 Jul 2022 15:35:34 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-django-rest-hooks_1.6.0-3.dsc 1.9 KiB 8538ec2a3d1ccf90a25215c53bf8a1aa2ecac09a9f22175120560cc80d126247
python-django-rest-hooks_1.6.0.orig.tar.gz 17.6 KiB 643cf2c55f3a9e13b4fc0c4ff5e0b39c65495991738fe39d1602351229f49d43
python-django-rest-hooks_1.6.0-3.debian.tar.xz 4.0 KiB 454b2ea0f7c55583f2d0c4db986acbfa54d76add3d5dffb54851dd3e748be700

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.