A library that offers a simple method of loading and accessing environmental variables and `.env` file values.
Project description
secretbox
A library that offers a simple method of loading and accessing environmental variables, .env
file values, and other sources of secrets. The class stores values to state when load methods are called.
Loaded values are also injected into the local environ. This is to assist with adjacent libraries that reference os.environ
values by default. Required values can be kept in a .env
file instead of managing a script to load them into the environment.
Requirements
- Python >=3.6
Optional Dependencies
- boto3
- boto3-stubs[secretsmanager]
Install
$ pip install secretbox
Optional AWS Secret Manager support
$ pip install secretbox[aws]
Example use with auto_load=True
This loads the system environ and the .env
from the current working directory into the class state for quick reference.
from secretbox import SecretBox
secrets = SecretBox(auto_load=True)
def main() -> int:
"""Main function"""
my_sevice_password = secrets.get("SERVICE_PW")
# More code
return 0
if __name__ == "__main__":
raise SystemExit(main())
Example use with load_from()
This loads our system environ, our AWS secret store, and then a specific .env
file if it exists (replacing any values from the prior to loads)
Notice we can declare our parameters when creating the SecretBox
instance and when calling load_from()
. All keywords will be sent to the loaders with preference to the load_from()
values.
from secretbox import SecretBox
secrets = SecretBox(filename="sandbox/.override_env")
def main() -> int:
"""Main function"""
secrets.load_from(
loaders=["environ", "awssecret", "envfile"],
aws_sstore_name="mySecrets",
aws_region_name="us-east-1",
)
my_sevice_password = secrets.get("SERVICE_PW")
# More code
return 0
if __name__ == "__main__":
raise SystemExit(main())
SecretBox arguments:
SecretBox(auto_load: bool = False, load_debug: bool = False, **kwargs: Any)
auto_load
- Loads environment variables and then the .env file from current working directory if found.
load_debug
- When true, internal logger level is set to DEBUG. Secret values are truncated, however it is not recommended to leave this on for production deployments.
kwargs
- All keyword arguments will be passed to loaders when called. These can also be given to the
load_from()
method as detailed below.
SecretBox API:
.get(key: str, default: str = "") -> str
- Returns the string value of the loaded value by key name. If the key does not exist, an empty string will be returned
""
or the provided optional default value. - Note: This method pulls from the instance's state and does not reflect changes to the environment before/after loading.
.load_from(loaders: list[str], **kwargs: Any) -> None
- Runs load_values from each of the listed loadered in the order they appear
- Loader options:
- environ
- Loads the current environmental variables into secretbox.
- envfile
- Loads .env file. Optional
filename
kwarg can override the default load of the current working directory.env
file.
- Loads .env file. Optional
- awssecret
- Loads secrets from an AWS secret manager. Requires
aws_sstore_name
andaws_region_name
keywords to be provided or for those values to be in the environment variables underAWS_SSTORE_NAME
andAWS_REGION_NAME
.aws_sstore_name
is the name of the store, not the arn.
- Loads secrets from an AWS secret manager. Requires
- environ
- kwargs
- All keyword arguments are passed into the loaders when they are called. Each loader details which extra keyword arguments it uses or requires above.
.env
file format
Current format for the .env
file supports strings only and is parsed in the following order:
- Each seperate line is considered a new possible key/value set
- Each set is delimted by the first
=
found - Leading and trailing whitespace are removed
- Matched leading/trailing single quotes or double quotes will be stripped from values (not keys).
I'm open to suggestions on standards to follow here.
This .env
example:
# Comments are ignored
KEY=value
Invalid lines without the equal sign delimiter will also be ignored
Will be parsed as:
{"KEY": "value"}
This .env
example:
PASSWORD = correct horse battery staple
USER_NAME="not_admin"
MESSAGE = ' Totally not an "admin" account logging in'
Will be parsed as:
{
"PASSWORD": "correct horse battery staple",
"USER_NAME": "not_admin",
"MESSAGE": ' Toally not an "admin" account logging in',
}
Local developer installation
It is highly recommended to use a venv
for installation. Leveraging a venv
will ensure the installed dependency files will not impact other python projects.
Clone this repo and enter root directory of repo:
$ git clone https://github.com/Preocts/secretbox
$ cd secretbox
Create and activate venv
:
# Linux/MacOS
python3 -m venv venv
. venv/bin/activate
# Windows
python -m venv venv
venv\Scripts\activate.bat
# or
py -m venv venv
venv\Scripts\activate.bat
Your command prompt should now have a (venv)
prefix on it.
Install editable library and development requirements:
# Linux/MacOS
pip install -r requirements-dev.txt
pip install --editable .[aws,tests]
# Windows
python -m pip install -r requirements-dev.txt
python -m pip install --editable .[aws,test]
# or
py -m pip install -r requirements-dev.txt
py -m pip install --editable .[aws,test]
Install pre-commit hooks to local repo:
pre-commit install
pre-commit autoupdate
Run tests
tox
To exit the venv
:
deactivate
Makefile
This repo has a Makefile with some quality of life scripts if your system supports make
.
install
: Clean all artifacts, update pip, install requirements with no updatesupdate
: Clean all artifacts, update pip, update requirements, install everythingclean-pyc
: Deletes python/mypy artifactsclean-tests
: Deletes tox, coverage, and pytest artifactsbuild-dist
: Build source distribution and wheel distribution
Project details
Release history Release notifications | RSS feed
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 secretbox-2.0.0.tar.gz
.
File metadata
- Download URL: secretbox-2.0.0.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca63b7bf7dd3bf0c5a652e14a2285602a3d65af2c22fd789bf05e31e85298857 |
|
MD5 | 069af998934d169b55321b3b4c49075e |
|
BLAKE2b-256 | 436bb79720a5eda63a874fc3727981ab5a4f5c1f7677762a575abf414065c520 |
File details
Details for the file secretbox-2.0.0-py3-none-any.whl
.
File metadata
- Download URL: secretbox-2.0.0-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91fdd2074b463257adb541aaeb5cc757d8d7addddf353842ee104406214afe3d |
|
MD5 | 38efb1e3ca28df52a6ac73df9dad1919 |
|
BLAKE2b-256 | 989445e6dd99ed194642ec1a5635c14852619d3f1b4e0085f6195d497d486b1b |