Contains Common modules across Django Rest projects
Detailed documentation is in the "docs" directory.
Add "stats" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... "stats.apps.StatsConfig", ]Include the polls URLconf in your project urls.py like this:
url("^exports/", include("stats.exports.urls")),Run
python manage.py migrateto create the stats models.