Metadata-Version: 1.0
Name: yamlenv
Version: 0.1.1
Summary: Interpolate Yaml files with env vars
Home-page: https://github.com/lbolla/yamlenv
Author: Lorenzo Bolla
Author-email: lbolla@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Description: # Yamlenv
        
        [![Build Status](https://travis-ci.org/lbolla/yamlenv.svg?branch=master)](https://travis-ci.org/lbolla/yamlenv)
        
        Interpolate YaML files with environmental variables.
        
        Given a YaML string like:
        
            a: ${A}
            b: 2
        
        and an environmental variable `$A` with value `hello`, `yamlenv.load`
        would return:
        
            {
                a: 'hello',
                b: 2
            }
        
        Default values are supported:
        
            yamlenv.load('''
                a: ${A, 'hello'}
                b: 2
            ''') == {
                'a': 'hello',
                'b': 2
            }
        
        More examples are available in the tests.
        
Platform: UNKNOWN
