Metadata-Version: 1.1
Name: ox_secrets
Version: 0.3.1
Summary: Simple secret server for python
Home-page: http://github.com/emin63/ox_secrets
Author: Emin Martinian
Author-email: emin.martinian@gmail.com
License: custom
Description: Introduction
        ============
        
        The ``ox_secrets`` package provides a simple secret server for python.
        You can use simple file based secret storage in development and testing
        and then add more sophisticated secret storage in production. Similarly,
        you can use it to switch which type of secret manager you are using by
        changing only the mode for ``ox_secerts`` without having to re-write the
        rest of your code.
        
        Think of it similar to an ORM for secrets.
        
        Currently, the following back ends are supported:
        
        -  ``fss``: File secret server
        
           -  Reads secrets from a local file.
           -  Useful for development and testing.
        
        -  ``evs``: Environment variable server.
        
           -  While other modes back ends can use environment variables to
              override, this mode **ONLY** looks at environment variables.
        
        -  ``aws``: Uses the AWS Secret Manager.
        
        The main secret server can merge and cache secrets from multiple
        back-ends in case your secrets are split across various places.
        
Keywords: secret management
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
