{ "info": { "author": "Matthias Kestenholz", "author_email": "mk@feinheit.ch", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Application Frameworks" ], "description": "=================================================================\ndjango-privacy-killer - Template tags for including tracker codes\n=================================================================\n\n.. image:: https://travis-ci.org/matthiask/django-privacy-killer.png?branch=master\n :target: https://travis-ci.org/matthiask/django-privacy-killer\n\n.. image:: https://readthedocs.org/projects/django-privacy-killer/badge/?version=latest\n :target: https://django-privacy-killer.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\nThis module allows specifying tracking codes through settings (and therefore\nthrough the environment). It currently supports Google Tag Manager and\nGoogle Analytics tracking codes, but pull requests for adding support for\nadditional trackers is very welcome!\n\n\nUsage variant 1\n===============\n\n- Install the module using ``pip install django-privacy-killer``\n- Add ``privacy_killer`` to ``INSTALLED_APPS`` and add the list of tracking\n IDS to your settings as ``PRIVACY_KILLER_IDS = ['GTM-****', 'UA-****', ...]``\n (Note! This is a stupid example -- specifying both GTM and UA codes is\n probably not what you want\n- Load the template tag library (``{% load privacy_killer %}``) and add the\n two tags, ``{% privacy_killer_head %}`` near the ``
`` of your site,\n and ``{% privacy_killer_body %}`` near the ```` element.\n\n\nUsage variant 2\n===============\n\nDo not use this module, and also do not use any trackers at all.\n\n\nSupported trackers\n==================\n\n- Google Tag Manager (``GTM-****``)\n- Google Universal Analytics (``UA-****``)\n- Facebook Pixel (Prefix the ``****`` code with ``FBQ-`` when specifying\n ``PRIVACY_KILLER_IDS``)\n\n\n- `Documentation