Skip to main content

No project description provided

Project description

Envolved

Envolved is a library to make environment variable parsing powerful and effortless.

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 = EnvVar('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


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.5.0.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

envolved-0.5.0-py3-none-any.whl (12.5 kB view details)

Uploaded Python 3

File details

Details for the file envolved-0.5.0.tar.gz.

File metadata

  • Download URL: envolved-0.5.0.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.8.12 Linux/5.11.0-1022-azure

File hashes

Hashes for envolved-0.5.0.tar.gz
Algorithm Hash digest
SHA256 b8007ca03d6cbaff969a6c0158cf308002f461b9adee7334fa203ae0fc038e54
MD5 db59e67b2068bc6d69b5b4fc5d8e43dc
BLAKE2b-256 8aa4aaf6f179dbb1c3078e1f05c18b8186f4cc96b9ff66d65a8f84d0d2d82178

See more details on using hashes here.

File details

Details for the file envolved-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: envolved-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 12.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.12 CPython/3.8.12 Linux/5.11.0-1022-azure

File hashes

Hashes for envolved-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8cb7a765541fff7b3b5515181e9d93edd88d6398b1332675aaaafd7abdb71d05
MD5 cfdce344c7de5717ad120defd7dfc9e5
BLAKE2b-256 1ec10be3ec41e85a9cdb9a281e9f78c0c748a34007181b0cedf69bfee803a4b5

See more details on using hashes here.

Supported by

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