Metadata-Version: 1.1
Name: dotenvy
Version: 0.1.0
Summary: Dotenv handler for Python
Home-page: https://github.com/chickenzord/dotenvy
Author: Akhyar Amarullah
Author-email: akhyrul@gmail.com
License: MIT
Download-URL: https://github.com/chickenzord/dotenvy/archive/0.1.0.tar.gz
Description-Content-Type: UNKNOWN
Description: dotenvy
        =======
        
        .. image:: https://img.shields.io/travis/chickenzord/dotenvy.svg?style=flat-square
            :target: https://travis-ci.org/chickenzord/dotenvy
            :alt: Build Status
        
        .. image:: https://img.shields.io/coveralls/chickenzord/dotenvy.svg?style=flat-square
            :target: https://coveralls.io/github/chickenzord/dotenvy
            :alt: Coverage Status
        
        .. image:: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
            :target: https://raw.githubusercontent.com/chickenzord/dotenvy/master/LICENSE.txt
            :alt: MIT license
        
        Dotenv handler for Python
        
        
        install
        -------
        
         ::
        
          pip install dotenvy
        
        
        sample usages
        -------------
        
        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
          })
        
Keywords: dotenv,configuration,environment
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
