{ "info": { "author": "Rafa Huelin", "author_email": "rafahuelin@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "=============================\ndjango-template-obfuscator\n=============================\n\n.. image:: https://badge.fury.io/py/django-template-obfuscator.svg\n :target: https://badge.fury.io/py/django-template-obfuscator\n\n.. image:: https://travis-ci.org/rafahuelin/django-template-obfuscator.svg?branch=master\n :target: https://travis-ci.org/rafahuelin/django-template-obfuscator\n\n.. image:: https://codecov.io/gh/rafahuelin/django-template-obfuscator/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/rafahuelin/django-template-obfuscator\n\nObfuscates desired content in a Django template in order to be difficult to scrape\n\nDocumentation\n-------------\n\nThe full documentation is at https://django-template-obfuscator.readthedocs.io.\n\nQuickstart\n----------\n\nInstall django-template-obfuscator::\n\n pip install django-template-obfuscator\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: django\n\n INSTALLED_APPS = (\n ...\n 'django_template_obfuscator.apps.DjangoTemplateObfuscatorConfig',\n ...\n )\n\nHow to use django-template-obfuscator's template tags:\n------------------------------------------------------\n\n.. code-block:: django\n\n {% load static %}\n {% load obfuscator %}\n\n \n\n \n \n\n
\n\n \n\n \n \n\nFeatures\n--------\n\n* TODO\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n\n source