Metadata-Version: 1.0
Name: serialized-redis
Version: 0.1.2
Summary: A solution to have lists and dictionaries serialized using redis-py.
Home-page: http://github.com/EvandroLG/serialized-redis
Author: EvandroLG
Author-email: evandrolgoncalves@gmail.com
License: MIT
Description: # SerializedRedis
        A solution to have lists and dictionaries serialized using redis-py.
        
        ## Installation
        To install serialized_redis, simply:
        ```shell
        	pip install serialized-redis
        ```
        
        
        ## Example
        ```python
            from serialized_redis import SerializedRedis
        
            redis = SerializedRedis()
            redis.set('datas', { 'name': 'Evandro', 'age:': 27 })
            type(redis.get('datas')) # It will return a dictionary
        ```
Keywords: Redis,redis-py,serialized datas
Platform: UNKNOWN
