python-env-loader
Reads the variables from .env files in similar way that is used in
React.js
and adds them to environment variables, automatically guessing and parsing to correct types in
Python. It is great for managing app settings during development, tests and in production
without writing additional configuration, and to hold settings separated by
environment type clearly in a one place.
Usage
Call load_env on the application start, and it will load environment variables from a
certain set of .env files in the selected directory and return and EnvFile object.
After that, you can get values by using get method of EnvFile object, or by reading it
directly from the environment variables (by using os.environ).
Example .env file looks like this:
SECRET_KEY=test-secret-key.123
EXTERNAL_API_URL=api.example.com
EXTERNAL_API_KEY=this-is-external-api-key
DEBUG=true
ALLOWED_HOSTS=127.0.0.1:8000,0.0.0.0:8000,localhost:8000
Getting started
Installation
Install the latest version with:
pip install -U python-env-loader
First steps
Assuming you have created the .env and .env.local files inside your project root directory:
.
├── .env
└── .env.local
And they have the following content:
# .env
DEBUG=false # maps to False in python
ALLOWED_HOSTS=, # maps to empty list []
# .env.local
DEBUG=true # maps to True in python
ALLOWED_HOSTS=127.0.0.1:8000,0.0.0.0:8000,localhost:8000 # maps to list [127.0.0.1:8000, 0.0.0.0:8000, localhost:8000]
Add the following code to your settings module - for example settings.py in Django:
# settings.py
from env_loader import load_env
env = load_env() # if env files are in your root directory of the project
or:
# settings.py
from env_loader import load_env
env = load_env("/app") # if your env file is stored in /app directory
Parsed key/value pairs from the .env and .env.local files are now accessible in env object:
# settings.py
env.get("DEBUG") # returns True, because .env.local file has higher priority
env.get("IS_TEST_ENV", False) # returns False, because this key is not present in any env file
or you can use them as system environment variable and they can be conveniently accessed
via os.getenv(), but then every value is received as a string:
# settings.py
import os
DEBUG = os.getenv("DEBUG") # returns "true" AS A STRING
Automatic parsing
python-env-loader automatically guesses the Python type of the environment variable. If a variable consists
only of digits, it assumes that it's an integer. If a value consists only of a digits and has a one dot, then
it's treated as a float.
More custom parsing:
| Python value | .env value |
|---|---|
| True | true, True, y, yes |
| False | false, False, n, no |
| None | null, None |
Empty string is mapped to None.
You can disable automatic parsing by passing auto_parse=False to load_env function:
from env_loader import load_env, EnvTypes
env = load_env(auto_parse=False)
Switching between setups
When you're loading your env settings, you can switch between 4 of a different setups of them:
default, development, production and test. By default, default is used, but you can
select different setup by passing a value to env_type argument of load_env function:
from env_loader import load_env, EnvTypes
env = load_env(env_type=EnvTypes.DEVELOPMENT_ENV)
Files hierarchy
For each setup, files on the left have more priority than files on the right:
- default:
.env.local,.env - development:
.env.development.local,.env.development,.env.local,.env - production:
.env.production.local,.env.production,.env.local,.env - test:
.env.test.local,.env.test,.env(note.env.localis missing)
Release files for python-env-loader 0.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| python-env-loader-0.0.2.tar.gz | 5.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| python_env_loader-0.0.2-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 23.4 kB
Release files / python-env-loader-0.0.2.tar.gz
| Download URL | python-env-loader-0.0.2.tar.gz |
|---|---|
| Size | 5.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e555e1cf8cbc9588718d9824205d8c5f0a8b99aa2b38922cb13165582247a2ca
|
|
BLAKE2b-256 checksum How to use checksums |
b3e61e5b58bffbfb4517efdccec9a04309e0e8f281457e5df272d72493e0dcdc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
|
Release files / python_env_loader-0.0.2-py2.py3-none-any.whl
| Download URL | python_env_loader-0.0.2-py2.py3-none-any.whl |
|---|---|
| Size | 17.8 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
2a9e57ebbe085e7261d98400631590513ab113a14eac7a7d712553e560e93e29
|
|
BLAKE2b-256 checksum How to use checksums |
d7155a46230c998e7403e47bd7942bffcfd7f7a2f021fa810cfd25a69164316d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
|