The library for creating nested environ configuration through composition
Project description
environ composition
The library for parsing environ configuration and creating nested configuration classes through composition.
EnvConfigParseris designed to parse environment variables and a.envfile to create a structured configuration.EnvConfigtakes the parsed environment variables (a dictionary) and creates an object with attributes matching the keys.
Installation
pip install environ-composition
Import
from environ_composition import EnvConfigParser
Usage
config = EnvConfigParser(dotenv_path='path_to/.env', separator='__').parse()
In EnvConfigParser each environment variable name goes into a lowercase attribute of EnvConfig instance.
Adding some separator (i.g. double underscores "__") to the variable name adds a level of nesting to the config.
VAR1=value1
VAR2__NESTED_VAR1=nested_value1
config.var1 = "value1"
config.var2.nested_var1 = "nested_value1"
When specifying a template, the parser updates the values in the template.
Without a template, the parser returns the config in EnvConfig instance.
class NestedTemplate:
def __init__(self):
self.nested_var1 = None
class Template:
def __init__(self):
self.var1 = None
self.var2 = NestedTemplate()
template = Template()
parser = EnvConfigParser('path_to/.env')
config = parser.parse(template)
The structure and nesting levels of the template must match the names in the environment variable.
Mismatched names of attributes and private attributes in the template are not updated.
Parsing values
The ast library and the literal_eval function are used for parsing string values.
Standard data types are available: str, int, float, bool, list, tuple, set, dict, etc.
VAR1=['string', 1, 1.01, True]
VAR2__NESTED_VAR1={"string": 1}
For variables with null string values ('', 'None', 'null'), None is assigned.
VAR1=
VAR2=None
VAR3=null
The use_literal_eval flag in the parse method determines to use or not parsing.
Type validation
If there is a type annotation for class attributes, the parser validates the assigned values.
If there is a type annotation for instance attributes, the parser does not validate. If an annotation is specified in the class attributes, the parser will validate the instance attribute.
Validation is not applied to nested config instances.
class NestedTemplate:
nested_var1: str = None
def __init__(self):
self.nested_var2 = None # it will not be validated
class Template:
var1: str = None
var2: int = None
var3: NestedTemplate = NestedTemplate() # it will not be validated
var4: bool
def __init__(self):
self.var4 = None
self.var5 = NestedTemplate() # it will not be validated
The use_type_validation flag in the parse method determines to use or not type validation. Validation only works if use_literal_eval = True.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file environ_composition-1.1.1.tar.gz.
File metadata
- Download URL: environ_composition-1.1.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f0e9c69c41bd6130be21e646fae10ee24d49329d406976eca9fc567365fcd26
|
|
| MD5 |
e3590f022bd0d6002a7dfcdfbd827110
|
|
| BLAKE2b-256 |
be6450f45f9751e0ba404cb7460b5e386d74699bd9ef05409c02cba4439c7646
|
File details
Details for the file environ_composition-1.1.1-py3-none-any.whl.
File metadata
- Download URL: environ_composition-1.1.1-py3-none-any.whl
- Upload date:
- Size: 5.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb9d70a72996a7e2d5c476fda14d57eca20a47b45ef78ddb9cd00bf4c122ae5e
|
|
| MD5 |
288cff57107a1061b82419f7ae414ce7
|
|
| BLAKE2b-256 |
2eb8add1d5f56454d66f78ff20ad316fa185b7bbce63b11ff0c087fe4e7db414
|