django-paranoid-model

Django abstract model with paranoid behavior.


Keywords
django, paranoid, safedelete, softdelete, delete, django-models, orm, python, timestamp
License
MIT
Install
pip install django-paranoid-model==1.0.7

Documentation

Build Status Code quality Coverage License Issues Open pull requests

Read the docs: https://darknessrdg.github.io/django-paranoid-model/

django-paranoid-model

Django abstract model with paranoid behavior, therefore when an instance is deleted it is not really deleted from database, it's applied a mask on the filter so when filter, the result are the "undeleted" instances.

Sometimes you might want to keep all datas saved on your database and when user wants do delete, it is just hidden form user.

All documentation are in the mkdocs/docs directory and online at HERE !!. If you're new here, we recomend you to checkout the documentation first 😉 .

Quick start

Install Django Paranoid Model package from pip

pip install django-paranoid-model

Add paranoid_model to your installed apps so you can use django admin with a paranoid behavior

INSTALLED_APPS = [
    ...
    'paranoid_model'
]

Good job ! You're now ready to use it.

Run tests

  pip install -e .[test]
  pytest

or run Tox to test on multiple Django versions

  pip install tox
  tox