Skip to content

Common things that can be useful in any Django projects.

License

Notifications You must be signed in to change notification settings

mu-team/django-cutils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django common and useful routines

Common Utilities, simple, just cutils

Common things that can be useful in any Django projects.

System requirements

python --version == 3.4.*, 3.5.*, 3.6.*

Installation

pip install git+https://github.com/mu-team/django-cutils.git

Contribution

pip install -r requirements.txt

Overview

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): ...

About

Common things that can be useful in any Django projects.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages