django-utils v0.3.0 documentation
First, you need to install django-utils.
There are a couple of ways:
pip install djutils
or
pip install -e git+https://github.com/coleifer/django-utils.git#egg=djutils
git clone https://github.com/coleifer/django-utils.git
cd django-utils
python setup.py test
sudo python setup.py install
After installing, adding django-utils to your projects is a snap. Simply add it to your projects’ INSTALLED_APPs and run ‘syncdb’:
# settings.py
INSTALLED_APPS = [
...
'djutils'
]