Managing environment config data
Project description
py-envconfig ⚙️
Managing config data from the environment, inspired by envconfig
Install
pip install py-envconfig
Usage
Set some environment variable, or write a .env
file.
HOST=localhost
PORT=6000
MY_APP_SERVICE=bookings
RELEASE_NUMBER=12
ENV=dev
Then specify your config:
from envconfig import param
from envconfig import EnvConfig
class AppConfig(EnvConfig):
"""App env config."""
HOST = param.Str(required=True)
PORT = param.Int(required=True)
PASSWORD = param.Str(override="SECRET_REDIS_PW", required=True)
SERVICE = param.Str(prefix="MY_APP_")
VERSION = param.Int(override="RELEASE_NUMBER")
ENV = param.Str(default="prod")
config = AppConfig()
# Access by class attribute or subscript
config.USER
config["USER"]
Setup flask config:
config = AppConfig()
app.config.from_object(config)
Point to a .env
file
config = AppConfig("./.env")
Load Dotenv
Some functionality provided by dotenv
-
Increase verbosity
AppConfig(verbose=True)
-
Override existing env vars with the env vars defined in
.env
.AppConfig(override=True)
Development
To publish package and tag git:
make tag
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
py-envconfig-0.7.0.tar.gz
(3.3 kB
view hashes)
Built Distribution
Close
Hashes for py_envconfig-0.7.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9207903ca31dfb099b5e4bf9660c843835974d99a63c7e3b132287e734d2425 |
|
MD5 | 269b479dd84894dff44fbb07423a7a2b |
|
BLAKE2b-256 | 6758f5afa7ff79c29003051b84e35d1d1eacdde7415d01df56e16487d591953c |