Common Utilities, simple, just
cutils
Common things that can be useful in any Django projects.
python --version == 3.4.*, 3.5.*, 3.6.*
pip install git+https://github.com/mu-team/django-cutils.git
pip install -r requirements.txt
from django_cutils import models
# monitors for any changes in the internal state of the child model when save and update.
class ExampleModel(models.TimestampModel): ...
# replaces the standard removal mechanism with a soft one.
class ExampleModel(models.SoftDeletionModel): ...
# Compilation of `TimestampModel` and `SoftDeletionModel`.
class ExampleModel(models.CUDModel): ...