Skip to main content

Parsing configuration from environment variables as typing.NamedTuple

Project description

This project allows you to describe the configuration of your application as a typing.NamedTuple, like so:

import typing

class MyAppConfig(typing.NamedTuple):
    some_string: str
    some_int: int
    some_float: float
    some_bool: bool = True

Then, gather the configuration from the environment variables:

import env_var_config

config = env_var_config.gather_config_for_class(MyAppConfig)

The code will look for variables that are called like the fields of the tuple, but uppercase.

As you might have noticed, you can set default values on the fields. If the fields with defaults are not found in the environment, they’re set to their default value (which is quite unsurprising). If a value without a default is missing, though, an error will be raised. That is, unless you set allow_empty option to True in the call to gather_config_for_class. Then all missing values will be initialized with the default value for their type, such as an empty string for str, 0 for int, etc.

Installation

pip install env_var_config

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

env_var_config-0.1.0.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

env_var_config-0.1.0-py3-none-any.whl (3.5 kB view details)

Uploaded Python 3

File details

Details for the file env_var_config-0.1.0.tar.gz.

File metadata

File hashes

Hashes for env_var_config-0.1.0.tar.gz
Algorithm Hash digest
SHA256 a88b095f28364ec0d5c692b7209f8eb2ef77b0eceff7226bbbb9c25b2256fa2d
MD5 780571875360be7bab2129492b822a39
BLAKE2b-256 2223597166cb872f0bb71a340e2a369c650ccd74de500a3f0dac289efba72d2c

See more details on using hashes here.

File details

Details for the file env_var_config-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for env_var_config-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 88a6c2a7a6e22f93d8edc5349c56bb773d1a3c44296c09208843b680997f8c97
MD5 8995b38b21e454ac1304cde805b0a0c9
BLAKE2b-256 1e09e786589caa8887d12992336c214dc06d0b13a822a631aea79dd83c92502b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page