Skip to main content

Django Signoffs

PyPI Version Docs Status Tests

A mico-framework for collecting lightweight, non-crypto "signatures" for virtually anything.

  • Signoff - a permitted user agrees to something at a time.
  • Approval - a set of Signoffs that trigger a state change when the SigningOrder is complete.
  • Approval Process - a sequence of Approvals that drive a Finite State Machine.

Quick Start

  1. Install the django-signoffs package from PyPI

    $ pip install django-signoffs
    
  2. Add signoffs to INSTALLED_APPS:

    INSTALLED_APPS = [
        ...,
        "signoffs",
        ...,
    ]
    

Features

django-signoffs has 3 tiers. Import and use only the features you need...

signoffs.signoffs

A Signoff records that a user agreed to some statement at a time. signoffs.signoffs provides a framework for defining use-cases that fall within this broad requirement.

Core features:

  • AbstractSignet and AbstractRevokedSignet Models (persistence layer)
  • Base Signoff Types, with injectable business and presentation logic...
    • SignoffLogic (permissions and buisness logic)
    • SignoffFormsManager and SignoffRenderer (presentation layer)
    • SignoffUrlsManager (custom end-points)
  • Signoff "forward" relation: SignoffOneToOneField
  • Signoff "reverse" relation Manager: SignoffSet (many-to-one)
  • Declarative signing order automation: SigningOrder
  • Template tag: {% render_signoff my_signoff %}

signoffs.approvals

An Approval records whether some condition was met at some point in time. Essentially, it is a 2-state machine, designed to change states when one or more Signoffs are completed, in some defined SigningOrder.

Core features:

  • AbstractApprovalSignet and AbstractApprovalStamp Models (persistence layer)
  • Base Approval Types, with injectable business and presentation logic...
    • ApprovalLogic (business logic)
    • ApprovalStatus and ApprovalRenderer (presentation layer)
    • ApprovalUrlsManager (custom end-points)
  • Approval "forward" relation: ApprovalOneToOneField
  • Approval "reverse" relation Manager: ApprovalSet (experimental)
  • Template tag: {% render_approval my_approval %}

signoffs.process

An ApprovalsProcess defines a sequence of Approvals and the state changes and/or side effects triggered by approving or revoking each of them.

Core Features:

  • ApprovalsProcess (a basic linear sequence of Approvals)
  • FsmApprovalsProcess (state-changes and sequencing defined by django-fsm)

Opt-in

Contrib Models

signoffs.contrib.signets

Signoffs core defines only abstract models, no migrations. signoffs.contrib.signets provide concrete models that cover the basic use-cases. To opt-in, you must:

 INSTALLED_APPS = [
     ...,
     "signoffs.contrib.signets",
      ...,
 ]
 $ python manage.py migrate signoffs_signets

Core Features:

  • Concrete Models: Signet, and RevokedSignet provide persistence layer for
  • Concrete Signoffs: SimpleSignoff, RevokableSignoff, and IrrevokableSignoff

signoffs.contrib.approvals

Approvals core defines only abstract models, no migrations. signoffs.contrib.approvals provide concrete models with basic relations. To opt-in you must:

 INSTALLED_APPS = [
     ...,
     "signoffs.contrib.approvals",
      ...,
 ]
 $ python manage.py migrate signoffs_approvals

Core Features:

  • Concrete Models: ApprovalSignet, and RevokedApprovalSignet define a FK relation to...
  • Stamp which provides persistence layer for...
  • SimpleApproval and IrrevokableApproval, which play nicely with...
  • ApprovalSignoff, which uses the Concrete Models for persistence.

FsmApprovalsProcess

Signoffs is integrated with django-fsm, allowing approval processes to drive a finite state machine. To opt-in:

 $ pip install django-signoffs[fsm]

Get Me Some of That

MIT License

Check Out the Demo App

  1. pip install -e git+https://github.com/powderflask/django-signoffs.git#egg=django-signoffs
  2. python django-signoffs/manage.py install_demo
  3. python django-signoffs/manage.py runserver

Acknowledgments

Special thanks to BC Hydro, Chartwell, and all Contributors

Technology Colophon

Without django and the django dev team, the universe would have fewer rainbows and ponies. Signoffs approval process can be integrated on the deceptively clever django_fsm Friendly Finite State Machine. Signoffs uses a global registry as store for singleton code objects - thanks persisting_theory!

This package was originally created with cookiecutter and the cookiecutter-pypackage project template.

For Developers

Create a virtual-environment (.venv by default) for this project

$  pip install tox && tox -e dev

Tests

Run tests in parallel

$ pytest -n logical

Code Style / Linting

$ ruff check
$ ruff format

Versioning

Docs

Build / Deploy Automation

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_signoffs-0.4.1.tar.gz (99.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_signoffs-0.4.1-py3-none-any.whl (112.1 kB view details)

Uploaded Python 3

File details

Details for the file django_signoffs-0.4.1.tar.gz.

File metadata

  • Download URL: django_signoffs-0.4.1.tar.gz
  • Upload date:
  • Size: 99.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for django_signoffs-0.4.1.tar.gz
Algorithm Hash digest
SHA256 399903e70fce14e7cc8041e1262dd635cdc207017bd358a5907c9d5de24c8bbb
MD5 aa512daa765a8d06d661f0c40abe30a0
BLAKE2b-256 2bc9d8eb8a58ab4f225d993fbef6e7944ec8709044a3a0d99dac0d0d75f5fc89

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_signoffs-0.4.1.tar.gz:

Publisher: release.yaml on powderflask/django-signoffs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_signoffs-0.4.1-py3-none-any.whl.

File metadata

  • Download URL: django_signoffs-0.4.1-py3-none-any.whl
  • Upload date:
  • Size: 112.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for django_signoffs-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cc214e0b1ff8ab924bd6e9a5ccd51234a5de1064c91bb330084fb472633f7b23
MD5 ffc27ebc5bc43ecccae8a28c0af3d340
BLAKE2b-256 bc1fb3dfd4802bec069d6e64bb42b35160817275cff14ba00af44c70fa2c1c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_signoffs-0.4.1-py3-none-any.whl:

Publisher: release.yaml on powderflask/django-signoffs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.4.1 This release

2 files

0.4.0

2 files

0.3.12

2 files

0.3.11

2 files

0.3.10

2 files

0.3.9

2 files

0.3.8

2 files

0.3.7

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page