Metadata-Version: 1.1
Name: django-extra-sensitive-variables
Version: 1.0.2
Summary: Globally censor a set of default variable names in your Django error reports
Home-page: https://github.com/shaneallgeier/django-extra-sensitive-variables
Author: Shane Allgeier
Author-email: shaneallgeier@gmail.com
License: MIT
Description: Django Extra Sensitive Variables
        ================================
        
        About
        -----
        extra_sensitive_variables is a third-party exception filter for Django. This
        allows you to globally censor a set of default variable names in Django's error
        reports regardless of a function's lack of @sensitive_* decorators. Basically,
        any variable matching the names provided in settings.EXTRA_SENSITIVE_VARIABLES
        or settings.EXTRA_SENSITIVE_POST_PARAMETERS will be censored.
        
        Installation
        ------------
        ::
        
          pip install django-extra-sensitive-variables
        
        Then add the following variables to your settings.py and modify them as you see fit:
        ::
        
          EXTRA_SENSITIVE_VARIABLES = ['password', 'credentials']
          EXTRA_SENSITIVE_POST_PARAMETERS = ['password', 'credentials', 'credit_card_number']
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
