Skip to main content

Tracking dirty fields on a Django model instance.

Project description

Join the chat at https://gitter.im/romgar/django-dirtyfields Published PyPI version Travis CI status Coveralls code coverage status Read the Docs documentation status

Tracking dirty fields on a Django model instance. Dirty means that field in-memory and database values are different.

This package is compatible and tested with the following Python & Django versions:

Django

Python

1.11, 2.0, 2.1

3.6, 3.7

2.2, 3.0, 3.1, 3.2

3.6, 3.7, 3.8 ,3.9

Install

$ pip install django-dirtyfields

Usage

To use django-dirtyfields, you need to:

  • Inherit from DirtyFieldsMixin in the Django model you want to track.

    from django.db import models
    from dirtyfields import DirtyFieldsMixin
    
    class ModelTest(DirtyFieldsMixin, models.Model):
        """A simple test model to test dirty fields mixin with"""
        boolean = models.BooleanField(default=True)
        characters = models.CharField(blank=True, max_length=80)
  • Use one of these 2 functions on a model instance to know if this instance is dirty, and get the dirty fields:

    • is_dirty()

    • get_dirty_fields()

Example

>>> from tests.models import ModelTest
>>> tm = ModelTest.objects.create(boolean=True,characters="testing")
>>> tm.is_dirty()
False
>>> tm.get_dirty_fields()
{}

>>> tm.boolean = False

>>> tm.is_dirty()
True
>>> tm.get_dirty_fields()
{'boolean': True}

Consult the full documentation for more information.

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-dirtyfields-1.7.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

django_dirtyfields-1.7.0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file django-dirtyfields-1.7.0.tar.gz.

File metadata

  • Download URL: django-dirtyfields-1.7.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/1.3.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.10

File hashes

Hashes for django-dirtyfields-1.7.0.tar.gz
Algorithm Hash digest
SHA256 76fd01c69e077fd39f49376d9684d04188b821dafd342bf82d935036ff2f5946
MD5 b4631a1e8c7035b044cefd267c2b51a4
BLAKE2b-256 2c82cb4f4c7ae322c5acc6ceff18b5a6b28386ccb7580907f0dfffb278e6d42e

See more details on using hashes here.

Provenance

File details

Details for the file django_dirtyfields-1.7.0-py3-none-any.whl.

File metadata

  • Download URL: django_dirtyfields-1.7.0-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/1.3.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.6.10

File hashes

Hashes for django_dirtyfields-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ed8d780d439281372ca1dd301b21d6536b950dad3c32f95740e8236c0ed423bc
MD5 9248b29d835d11c15cf752ca764b97b3
BLAKE2b-256 5cc0aaf3e82a1b6dff5ebf65f7cc92697d9bc10939bae02ac227b2f83137fd9e

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