Metadata-Version: 1.0
Name: pyssdb
Version: 0.0.3
Summary: A SSDB Client Library for Python.
Home-page: https://github.com/ifduyue/pyssdb
Author: Yue Du
Author-email: ifduyue@gmail.com
License: BSD
Description: pyssdb
        ========
        
        Description
        -----------
        A thread-safe SSDB Client Library for Python.
        
        Installation
        -------------
        ::
        
            $ pip install pyssdb --upgrade
        
        
        Usage
        ------------
        ::
        
            import pyssdb
            c = pyssdb.Client()
            print c.set('key', 'value')
            print c.get('key')
            import string
            for i in string.ascii_letters:
                c.incr(i)
            print c.keys('a', 'z', 1)
            print c.keys('a', 'z', 10)
            print c.get('z')
        
        For the full list of SSDB commands, please check out `this wiki page <https://github.com/ideawu/ssdb/wiki/Commands>`_.
        
Keywords: ssdb
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Software Development :: Libraries :: Python Modules
