etcpy
======
etcpy is an easy to use interface to the `etcd daemon`_ that presents a 
'dictionary like' interface to etcd while also giving access to etcd's more 
advanced features

etcpy aims to be as easy to use as possible and provides 2 levels of APIs. The 
'lower level' API is a dictonary like interface to the etcd daemon while the 
Higher level interface provides a filesystem object like interface (eg `pathlib 
<https://pypi.python.org/pypi/pathlib/>`_ or `file 
<https://pypi.python.org/pypi/fpath/>`_)

.. _etcd daemon: https://github.com/coreos/etcd

requirements
-------------
* python 2.7
* python-requests

Usage
------

    >>> import etcpy
    >>> e = etcpy.Etcd('localhost', secure=False)
    >>> e['/blast'] = 'testval'
    >>> e['/blast'].value
    u'testval'

Links
------
* `Code <http://code.pocketnix.org/etcpy>`_
* `Docs <http://docs.pocketnix.org/etcpy>`_
