No project description provided
Project description
Envolved
Envolved is a library to make environment variable parsing powerful and effortless.
from envolved import EnvVar
# create an env var with an int value
foo: EnvVar[int] = EnvVar('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 JsonParser
foo = EnvVar('FOO', type=JsonParser(List[float]))
foo.get() # now we will parse the value of FOO as a JSON list, and ensure that all its inner values are numbers
# we can also use schemas to combine multiple environment variables
from envolved import Schema
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]
# note that schemas work with any factory or class that annotates its constructor, dataclass is used for simplicity
class ConnectionSettingSchema(Schema, type=ConnectionSetting):
host = EnvVar('hostname')
# we now define an env var inside the schema. Its suffix will be "hostname", and its type will be inferred from the
# type's annotation
port = EnvVar() # if we like the parameter name as the env var suffix, we can leave the env var empty
user: str = EnvVar('username') # we can annotate the schema members to override the type inference
password = EnvVar(type=str, default=None) # we can set a default to show that the type var may be missing
connection_settings: EnvVar[ConnectionSetting] = EnvVar('service_', type=ConnectionSettingSchema)
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-0.4.1.tar.gz
(13.7 kB
view details)
Built Distribution
envolved-0.4.1-py3-none-any.whl
(16.8 kB
view details)
File details
Details for the file envolved-0.4.1.tar.gz
.
File metadata
- Download URL: envolved-0.4.1.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.7 Linux/5.4.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f176ff6d246207bf6bde655b511737bd72417610383b5281e36778f1df4e62ea |
|
MD5 | d39d94902a483da0fcdd4d1354a6ba45 |
|
BLAKE2b-256 | b228c3172e9e506ec506c3fa46852ed39d98c2ddecbce824c316a1737d603d1d |
File details
Details for the file envolved-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: envolved-0.4.1-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.7 Linux/5.4.0-1039-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40a3b43acb1eff5d626ab19d81d2563dc1c4cfdad03f66e351c743b9563ce83c |
|
MD5 | 16d05255af1a4dfcfc679147f73a96af |
|
BLAKE2b-256 | 288bf88a6361a4094fb351524f857c059430c047362c7b43e429c2d6b0f09e4f |