AWS Extensions for Python Decouple
Project description
Python Decouple AWS helps you to organize and access sensitive information on AWS Secrets Manager.
It also makes it easy for you to:
Not repeat the boto3 boilerplate code;
Define default values;
Use os.environ as fall back;
Supports Python 3.4+
Why
Single place to save all secrets (AWS Secrets Manager)
Keep sensitive information away from code and environments
Simpler API to access AWS Secrets Manager (rather than boto3)
Installation
pip install python-decouple-aws
Usage example 1
# settings.py from decouple_aws import get_config # The package provides a wrapper function that will # fallback to environment variables and fail gracefully # if AWS Secrets Manager is not accessible for whatever # reason. config = get_config('your-project/secret/name', 'ap-southeast-2') # Use decouple config like normal MY_EMAIL_USER = config('MY_EMAIL_USER', 'default-user') MY_EMAIL_PASS = config('MY_EMAIL_PASS')
Usage example 2
# settings.py from decouple import Config from decouple_aws import RepositoryAwsSecretManager # if you would like it to fail if secrets # manager is inaccessible, you can build it manually. # initialise the config with the AWS repository # Pass the repo your secret name and the region repo = RepositoryAwsSecretManager('your-project/secret/name', 'ap-southeast-2') config = Config(repo) # Use decouple config like normal MY_SUPER_SECRET_SETTING = config('MY_SUPER_SECRET_SETTING')
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file python-decouple-aws-0.3.2.tar.gz
.
File metadata
- Download URL: python-decouple-aws-0.3.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.5 CPython/3.6.6 Darwin/18.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae374302259b3f9825287e0962a9c4ab4578ec572bc126595250401b9fc6606f |
|
MD5 | c67ffd980dcaed65398b4446d0b0874f |
|
BLAKE2b-256 | 2500d5cc5aaa10c40bfcf4fd8c90f3e96016b078ce8bd4ba8a0d5e7a8746810d |
File details
Details for the file python_decouple_aws-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: python_decouple_aws-0.3.2-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.5 CPython/3.6.6 Darwin/18.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58ee5b5b037aa13db0905d9f524ffc8c403fb0721f2c707b2c9d048a5b1d1c61 |
|
MD5 | 08abe329346b12c0f0c304b1709beccd |
|
BLAKE2b-256 | 06c1cae32018e2ec727a86556216b1bda602c5a43376a71e21b1e4bfd44bee22 |