Metadata-Version: 1.1
Name: kvstore
Version: 0.1.1
Summary: Generic Python K/V Store Client
Home-page: https://github.com/javicacheiro/kvstore
Author: Javier Cacheiro
Author-email: javier.cacheiro@gmail.com
License: MIT
Description: Python KeyValue Store abstraction API
        =====================================
        
        Purpose
        -------
        The objective of this module is to provide a common API to different KeyValue stores
        like consul, etcd or zookeeper.
        
        Usage examples
        --------------
        Basic usage examples::
        
            import kvstore
            kv = kvstore.Client()
            kv.set(key, value)
            kv.get(key)
            kv.recurse(key)
            kv.delete(key)
            kv.delete(key, recursive=True)
            kv.index(key, recursive=True)
            kv.get(key, wait=True, index=index, wait='10m')
            kv.recurse(key, wait=True, index=index, wait='10m')
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
