Installation

Download SuperTagging

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

  1. Clone the git repository from GitHub
  2. Use pip to install it from PyPI
pip install supertagging

Dependencies

Add SuperTagging to your project

Add to INSTALLED_APPS

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

Run syncdb:

>>> ./manage.py syncdb

Project Versions

Table Of Contents

Previous topic

Welcome to Django SuperTagging’s documentation!

Next topic

Getting Started