common.configuration.utils
add_config_to_env
def add_config_to_env(
config: BaseConfiguration, sections: Tuple[str, ...] = ()) -> None
Writes values in configuration back into environment using the naming convention of EnvironProvider. Will descend recursively if embedded BaseConfiguration instances are found
add_config_dict_to_env
def add_config_dict_to_env(dict_: Mapping[str, Any],
sections: Tuple[str, ...] = (),
overwrite_keys: bool = False) -> None
Writes values in dict_ back into environment using the naming convention of EnvironProvider. Applies sections
if specified. Does not overwrite existing keys by default