Metadata-Version: 2.1
Name: retry-redis
Version: 1.1.0
Summary: Redis Clieht with customizable retrying capability.
Home-page: https://github.com/Gatsby-Lee/retry-redis
Author: Gatsby Lee
License: GPL-3.0
Description: retry-redis
        ===========
        
        .. image:: https://img.shields.io/badge/License-GPL%20v3-blue.svg
           :target: https://www.gnu.org/licenses/gpl-3.0
        
        .. image:: https://img.shields.io/badge/Version-1.1.0-green.svg?style=flat
           :target: https://pypi.org/project/retry-redis/
        
        
        Redis Clieht with customizable retrying capability.
        
        
        How to Install
        --------------
        
        .. code-block:: bash
        
            pip install retry-redis
        
        
        How To Use
        ----------
        
        Simply import retry decorated Redis and Use it.
        
        
        .. code-block:: python
        
            >>> from retry_redis import Redis
            >>> r = Redis()
            >>> r.lpush('test', 1)
        
        
        Package Dependency
        ------------------
        
        * redis
        * tenacity
        
        
Keywords: redis retry failure
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Utilities
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
Description-Content-Type: text/x-rst
