A django-rest-framework application that provides many varieties of coupons
Detailed documentation is in the README.md file.
Add "coupons" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'coupons', ]
Include the coupons URLconf in your project urls.py like this:
url(r'^', include('coupons.urls')),
Run
python manage.py migrate
to create the polls models.