Skip to main content

History tracking for Django and Postgres

Project description

django-pghistory

django-pghistory tracks changes to your Django models using Postgres triggers, providing:

  • Reliable history tracking everywhere with no changes to your application code.
  • Structured history models that mirror the fields of your models.
  • Grouping of history with additional context attached, such as the logged-in user.

django-pghistory has a number of ways in which you can configure history tracking for your application's needs and for performance and scale. An admin integration and middleware is included out of the box too.

Quick Start

Decorate your model with pghistory.track. For example:

import pghistory

@pghistory.track()
class TrackedModel(models.Model):
    int_field = models.IntegerField()
    text_field = models.TextField()

Above we've tracked TrackedModel. Copies of the model will be stored in a dynamically-created event model on every insert and update.

Run python manage.py makemigrations followed by migrate and voila, every change to TrackedModel is now stored. This includes bulk methods and even changes that happen in raw SQL. For example:

from myapp.models import TrackedModel

m = TrackedModel.objects.create(int_field=1, text_field="hello")
m.int_field = 2
m.save()

print(m.events.values("pgh_obj", "int_field"))

> [{'pgh_obj': 1, 'int_field': 1}, {'pgh_obj': 1, 'int_field': 2}]

Above we printed the history of int_field. We also printed pgh_obj, which references the tracked object. We'll cover how these fields and additional metadata fields are tracked later.

django-pghistory can track a subset of fields and conditionally store events based on specific field transitions. Users can also store free-form context from the application in event metadata, all with no additional database queries. See the next steps below on how to dive deeper and configure it for your use case.

Compatibility

django-pghistory is compatible with Python 3.9 - 3.13, Django 4.2 - 5.1, Psycopg 2 - 3, and Postgres 13 - 17.

Documentation

View the django-pghistory docs here to learn more about:

  • The basics and terminology.
  • Tracking historical events on models.
  • Attaching dynamic application context to events.
  • Configuring event models.
  • Aggregating events across event models.
  • The Django admin integration.
  • Reverting models to previous versions.
  • A guide on performance and scale.

There's also additional help, FAQ, and troubleshooting guides.

Installation

Install django-pghistory with:

pip3 install django-pghistory

After this, add pghistory and pgtrigger to the INSTALLED_APPS setting of your Django project.

Other Material

There's a DjangoCon 2023 talk that walks through how the library works and provides an overview of problems that can be solved through history-tracking in Django, discussing context-tracking, event reversions, and soft-deletes.

Contributing Guide

For information on setting up django-pghistory for development and contributing changes, view CONTRIBUTING.md.

Creator

Other Contributors

  • @max-muoto
  • @shivananda-sahu
  • @asucrews
  • @Azurency
  • @dracos
  • @adamchainz
  • @eeriksp
  • @pfouque
  • @tobiasmcnulty
  • @lokhman
  • @SupImDos
  • @pmdevita
  • @pablogadhi
  • @xaitec
  • @foobarna
  • @pmdevita

Project details


Download files

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

Source Distribution

django_pghistory-3.5.0.tar.gz (31.2 kB view details)

Uploaded Source

Built Distribution

django_pghistory-3.5.0-py3-none-any.whl (38.3 kB view details)

Uploaded Python 3

File details

Details for the file django_pghistory-3.5.0.tar.gz.

File metadata

  • Download URL: django_pghistory-3.5.0.tar.gz
  • Upload date:
  • Size: 31.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/5.15.0-1057-aws

File hashes

Hashes for django_pghistory-3.5.0.tar.gz
Algorithm Hash digest
SHA256 cf0f3db64699ebfbffb77232c85618520bebd2ca12083a0584b9579b16d027d1
MD5 70dc3304f2e72c0a0eb9c75dfc0750b8
BLAKE2b-256 86c3e2d1196de98999950f0294f9d462c4460e9bf0a655ee4c0da32a4c192a56

See more details on using hashes here.

Provenance

File details

Details for the file django_pghistory-3.5.0-py3-none-any.whl.

File metadata

  • Download URL: django_pghistory-3.5.0-py3-none-any.whl
  • Upload date:
  • Size: 38.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/5.15.0-1057-aws

File hashes

Hashes for django_pghistory-3.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c0818e1db4ebe0493588a5ea5fba1a81b30026a17494bbcb8f3745a63684b36b
MD5 bc60616ad1662b57ee3864242b7c6a3e
BLAKE2b-256 5d2dd72a6284977348d7b58fc84bd569568455cb44dc58e3108b5a262375ff72

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page