Metadata-Version: 2.0
Name: aumbry
Version: 0.6.6
Summary: Multi-type configuration library for Python
Home-page: https://github.com/pyarmory/aumbry
Author: John Vrbanac
Author-email: john.vrbanac@linux.com
License: Apache v2
Keywords: configuration yaml etcd json parameter store multiple
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
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: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: alchemize (>=0.7.1)
Requires-Dist: pike
Requires-Dist: six
Provides-Extra: cli
Requires-Dist: boto3; extra == 'cli'
Requires-Dist: cryptography (>=2.1.2); extra == 'cli'
Requires-Dist: pyyaml; extra == 'cli'
Requires-Dist: requests; extra == 'cli'
Provides-Extra: consul
Requires-Dist: requests; extra == 'consul'
Provides-Extra: etcd2
Requires-Dist: requests; extra == 'etcd2'
Provides-Extra: param_store
Requires-Dist: boto3; extra == 'param_store'
Provides-Extra: yaml
Requires-Dist: pyyaml; extra == 'yaml'

Aumbry
======

.. image:: https://travis-ci.org/pyarmory/aumbry.svg?branch=master
    :target: https://travis-ci.org/pyarmory/aumbry
    :alt: Travis CI Build

.. image:: http://codecov.io/github/pyarmory/aumbry/coverage.svg?branch=master
    :target: http://codecov.io/github/pyarmory/aumbry?branch=master
    :alt: Coverage

.. image:: https://readthedocs.org/projects/aumbry/badge/?version=latest
    :target: https://readthedocs.org/projects/aumbry/?badge=latest

.. image:: https://codeclimate.com/github/pyarmory/aumbry/badges/gpa.svg
   :target: https://codeclimate.com/github/pyarmory/aumbry
   :alt: Code Climate


Aumbry is general purpose library for handling configuration within your
Python applications. The project was born from constantly needing a simple
interface for configuration models that came from multiple data sources.

Behind the scenes, Aumbry uses Alchemize to handle the conversion of the
configuration data into application specific data models for your project.

**Data Sources supported:**

* File
* Consul
* Etcd2
* AWS Parameter Store

**Configuration Formats Supported:**

* Yaml
* Json

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

.. code-block:: shell

    # Install base package
    pip install aumbry

    # Install consul support
    pip install aumbry['consul']

    # Install etcd2 support
    pip install aumbry['etcd2']

    # Install yaml support
    pip install aumbry['yaml']

    # Install parameter store dependencies
    pip install aumbry['param_store']

    # Installing multiple dependencies
    pip install aumbry['etcd2','yaml']


