Metadata-Version: 2.0
Name: bossconf
Version: 0.1a5
Summary: Config parser with token interpreter
Home-page: https://github.com/mihailv/bossconf
Author: Mihail Vasile
Author-email: mihail.catalin.vasile@gmail.com
License: MIT
Keywords: config library development boss
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: pyaml
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

BossConf
=======================
Configs parsing with token interpreter

Used as library :

  Yaml file:

    ``x:``
     ``y:1``


  Code:

    Get y value

    `from bossconf import BossConf`

    conf = BossConf(absolute_path)`

    `print conf.get(['x', 'y'])`

  Return data:

    if found value ( from conf )

    if not found None value

---


