Skip to content
forked from cknv/envargs

Parsing and validation of environment variables

License

Notifications You must be signed in to change notification settings

sherifzain/envargs

Repository files navigation

Envargs

https://travis-ci.org/cknv/envargs.svg?branch=master

Simple means of parsing and validating environment variables. Heavily inspired by the earlier versions of webargs, which also explains the name to some extend.

Installing

$ pip install envargs

Using

from envargs import Var, parse_env

required_vars = {
    'a_int': Var(
        use=int,
        load_from='A_VAR',
        validate=lambda x: x >= 0,
    ),
    'a_list': Var(
        use=lambda x: x.split(','),
        load_from='A_LIST',
        validate=(
            lambda x: len(x) == 2,
            lambda x: x[0] == 'first element',
        ),
    ),
}

parsed = parse_env(required_vars)

Why reinvent the wheel again?

To be fair there are many good packages out there to parse environment variables, quite a few of them in python too. So this package can easily be seen as redundant. However, with separation of parsing and validation into two separate functions, you gain more power to control what is actually accepted, not to mention that it makes it possible to inline a few more things, as you can use simple buildins for most things and then lambdas for most validation.

About

Parsing and validation of environment variables

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.9%
  • Makefile 1.1%