Metadata-Version: 1.1
Name: ssdb.py
Version: 0.1.1
Summary: Ssdb Python Client Library
Home-page: https://github.com/hit9/ssdb.py
Author: hit9
Author-email: nz2324@126.com
License: bsd2
Description: 
        ssdb.py
        -------
        
        Ssdb Python Client Library.
        
        Sample
        ``````
        
        .. code:: python
        
            >>> from ssdb import SSDBClient
            >>> c = SSDBClient(host='localhost', port=8888)
            >>> c.set('key', 'val')
            1
            >>> c.get('key')
            'val'
        
        Source
        ``````
        
        https://github.com/hit9/ssdb.py
        
Keywords: ssdb,client,library
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
