Skip to main content

Track model instance changes in Django

Project description

django-model-changes allows you to track the state and changes of a model instance.

Requirements: Python 3.14+, Django 5.0-6.x

Quick start

  1. Install django-model-changes:

    uv add django-model-changes

    Or with pip:

    pip install django-model-changes
  2. Add the ChangesMixin to your model:

    >>> from django.db import models
    >>> from django_model_changes import ChangesMixin
    
    >>> class User(ChangesMixin, models.Model):
    >>>     name = models.CharField(max_length=100)
  3. Get instance changes:

    >>> user = User()
    >>> user.name = 'Foo Bar'
    >>> user.save()
    
    >>> user.name = 'I got a new name'
    
    >>> # Get current state
    >>> user.current_state()
    {'id': 1, 'name': 'I got a new name'}
    
    >>> # Get previous state (state after previous save/create/delete)
    >>> user.previous_state()
    {'id': 1, 'name': 'Foo Bar'}
    
    >>> # Get old state (state before previous save/create/delete)
    >>> user.old_state()
    {'id': None, 'name': ''}
    
    >>> # Get changes from the previous state to the current state
    >>> user.changes()
    {'name': ('Foo Bar', 'I got a new name')}
    
    >>> # Get changes from the old state to the current state
    >>> user.old_changes()
    {'id': (None, 1), 'name': ('', 'Foo Bar')}
    
    >>> # Check if the instance was persisted (saved)
    >>> user.was_persisted()
    False
    
    >>> # Check if the instance is persisted
    >>> user.is_persisted()
    True
  4. Listen for changes:

    >>> from django_model_changes import post_change
    >>> def my_callback(sender, instance, **kwargs):
    >>>     # Do something with previous and current state
    >>>     instance.old_state()
    >>>     instance.current_state()
    
    >>>     # There is also a convenience method to get
    >>>     # an instance from the previous state
    >>>     instance.old_instance()
    
    >>> post_change.connect(my_callback, User)
    

Overview

django-model-changes allows you to retrieve the following states from an instance:

  1. current_state()

    The current state of the instance.

  2. previous_state()

    The state of the instance after it was created, saved or deleted the last time.

  3. old_state()

    The previous previous_state(), i.e. the state of the instance before it was created, saved or deleted the last time.

It also provides convenience methods to get changes between states:

  1. changes()

    Changes from previous_state to current_state.

  2. previous_changes()

    Changes from old_state to previous_state.

  3. old_changes()

    Changes from old_state to current_state.

And the following methods to determine if an instance was/is persisted in the database:

  1. was_persisted()

    Was the instance persisted in its old state.

  2. is_persisted()

    Is the instance is_persisted in its current state.

This schematic tries to illustrate how these methods relate to each other:

after create/save/delete            after save/delete                  now
|                                   |                                  |
.-----------------------------------.----------------------------------.
|\                                  |\                                 |\
| \                                 | \                                | \
|  old_state()                      |  previous_state()                |  current_state()
|                                   |                                  |
|-----------------------------------|----------------------------------|
|  previous_changes() (prev - old)  |  changes() (cur - prev)          |
|-----------------------------------|----------------------------------|
|                      old_changes()  (cur - old)                      |
.----------------------------------------------------------------------.
 \                                                                      \
  \                                                                      \
   was_persisted()                                                        is_persisted()

Documentation

Refer to the doc strings in changes.py, or build the documentation:

>>> pip install Sphinx
>>> cd docs
>>> make html
Open build/html/index.html

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_model_changes-1.0.3.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

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

django_model_changes-1.0.3-py3-none-any.whl (6.5 kB view details)

Uploaded Python 3

File details

Details for the file django_model_changes-1.0.3.tar.gz.

File metadata

  • Download URL: django_model_changes-1.0.3.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_model_changes-1.0.3.tar.gz
Algorithm Hash digest
SHA256 c966572cb168095e85e1516be2dff77f65d8f12ba0aeb51e0b2f4b6c25caf7c1
MD5 632e53404cffc0fbaf4acccb0a7e2f2b
BLAKE2b-256 249587c5ab09278156ec7339295620c0bd759600922ea698f198332f442aaeec

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_model_changes-1.0.3.tar.gz:

Publisher: publish.yaml on kajic/django-model-changes

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_model_changes-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_model_changes-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 39855fd865fecc636d221bd2b7e50b346610119925d183e0c3eef4c96e111054
MD5 73b7ffad1353d285fe9d846202b1eb69
BLAKE2b-256 b953df76a9ccfa208b0874429cd9bda7261ed5447d9ecf259e2ad1792caf1fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_model_changes-1.0.3-py3-none-any.whl:

Publisher: publish.yaml on kajic/django-model-changes

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

Supported by

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