Metadata-Version: 1.0
Name: python-consul
Version: 0.2.0
Summary: Python client for Consul (http://www.consul.io/)
Home-page: https://github.com/cablehead/python-consul
Author: Andy Gayton
Author-email: andy@thecablelounge.com
License: MIT
Description: Python client for `Consul.io <http://www.consul.io/>`_
        ======================================================
        
        Documentation
        -------------
        
        `Read the Docs`_
        
        Status
        ------
        
        |Build Status|\ |Coverage Status|
        
        Example
        -------
        
        .. code:: python
        
            import consul
        
            c = consul.Consul()
        
            # poll a key for updates
            index = None
            while True:
                index, data = c.kv.get('foo', index=index)
                print data['Value']
        
            # in another process
            c.kv.put('foo', 'bar')
        
        Installation
        ------------
        
        ::
        
            pip install python-consul
        
        .. |Build Status|
           image:: https://travis-ci.org/cablehead/python-consul.svg?branch=master
           :target: https://travis-ci.org/cablehead/python-consul
        .. |Coverage Status|
           image:: https://coveralls.io/repos/cablehead/python-consul/badge.png?branch=master
           :target: https://coveralls.io/r/cablehead/python-consul?branch=master
        .. _Read the Docs: http://python-consul.readthedocs.org/
        
Platform: UNKNOWN
