Django SuperTagging v0.4.5 documentation

Installation

Download SuperTagging

There are a couple ways for you to get Django-SuperTagging,

  1. Clone the git repository from here

  2. Download the latest build from our opensource site here

  3. Use PIP to install from our opensource site pypi
    • pip install –extra-index-url=http://opensource.washingtontimes.com/pypi/simple/ supertagging

Dependencies

Add SuperTagging to your project

Add to INSTALLED_APPS

INSTALLED_APPS = (
    ...
    supertagging,
    ...
)

Run syncdb:

>>> ./manage.py syncdb