django-toolware

A utility application that offers the most commonly-used tools.


License
BSD-3-Clause
Install
pip install django-toolware==1.0.6

Documentation

Django Finalware

A utility application that offers the most commonly-used tools.

build-status-image-travis build-status-image-fury build-status-image-pypi

Overview

A utility application that offers the most commonly-used tools and mixins.

How to install

1. easy_install django-toolware
2. pip install django-toolware
3. git clone http://github.com/un33k/django-toolware
    a. cd django-toolware
    b. run python setup.py
4. wget https://github.com/un33k/django-toolware/zipball/master
    a. unzip the downloaded file
    b. cd into django-toolware-* directory
    c. run python setup.py install

How to use

 # Add `toolware` to the very end of your INSTALLED_APPS

 INSTALLED_APPS = [
     'django.contrib.auth',
     'django.contrib.contenttypes',
     'django.contrib.sessions',
     'django.contrib.sites',
     'django.contrib.humanize',
     'django.contrib.admin',

     # ......

     'toolware',
 ]


 # Have a look at the source code for the available utility tools and mixins

Running the tests

To run the unit test:

python manage.py test

License

Released under a (MIT) license.