/env-vars

Simplified config for python projects

Primary LanguagePythonMIT LicenseMIT

env-vars

Simplified config for python projects based on starlette config

Installation

pip install env-star

Usage

from config import Config

config = Config()

MY_CONST = config(
    'MY_ENV', cast=my_callable_or_class, default=any_castable)