Skip to main content

Dotenv handler for Python

Project description

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

Dotenv handler for Python

usages

Installing

pip install dotenvy

Running tests

pip install tox
tox

Common usage

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': truthy,  # can be 1/true/on/yes
})

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

dotenvy-0.1.2.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

dotenvy-0.1.2-py2.py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 2 Python 3

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