Metadata-Version: 1.0
Name: protected
Version: 0.0.1
Summary: "Proteted" data types suitable for hiding secrets in Django config files.
Home-page: https://github.com/wnyc/protected
Author: Adam DePrince
Author-email: adeprince@nypublicradio.org
License: MIT
Description: 
        pyzopfli
        ======
        
        "Protected" data types to hide secrets in Django config files.
        
        Running a Django server in debug mode risks exposing secrets like API
        keys and passwords to the world.  While Django will "filter out"
        certain values, it still makes available the contents of local
        variables which might also contain hidden keys. 
        
        Protected works by breaking the object's __repr__ method to prevent casual display.
        
        from protected import ProtectedString
        
        >>> print ProtectedString('abc')
        abc
        
        >>> print repr(ProtectedString('abc')
        <Protected String 'abc'>
        
        
Platform: UNKNOWN
