Parse config options from the OS environment.
Project description
A module for reading configuration values from the OS environment variables.
Compared to using straight os.getenv() this module provides a view convenience functions, for example, for parsing booleans.
I was not happy with using straight os.getenv() because we’ve had a number of errors that were related to missing config values in .env files. This module should help with that by providing a clean way for accessing config variables.
Usage
$ pip install envconfig
import envconfig
boolopt = envconfig.bool("BOOL_OPTION")
intopt = envconfig.int("INTEGER_OPTION")
stropt = envconfig.int("STRING_OPTION")
listopt = envconfig.list("LIST_OPTION")
dictopt = envconfig.dict("DICT_OPTION")
Meta
Daniel Bader – @dbader_org – mail@dbader.org
Distributed under the MIT license. See LICENSE.txt for more information.
History
0.2.1 (2021-07-23)
envconfig.list(): return [] if env var is empty
envconfig.dict(): return {} if env var is empty
0.2.0 (2021-07-23)
Add envconfig.dict()
0.1.0 (2013-05-27)
Initial release
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
File details
Details for the file envconfig-0.2.1.tar.gz
.
File metadata
- Download URL: envconfig-0.2.1.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c0cba6f0527f2222dfac369efd127010bf493c8cfa833a4ba6651a20daf1fee |
|
MD5 | f0de090e69089dbeab811d8b077a8ad8 |
|
BLAKE2b-256 | 09ffec7f0c6527d57a5ec6a72d03c0f5ac533565855d4070db9e31040043a86f |