# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-redis VERSION= 5.0.1 KEYWORDS= python VARIANTS= v11 v12 SDESC[v11]= Redis database and key-value store client (3.11) SDESC[v12]= Redis database and key-value store client (3.12) HOMEPAGE= https://github.com/redis/redis-py CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPIWHL/0b/34/a01250ac1fc9bf9161e07956d2d580413106ce02d5591470130a25c599e3 DISTFILE[1]= redis-5.0.1-py3-none-any.whl:main DF_INDEX= 1 SPKGS[v11]= single SPKGS[v12]= single OPTIONS_AVAILABLE= PY311 PY312 OPTIONS_STANDARD= none VOPTS[v11]= PY311=ON PY312=OFF VOPTS[v12]= PY311=OFF PY312=ON DISTNAME= redis-5.0.1.dist-info GENERATED= yes [PY311].RUN_DEPENDS_ON= python-async-timeout:single:v11 [PY311].USES_ON= python:v11,wheel [PY312].RUN_DEPENDS_ON= python-async-timeout:single:v12 [PY312].USES_ON= python:v12,wheel [FILE:2571:descriptions/desc.single] # redis-py The Python interface to the Redis key-value store. [CI] [docs] [MIT licensed] [pypi] [![pre-release]](https://github.com/redis/redis-py/releases) [codecov] [Installation] | [Usage] | [Advanced Topics] | [Contributing] --------------------------------------------- **Note: ** redis-py 5.0 will be the last version of redis-py to support Python 3.7, as it has reached [end of life]. redis-py 5.1 will support Python 3.8+. --------------------------------------------- ## Installation Start a redis via docker: ``` bash docker run -p 6379:6379 -it redis/redis-stack:latest ``` To install redis-py, simply: ``` bash $ pip install redis ``` For faster performance, install redis with hiredis support, this provides a compiled response parser, and *for most cases* requires zero code changes. By default, if hiredis >= 1.0 is available, redis-py will attempt to use it for response parsing. ``` bash $ pip install "redis[hiredis]" ``` Looking for a high-level library to handle object mapping? See [redis-om-python]! ## Supported Redis Versions The most recent version of this library supports redis version [5.0], [6.0], [6.2], [7.0] and [7.2]. The table below highlights version compatibility of the most-recent library versions and redis versions. | Library version | Supported redis versions | |-----------------|-------------------| | 3.5.3 | <= 6.2 Family of releases | | >= 4.5.0 | Version 5.0 to 7.0 | | >= 5.0.0 | Version 5.0 to current | ## Usage ### Basic Example ``` python >>> import redis >>> r = redis.Redis(host='localhost', port=6379, db=0) >>> r.set('foo', 'bar') True >>> r.get('foo') b'bar' ``` The above code connects to localhost on port 6379, sets a value in Redis, and retrieves it. All responses are returned as bytes in Python, to receive decoded strings, set *decode_responses=True*. For this, and more connection options, see [these examples]. #### RESP3 Support To enable support for RESP3, ensure you have at least version 5.0 of the client, and change your connection object to include *protocol=3* ``` python >>> import redis >>> r = redis.Redis(host='localhost', port=6379, db=0, protocol=3) ``` ### Connection Pools By default, redis-py uses a connection pool to manage connections. Each instance of a Redis class receives its own connection pool. You can however define your own [redis.ConnectionPool]. ``` python >>> pool = redis.ConnectionPool(host='localhost', port=6379, db=0) >>> r = redis.Redis(connection_pool=pool) ``` Alternatively, you might want to look at [Async connections], or [Cluster [FILE:107:distinfo] ed4802971884ae19d640775ba3b03aa2e7bd5e8fb8dfaed2decce4d0fc48391f 250272 redis-5.0.1-py3-none-any.whl