Metadata-Version: 2.1
Name: aws-python-utils
Version: 0.0.1
Summary: Simplify use of AWS resources in your code with aws-python-utils
Home-page: https://github.com/sepulworld/aws-python-utils
Author: Zane Williamson
Author-email: zane.williamson@gmail.com
License: MIT
Description: 
        # aws-python-utils
        
        Simplify use of AWS resources in your code with aws-python-utils
        
        ### AwsSecretManager
        
        ##### get_secret()
        
        Use ENVIRONMENT variable "AWS_SECRET_MANAGER_SECRET" or pass in secret_key name.
        
        ###### Example Usage
        
        Via ENVIRONMENT variable
        ```
        In [1]: import os
        In [2]: import secretmanager
        In [3]: os.environ["AWS_SECRET_MANAGER_SECRET"] = "mysecret"
        In [4]: secretmanager = secretmanager.AwsSecretManager()
        In [5]: secretmanager.get_secret()
        Out[5]: 'supersecretpass'
        ```
        
        Or pass in secret_key name ..
        ```
        In [1]: import os
        In [2]: import secretmanager
        In [3]: secretmanager = secretmanager.AwsSecretManager()
        In [4]: secretmanager.get_secret(secret_key="mysecret")
        Out[4]: 'supersecretpass'
        ```
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
