Configuration from Environment embedded in yaml.
Project description
Overview
Keep secrets out of env variables in production by using env files. Merge env files into configuration dynamically. Keep env file and env variable handling out of the application by making application dependent only on the configuration file. Prefer deserilization from yaml over configuration of partially initialized objects.
An argument parser that accepts:
- A required yaml file for configuration/deserialization.
- An optional env file for secrets.
Features:
- MIT license
- Interpolate environment variables directly into yaml configuration.
- Optional replacement of environment variables with an environment variable file.
- Use C Yaml safe load/dump or yaml safe load/dump.
- Pass in env to parser with os.environ as a default.
- Pass in argv to parser with sys.argv[1:] as a default.
- Yaml type registration functions.
Relative configargparse, python-dotenv, envyaml, and yamlenv:
- Dependency injection through depth-first deserialization of yaml is better than two-pass, breadth-first initialization followed by a configuration.
- Contract for env variables is between configuration file and env xor the env file, the app no longer cares much about env or secrets as it uses the interpolated configuration file.
- No ${MY_VAR:my-default} --unexpected env var syntax for default values, an expensive pattern match, and allows typos of MY_VAR to pass silently--.
- No "N/A" or null default when environment variable does not exist --allows configuration errors to pass silently to become runtime errors--.
- Env file is optional, but when provided it does not merge with existing environment variables --better tracability in production deployment--.
- Yaml type registration retains the registered yaml tag in a closure.
- Env yaml type registration retains the registered env variable set in a closure.
Install
pip install "."
Develop, Lint & Test
Setup virtual environment:
python3.10 -m venv .venv
Or setup homebrew environment:
brew install python@3.12
python3.12 -m venv .venv
Once virtual environment is setup:
. .venv/bin/activate
pip install -U pip setuptools wheel
pip install -e ".[dev]"
pre-commit install
Session:
. .venv/bin/activate
...
pytest
...
pre-coommit run --all-files
...
git commit -m 'Message'
...
deactivate
Docker, Lint & Test
docker compose up test
docker compose up pre-commit
docker compose up build-wheel && docker compose up install-wheel
...
docker compose down
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 Distributions
Built Distribution
File details
Details for the file cfgenvy-2.2.2-py39.py310.py311.py312-none-any.whl
.
File metadata
- Download URL: cfgenvy-2.2.2-py39.py310.py311.py312-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3.10, Python 3.11, Python 3.12, Python 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db538cf2ece53890d845be2462b0391bc42991bedd31eb5d169c9b3d1df29046 |
|
MD5 | fe6c4cbc578fcd7a53f46752897c2d91 |
|
BLAKE2b-256 | c591ac1eda2cceeec104418d65da5d033e6f3611847fc545b2ee08225d9be042 |