No project description provided
Project description
Envolved
Envolved is a library to make environment variable parsing powerful and effortless.
documentation: https://envolved.readthedocs.io/en/latest/
from envolved import env_var, EnvVar
# create an env var with an int value
foo: EnvVar[int] = env_var('FOO', type=int, default=0)
value_of_foo = foo.get() # this method will check for the environment variable FOO, and parse it as an int
# we can also have some more complex parsers
from typing import List, Optional
from envolved.parsers import CollectionParser
foo = env_var('FOO', type=CollectionParser(',', int))
foo.get() # now we will parse the value of FOO as a comma-separated list of ints
# we can also use schemas to combine multiple environment variables
from dataclasses import dataclass
@dataclass
# say we want the environment to describe a ConnectionSetting
class ConnectionSetting:
host: str
port: int
user: Optional[str]
password: Optional[str]
connection_settings: EnvVar[ConnectionSetting] = env_var('service_', type=ConnectionSetting, args={
'host': env_var('hostname'),
# we now define an env var as an argument. Its suffix will be "hostname", and its type will be inferred from the
# type's annotation
'port': env_var('port'),
'user': env_var('username', type=str), # for most types, we can infer the type from the annotation, though we can
# also override it if we want
'password': env_var('password', type=str, default=None) # we can also set a default value per arg
})
service_connection_settings: ConnectionSetting = connection_settings.get()
# this will look in 4 environment variables:
# host will be extracted from service_hostname
# port will be extracted from service_port, then converted to an int
# user will be extracted from service_username
# password will be extracted from service_password, and will default to None
# finally, ConnectionSetting will be called with the parameters
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
envolved-1.5.0.tar.gz
(16.5 kB
view details)
Built Distribution
envolved-1.5.0-py3-none-any.whl
(19.3 kB
view details)
File details
Details for the file envolved-1.5.0.tar.gz
.
File metadata
- Download URL: envolved-1.5.0.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15a0402b6ab74122d931c8035dde30fa2108b3764f2e1ba135dc76bf1446693d |
|
MD5 | d4d91294865df69e9293c3124922f165 |
|
BLAKE2b-256 | f2adc45436b412eab501a3cfb0c125013802f1665398c4958c6146f1bae3e263 |
File details
Details for the file envolved-1.5.0-py3-none-any.whl
.
File metadata
- Download URL: envolved-1.5.0-py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0d61f259916285a73a3aa23f35f26d21d7cf6fe79de825f9d3bd03f904f4712 |
|
MD5 | f6f99b18c2831ed631039330583245c2 |
|
BLAKE2b-256 | 6448675b3087cdc56865119ef1f343e9733717a13f88132a0176b37fb41ce3ba |