Metadata-Version: 2.1
Name: redis-cooker
Version: 2020.10rc11
Summary: An redis python datastructures package.
Home-page: https://github.com/Ed-XCF/redis-cooker
Author: Ed__xu__Ed
Author-email: m.tofu@qq.com
License: UNKNOWN
Description: # redis-cooker
        ![GitHub](https://img.shields.io/github/license/Ed-XCF/redis-cooker)
        [![Build Status](https://travis-ci.org/Ed-XCF/redis-cooker.svg?branch=master)](https://travis-ci.org/Ed-XCF/redis-cooker)
        [![codecov](https://codecov.io/gh/Ed-XCF/redis-cooker/branch/master/graph/badge.svg?token=J3HnAigB4J)](undefined)
        ![PyPI](https://img.shields.io/pypi/v/redis-cooker)
        ## An redis python datastructures package
        ## Installation
        To install redis-cooker, simply:
        
            $ pip install redis-cooker
        
        or from source:
        
            $ python setup.py install
            
        ## Getting Started
        
            >>> from redis_cooker.collections import RedisDict
            >>> data = RedisDict("first:RedisDict", init={"a": 1, "b":2})
            >>> for v in data.values(): print(v)
        
        By default, all responses are returned as `str`.
        
        ## Python Version Support
        redis-cooker tested with Python 3.6 - 3.8.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
