Skip to content

chickenzord/dotenvy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9916203 · Jan 8, 2018

History

40 Commits
Jan 8, 2018
Sep 20, 2017
Sep 20, 2017
Sep 16, 2017
Sep 14, 2017
Sep 19, 2017
Sep 14, 2017
Sep 16, 2017
Sep 20, 2017
Sep 16, 2017
Sep 20, 2017
Sep 20, 2017

Repository files navigation

dotenvy

Build status Coverage status MIT license PyPI package version PyPI python version

Dotenv handler for Python

usages

Installing

pip install dotenvy

Common usage as library

from dotenvy import load_env, read_file
from os import environ

load_env(read_file('.env'))
my_var = environ.get('MY_VAR')

Loading dotenv file to a dict with type casting

from dotenvy import read_file, truthy

config = read_file('.env', schema={
  'HOSTNAME': str,
  'PORT': int,
  'IS_DEBUG': bool,  # either [1/true/on/yes] or [0/false/off/no]
})

Using it as a CLI tool

# default dotenv file is '.env'
dotenvy ./mywebapp run

# using alternate dotenv file
dotenvy --file=prod.env ./mywebapp run

development

Checking codestyle

./setup.py stylecheck

Running tests

./setup.py test

Running tests on all supported python versions

pip install tox
tox