Skip to content

dhruvsingh/django-clickanalysis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clickanalysis

This package provides an easy way to track all the link clicks you want to track whether they exists in site or in your email campaigns

Quick start

  1. Add "clickanalysis" to INSTALLED_APPS:
INSTALLED_APPS = {
... 'clickanalysis', ...

}

  1. Add clickanalysis.middleware.ClickAnalysisMiddleware to the MIDDLEWARE_CLASSES tuple in your settings file.
  2. Run python manage.py syncdb to create required tables.
  3. After all this you are set to track all the clicks. You may be seeing two tables created in admin site "Campaign" and "ClickTracking".
  4. You can start by creating a campaign in Campaign table which will generate a unique ID for you, just copy that and keep it in clipboard to paste in the links.
  5. Now whatever links you want to track just append this param to those links /link/?cid=campaign_unique_id

You will start getting tracking data soon when users start clicking through the links!!!

About

Django app for tracking url clicks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%