Simple layered loading of env files for your 12-factor app.
Project description
envfiles
: Simple layered loading of env files for your 12-factor app
You've set up your app to configure itself from environment variables, awesome, well done. Now all you need to do is to export all of them before running your app. Oh, and also they need to be slightly different in Docker, and tests, and for local development...
Wouldn't it be neat if we could layer env files? Imagine a base.env
:
CACHE_ENABLED=1
DATABASE_HOST=localhost
DATABASE_NAME=myapp
A test.env
that overrides it:
# >> base.env
CACHE_ENABLED=0
DATABASE_NAME=myapp_test
Note the first line # >> base.env
, the # >>
is an arbitrary prefix, the
base.env
is a path relative to the file being read.
Then define one environment variable, for example ENV_FILE
, containing a
relative path to the env file you want to load:
import envfiles
env_vars = envfiles.load_env_files(os.getenv("ENV_FILE"))
assert env_vars == {
"CACHE_ENABLED": "0",
"DATABASE_HOST": "localhost",
"DATABASE_NAME": "myapp_test",
}
Note envfiles
will not mess with your os.environ
, or attempt parsing or
(de)serializing variables. The output is a dictionary of strings to strings,
what you do with it is entirely your business.
You can simply update os.environ
with
the result of envfiles
and let your configuration library/code pick it up.
Do note that if you do this the actual environment variables will be overridden
by the result of envfiles
.
Instead, I suggest updating the results with os.environ
and passing it to
environ-config
💚
import environ
import envfiles
from settings import MyConfig # your environ-config Config class
env_vars = envfiles.load(os.getenv("ENV_FILE"))
env_vars.update(os.environ)
config = environ.to_config(MyConfig, environ=env_vars)
Why?
Frustration, mostly. I've had this issue more times than I can count. I've tried
different libraries but none of them supported layering or sort of did but
messed with the os.environ
in surprising ways.
The idea behind envfiles
is to just read layered env files and let you
use whatever configuration solution you want. Configuration is the first
thing your app does, it should be as quick and straightforward as possible.
Alternatives
If envfiles
is not what you were looking for here are some other options you
may want to consider, all of them more mature and featured than envfiles
:
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 envfiles-0.1.0.tar.gz
.
File metadata
- Download URL: envfiles-0.1.0.tar.gz
- Upload date:
- Size: 8.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 920e6416babe29202eae126ec8f1abd7a8355aedfc2f26858b9716ebe6d563d8 |
|
MD5 | c0c46a85c6d4c81095f7da4674ddd910 |
|
BLAKE2b-256 | 9f1a5ec27b47e1ee4f1cda637c8c004754db227caeee4edc629dada437d24e4f |
File details
Details for the file envfiles-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: envfiles-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2306d5df224e3bfa4314d9f10083f976124a2f4196061e76faeb2cd21bdd3d90 |
|
MD5 | e64774c936d5e29e96ee0836fb828ba8 |
|
BLAKE2b-256 | 02036ca40bdaa2e5ffe9f670f9aef7ef5b052685ae8e31bb5313ae6d303898ee |