Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.27 KB

README.rst

File metadata and controls

47 lines (30 loc) · 1.27 KB

envconfig

image

image

image

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")

Meta

Daniel Bader – @dbader_orgmail@dbader.org

Distributed under the MIT license. See LICENSE.txt for more information.

https://github.com/dbader/envconfig