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

Changelog

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

  * Team upload.
  * Fix watch file
  * s/assertEquals/assertEqual/
    Closes: #1056466, #1058107
  * Standards-Version: 4.6.2 (routine-update)
  * Remove trailing whitespace in debian/changelog (routine-update)
  * Build-Depends: s/dh-python/dh-sequence-python3/ (routine-update)
  * Add salsa-ci file (routine-update)

 -- Andreas Tille <email address hidden>  Sun, 14 Jan 2024 21:05:41 +0100

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
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-django-rest-hooks_1.6.0-4.dsc 2.3 KiB 5c0eeec5d493224349f7b47a2f36bd885236de4ce909b747e57608db2ef4bb35
python-django-rest-hooks_1.6.0.orig.tar.gz 17.6 KiB 643cf2c55f3a9e13b4fc0c4ff5e0b39c65495991738fe39d1602351229f49d43
python-django-rest-hooks_1.6.0-4.debian.tar.xz 5.0 KiB 9f5ce88cb9665eac6b18cf86e50e786b6be4be70bd12aa0c68f60123b39d8c7a

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.