Metadata-Version: 1.0
Name: django-devsafe
Version: 0.2.2
Summary: Safely work with a production database in an insecure environment.
Home-page: https://github.com/Miserlou/django-devsafe
Author: Rich Jones
Author-email: rich@openwatch.net
License: MIT License
Description: ![django-devsafe](http://i.imgur.com/MhtKl25.gif)
        
        django-devsafe
        ==============
        
        Safely work with a production database in an insecure environment. **django-devsafe** scrambles sensitive user data so that you don't accidentally expose the private information of your users during testing.
        
        Quick start
        -----------
        
        0. Install django-devsafe
        
            ```python
            pip install django-devsafe
            ```
        
        1. Add "devsafe" to your INSTALLED_APPS setting like this:
        
            ```python
            INSTALLED_APPS = (
              ...
              'devsafe',
            )
            ```
        
        2. Optionally, you can use your settings file to define additional profile fields to scramble. Your User object must
        have a **get_profile()** method to access these fields.
        
            ```python
            DEVSAFE_FIELDS = ['secret_payment_token', 'secret_api_key']
            ```
        
        3. Invoke devsafe!
        
            ```bash
            python manage.py devsafe
            ```
        
        Usage
        ----------
        
        ```bash
        Usage: manage.py devsafe [options] 
        
        Scrambles your sensitive user data. By default, this just does email addresses and passwords. Omits superusers and staff.
        
        EXAMPLE:
        
        /manage.py devsafe
        
        Options:
          --dry                 Dry run, does not actually scramble data. Default
                                False.
          --quiet               Be quiet. Default False.
        
        ```
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
