Metadata-Version: 2.1
Name: th-django-analytics
Version: 1.0.3
Summary: thbmgModule
Home-page: https://google.com
Author: ThiagoBmg
Author-email: th.bmg5274@gmail.com
Maintainer: ThiagoBmg
Maintainer-email: th.bmg5274@gmail.com
License: MIT
Keywords: ThiagoBmg
License-File: LICENSE
Requires-Dist: Jinja2 (==3.1.2)
Requires-Dist: jinja2-time (==0.2.0)
Requires-Dist: colour (==0.1.5)
Requires-Dist: pandas (==1.4.3)
Requires-Dist: python-Levenshtein (==0.12.2)
Requires-Dist: dateparser (==1.1.1)
Requires-Dist: lxml (==4.9.1)
Requires-Dist: scikit-learn (==1.1.2)
Requires-Dist: Unidecode (==1.3.4)

==================================
Django Analytics App
==================================

Quick start 
============

1. Add "analytics" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'analytics',
    ]

2. Include the polls URLconf in your project urls.py like this:: 
    
    path("analytics/", include("analytics.urls")),

3. Run ``python manage.py migrate`` to create the analytics models. 

4. Run ``python manage.py collectstatics`` to collect the statics files. 
