2019-07-21 22:03:28 -04:00
2019-07-21 14:04:38 -04:00
2019-07-21 14:04:38 -04:00
2019-07-21 14:04:38 -04:00
2012-05-08 10:24:30 -04:00
2019-07-21 14:04:38 -04:00
2019-07-21 14:04:38 -04:00
2019-07-21 14:04:38 -04:00

Env: Environment Variables for Humans
=====================================

.. image:: https://travis-ci.com/MasterOdin/env.svg?branch=master
        :target: https://travis-ci.com/MasterOdin/env


Mapping environment variables can be a bit of a pain.

Now you can replace this boilerplate::

    ZENDESK_URL = os.environ['ZENDESK_URL']
    ZENDESK_USER = os.environ['ZENDESK_USER']
    ZENDESK_PASS = os.environ['ZENDESK_PASS']
    ZENDESK_VIEW = os.environ['ZENDESK_VIEW']

With a simple call::

    import env

::

    >>> zendesk = env.prefix('zendesk_')
    >>> zendesk
    {'user': ..., 'pass': ..., 'url': ..., 'view': ...}

Or have a bit more control::

    >>> env.map(user='zendesk_user')
    {'user': ...}


Installation
------------

Installation is easy with pip::

    $ pip install env
S
Description
No description provided
Readme BSD-2-Clause 58 KiB
Languages
Python 100%