Skip to main content

No project description provided

Project description

django_history

Django_history - a module for tracking changes to model instances.

Install

pip3 install git+https://github.com/QuantumaStelata/django-history.git

Add to INSTALLED_APPS

INSTALLED_APPS = [
    ...
    'django_history'
    ...
]

Do migrations

python3 manage.py migrate

Create a model

class Task(models.Model):
  ...

Add mixin to your model

from django_history.mixins import HistoryMixin


class Task(HistoryMixin):
  ...

Note: using a HistoryMixin doesn't need to be migrated

Congrats, history is being recorded

For flexible use, write in the settings.py

# A function that returns the user who made the request.
# NOTE: function must not have arguments.
HISTORY_GET_CURRENT_USER

# If true then the history object will be saved asynchronously using celery_app.
# WARNING: history recording uses pickle serializer.
HISTORY_ALLOW_CELERY

# If you are deleting objects programmatically,
# pass in a list of field names that store information about deleting the object
# to more accurately create a history object.
HISTORY_SOFT_DELETE_FIELDS

For example

  1. Using soft delete model
# models.py
class Task(HistoryMixin):
  ...
  deleted_at = models.DateTimeField(null=True)
  ...

# settings.py
# Pass soft delete field in HISTORY_SOFT_DELETE_FIELDS
HISTORY_SOFT_DELETE_FIELDS = ['deleted_at']
  1. If you use django-currentuser, pass get_current_user function to HISTORY_GET_CURRENT_USER
# settings.py
from django_currentuser.middleware import get_current_user

HISTORY_GET_CURRENT_USER = get_current_user

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_histories-1.0.1-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file django_histories-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_histories-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 60e067b7c14b332763dafb33f47525d757bf1351862a9c4bde6ac606828ba92c
MD5 593bc49423f4aeda58f7a67e69bcba56
BLAKE2b-256 bc02431a986024cc2503f4f257bef6615387a3c6cd5bf26cdadc17b7682f4465

See more details on using hashes here.

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