Metadata-Version: 1.1
Name: etcpy
Version: 0.1.1
Summary: etcd interface library
Home-page: http://code.pocketnix.org/etcpy/file/tip
Author: Da_Blitz
Author-email: code@pocketnix.org
License: MIT BSD
Download-URL: http://code.pocketnix.org/etcpy/archive/tip.tar.bz2
Description: 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>`_
        
Keywords: etcd coreos cloud zookeeper
Platform: UNKNOWN
