Metadata-Version: 1.1
Name: toyredis
Version: 0.1.0
Summary: A Redis client
Home-page: https://github.com/nakagami/toyredis/
Author: Hajime Nakagami
Author-email: nakagami@gmail.com
License: MIT
Description: ==========
        toyredis
        ==========
        
        Toy redis client for python.
        
        Requirement
        ------------
        
        Python 3.5+ or MicroPython https://micropython.org
        
        Install
        ----------
        
        ::
        
           $ python3 -m pip install toyredis
        
        Example
        --------------
        
        ::
        
           >>> import toyredis
           >>> conn = toyredis.connect('localhost')
           >>> conn.set('foo', 'bar')
           >>> conn.get('foo')
           b'bar'
           >>> conn.set('foo', 10)
           >>> conn.incr('foo')
           11
           >>>
        
Keywords: Redis
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Database
