Metadata-Version: 2.1
Name: django-maskpostgresdata
Version: 0.1.4
Summary: Creates a pg_dumpish output which masks data without saving changes to the source database.
Home-page: https://github.com/developersociety/django-maskpostgresdata
Author: Developer Society
Author-email: hello@dev.ngo
License: BSD
Description: Django Mask Postgres Data
        =========================
        
        Adds a management command to your Django project which allows you to create a (sort of) pg_dump
        of your data, with sepcific fields masked by given values.
        
        Installation
        ------------
        
        Install with pip:
        
        `pip install django-maskpostgresdata`
        
        And add `maskpostgresdata` to your `INSTALLED_APPS`:
        
        ```
        INSTALLED_APPS = [
            ...
            maskpostgresdata,
            ...
        ]
        ```
        
        Usage
        -----
        
        To configure, add a dictionary called `MASKER_FIELDS` to your settings using the following format::
        
        ```
        MASKER_FIELDS = {
            "{ APP_NAME }": {"{ MODEL_NAME }": {"{ FIELD_NAME }": { VALUE},}},
        }
        ```
        
        You can then run `manage.py dump_masked_data` and it will dump your data to `stdout`.
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
