Skip to main content

Python wrapper for hiredis

Project description

hiredis-py

Build Status License

Python extension that wraps protocol parsing code in hiredis. It primarily speeds up parsing of multi bulk replies.

How do I Redis?

Learn for free at Redis University

Build faster with the Redis Launchpad

Try the Redis Cloud

Dive in developer tutorials

Join the Redis community

Work at Redis

Install

hiredis-py is available on PyPI, and can be installed via:

pip install hiredis

Building and Testing

Building this repository requires a recursive checkout of submodules, and building hiredis. The following example shows how to clone, compile, and run tests. Please note - you will need the gcc installed.

git clone --recursse-submodules https://github.com/redis/hiredis-py
python setup.py build_ext --inplace
python -m pytest

Requirements

hiredis-py requires Python 3.7+.

Make sure Python development headers are available when installing hiredis-py. On Ubuntu/Debian systems, install them with apt-get install python3-dev.

Usage

The hiredis module contains the Reader class. This class is responsible for parsing replies from the stream of data that is read from a Redis connection. It does not contain functionality to handle I/O.

Reply parser

The Reader class has two methods that are used when parsing replies from a stream of data. Reader.feed takes a string argument that is appended to the internal buffer. Reader.gets reads this buffer and returns a reply when the buffer contains a full reply. If a single call to feed contains multiple replies, gets should be called multiple times to extract all replies.

Example:

>>> reader = hiredis.Reader()
>>> reader.feed("$5\r\nhello\r\n")
>>> reader.gets()
b'hello'

When the buffer does not contain a full reply, gets returns False. This means extra data is needed and feed should be called again before calling gets again. Alternatively you could provide custom sentinel object via parameter, which is useful for RESP3 protocol where native boolean types are supported:

Example:

>>> reader.feed("*2\r\n$5\r\nhello\r\n")
>>> reader.gets()
False
>>> reader.feed("$5\r\nworld\r\n")
>>> reader.gets()
[b'hello', b'world']
>>> reader = hiredis.Reader(notEnoughData=Ellipsis)
>>> reader.gets()
Ellipsis

Unicode

hiredis.Reader is able to decode bulk data to any encoding Python supports. To do so, specify the encoding you want to use for decoding replies when initializing it:

>>> reader = hiredis.Reader(encoding="utf-8", errors="strict")
>>> reader.feed(b"$3\r\n\xe2\x98\x83\r\n")
>>> reader.gets()
'☃'

Decoding of bulk data will be attempted using the specified encoding and error handler. If the error handler is 'strict' (the default), a UnicodeDecodeError is raised when data cannot be dedcoded. This is identical to Python's default behavior. Other valid values to errors include 'replace', 'ignore', and 'backslashreplace'. More information on the behavior of these error handlers can be found here.

When the specified encoding cannot be found, a LookupError will be raised when calling gets for the first reply with bulk data.

Error handling

When a protocol error occurs (because of multiple threads using the same socket, or some other condition that causes a corrupt stream), the error hiredis.ProtocolError is raised. Because the buffer is read in a lazy fashion, it will only be raised when gets is called and the first reply in the buffer contains an error. There is no way to recover from a faulty protocol state, so when this happens, the I/O code feeding data to Reader should probably reconnect.

Redis can reply with error replies (-ERR ...). For these replies, the custom error class hiredis.ReplyError is returned, but not raised.

When other error types should be used (so existing code doesn't have to change its except clauses), Reader can be initialized with the protocolError and replyError keywords. These keywords should contain a class that is a subclass of Exception. When not provided, Reader will use the default error types.

Benchmarks

The repository contains a benchmarking script in the benchmark directory, which uses gevent to have non-blocking I/O and redis-py to handle connections. These benchmarks are done with a patched version of redis-py that uses hiredis-py when it is available.

All benchmarks are done with 10 concurrent connections.

  • SET key value + GET key
    • redis-py: 11.76 Kops
    • redis-py with hiredis-py: 13.40 Kops
    • improvement: 1.1x

List entries in the following tests are 5 bytes.

  • LRANGE list 0 9:
    • redis-py: 4.78 Kops
    • redis-py with hiredis-py: 12.94 Kops
    • improvement: 2.7x
  • LRANGE list 0 99:
    • redis-py: 0.73 Kops
    • redis-py with hiredis-py: 11.90 Kops
    • improvement: 16.3x
  • LRANGE list 0 999:
    • redis-py: 0.07 Kops
    • redis-py with hiredis-py: 5.83 Kops
    • improvement: 83.2x

Throughput improvement for simple SET/GET is minimal, but the larger multi bulk replies get, the larger the performance improvement is.

License

This code is released under the BSD license, after the license of hiredis.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hiredis-2.3.2.tar.gz (87.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hiredis-2.3.2-pp310-pypy310_pp73-win_amd64.whl (21.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (40.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.3.2-pp39-pypy39_pp73-win_amd64.whl (21.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (40.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.3.2-pp38-pypy38_pp73-win_amd64.whl (21.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (40.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.3.2-pp37-pypy37_pp73-win_amd64.whl (21.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl (40.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.3.2-cp312-cp312-win_amd64.whl (21.3 kB view details)

Uploaded CPython 3.12Windows x86-64

hiredis-2.3.2-cp312-cp312-win32.whl (19.7 kB view details)

Uploaded CPython 3.12Windows x86

hiredis-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl (175.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

hiredis-2.3.2-cp312-cp312-musllinux_1_1_s390x.whl (175.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ s390x

hiredis-2.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl (184.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ppc64le

hiredis-2.3.2-cp312-cp312-musllinux_1_1_i686.whl (171.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

hiredis-2.3.2-cp312-cp312-musllinux_1_1_aarch64.whl (176.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

hiredis-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hiredis-2.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hiredis-2.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hiredis-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hiredis-2.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (165.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-cp312-cp312-macosx_11_0_arm64.whl (42.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-2.3.2-cp312-cp312-macosx_10_15_x86_64.whl (45.6 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-2.3.2-cp312-cp312-macosx_10_15_universal2.whl (82.9 kB view details)

Uploaded CPython 3.12macOS 10.15+ universal2 (ARM64, x86-64)

hiredis-2.3.2-cp311-cp311-win_amd64.whl (21.2 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-2.3.2-cp311-cp311-win32.whl (19.6 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl (173.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

hiredis-2.3.2-cp311-cp311-musllinux_1_1_s390x.whl (173.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

hiredis-2.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl (183.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

hiredis-2.3.2-cp311-cp311-musllinux_1_1_i686.whl (170.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

hiredis-2.3.2-cp311-cp311-musllinux_1_1_aarch64.whl (175.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

hiredis-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-2.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-2.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (178.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-2.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-cp311-cp311-macosx_11_0_arm64.whl (42.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.3.2-cp311-cp311-macosx_10_15_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-2.3.2-cp311-cp311-macosx_10_15_universal2.whl (82.8 kB view details)

Uploaded CPython 3.11macOS 10.15+ universal2 (ARM64, x86-64)

hiredis-2.3.2-cp310-cp310-win_amd64.whl (21.2 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-2.3.2-cp310-cp310-win32.whl (19.6 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl (171.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

hiredis-2.3.2-cp310-cp310-musllinux_1_1_s390x.whl (170.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

hiredis-2.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl (180.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

hiredis-2.3.2-cp310-cp310-musllinux_1_1_i686.whl (167.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

hiredis-2.3.2-cp310-cp310-musllinux_1_1_aarch64.whl (172.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hiredis-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-2.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-2.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-2.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-cp310-cp310-macosx_11_0_arm64.whl (42.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-2.3.2-cp310-cp310-macosx_10_15_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-2.3.2-cp310-cp310-macosx_10_15_universal2.whl (82.8 kB view details)

Uploaded CPython 3.10macOS 10.15+ universal2 (ARM64, x86-64)

hiredis-2.3.2-cp39-cp39-win_amd64.whl (21.2 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-2.3.2-cp39-cp39-win32.whl (19.6 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl (169.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

hiredis-2.3.2-cp39-cp39-musllinux_1_1_s390x.whl (169.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

hiredis-2.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl (179.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

hiredis-2.3.2-cp39-cp39-musllinux_1_1_i686.whl (166.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

hiredis-2.3.2-cp39-cp39-musllinux_1_1_aarch64.whl (171.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hiredis-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-2.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-2.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-cp39-cp39-macosx_11_0_arm64.whl (42.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-2.3.2-cp39-cp39-macosx_10_15_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-2.3.2-cp39-cp39-macosx_10_15_universal2.whl (82.8 kB view details)

Uploaded CPython 3.9macOS 10.15+ universal2 (ARM64, x86-64)

hiredis-2.3.2-cp38-cp38-win_amd64.whl (21.2 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-2.3.2-cp38-cp38-win32.whl (19.6 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-2.3.2-cp38-cp38-musllinux_1_1_x86_64.whl (170.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

hiredis-2.3.2-cp38-cp38-musllinux_1_1_s390x.whl (170.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

hiredis-2.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl (180.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

hiredis-2.3.2-cp38-cp38-musllinux_1_1_i686.whl (167.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

hiredis-2.3.2-cp38-cp38-musllinux_1_1_aarch64.whl (172.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hiredis-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-2.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-2.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (178.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-2.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-2.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-cp38-cp38-macosx_11_0_arm64.whl (42.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-2.3.2-cp38-cp38-macosx_10_15_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-2.3.2-cp38-cp38-macosx_10_15_universal2.whl (82.8 kB view details)

Uploaded CPython 3.8macOS 10.15+ universal2 (ARM64, x86-64)

hiredis-2.3.2-cp37-cp37m-win_amd64.whl (21.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-2.3.2-cp37-cp37m-win32.whl (19.6 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-2.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

hiredis-2.3.2-cp37-cp37m-musllinux_1_1_s390x.whl (168.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

hiredis-2.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (177.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

hiredis-2.3.2-cp37-cp37m-musllinux_1_1_i686.whl (165.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

hiredis-2.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl (169.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hiredis-2.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

hiredis-2.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (165.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

hiredis-2.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

hiredis-2.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (164.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hiredis-2.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.3.2-cp37-cp37m-macosx_10_15_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

File details

Details for the file hiredis-2.3.2.tar.gz.

File metadata

  • Download URL: hiredis-2.3.2.tar.gz
  • Upload date:
  • Size: 87.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2.tar.gz
Algorithm Hash digest
SHA256 733e2456b68f3f126ddaf2cd500a33b25146c3676b97ea843665717bda0c5d43
MD5 8823961dc3ba19a6e63ab6329b3b852f
BLAKE2b-256 fe2da5ae61da1157644f7e52e088fa158ac6f5d09775112d14b1c9b9a5156bf1

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f9f606e810858207d4b4287b4ef0dc622c2aa469548bf02b59dcc616f134f811
MD5 4d18302c1bb8279f9cc808a61dc52447
BLAKE2b-256 ac273cc18140f94d38e9c30b8a66447413f581bec29d0989c54940d21c9829c5

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80441b55edbef868e2563842f5030982b04349408396e5ac2b32025fb06b5212
MD5 fb4889abef7e2690f04167ab3ed717f7
BLAKE2b-256 b684c3975bb925d9b21e4d19cc4a1d6ea2db0a851091f6ab8e801aeee450b8f7

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bd42d0d45ea47a2f96babd82a659fbc60612ab9423a68e4a8191e538b85542a
MD5 d04e4c87302d0ee93a93205ecf2df29f
BLAKE2b-256 c9045d5d88ba726eb20ffdeb321b8f60bebda9b3491a54445f16c1094aafcea9

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec444ab8f27562a363672d6a7372bc0700a1bdc9764563c57c5f9efa0e592b5f
MD5 82ff80c452794e8dc444f7b184514efd
BLAKE2b-256 877f4cd4b249c47c7f3fbbd8e6272775de35c8a49dde0935e1fac5b43505416e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7e8bf4444b09419b77ce671088db9f875b26720b5872d97778e2545cd87dba4a
MD5 4c355d9798e7763d369e00bf127548f5
BLAKE2b-256 0cb364d652cbe09c7d53becfbac0a4dd88d12fc3d2cc0273989ef0306728f096

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e15a408f71a6c8c87b364f1f15a6cd9c1baca12bbc47a326ac8ab99ec7ad3c64
MD5 c6eb45ba7191f3cdd8b6d587e8240fde
BLAKE2b-256 d8b6506f8ac36cf0f4776b5f044a6d8804c17b35157bb1ee7cd5ef7617ffa467

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33d5ebc93c39aed4b5bc769f8ce0819bc50e74bb95d57a35f838f1c4378978e0
MD5 9dc31c15d9926c1b69608918f364a6cd
BLAKE2b-256 f2d85abcd48df4d3c4cc4abb5d33f422f1eb7a0075da63c64487cfddebafb8c1

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa45f7d771094b8145af10db74704ab0f698adb682fbf3721d8090f90e42cc49
MD5 1e8f730d0a0820920e89d0230220f067
BLAKE2b-256 9b3c65af8da9c15ea2a23cb253db8bd5be400f5d38ca12446276f2aea7f3be2d

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a797d8c7df9944314d309b0d9e1b354e2fa4430a05bb7604da13b6ad291bf959
MD5 5b40b5ff30d44882e6078126713f9510
BLAKE2b-256 56963b03f9296631e76ff561dbe57cf314878e137e994cd5e62d15fe7d5262b1

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8937f1100435698c18e4da086968c4b5d70e86ea718376f833475ab3277c9aa
MD5 125c9333100ab5391bc55e16d4ef32c4
BLAKE2b-256 b6463b5309b08bd9c4d87526531c58f2f2f4e2b966a0595c528682497e503d43

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 333b5e04866758b11bda5f5315b4e671d15755fc6ed3b7969721bc6311d0ee36
MD5 a42e95e893668fe5a1eb58302007c75b
BLAKE2b-256 c15c1ceac208c9f857f9f3a7ff1493261330041306261f0ef91205ec2bdc81b2

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb777a38797c8c7df0444533119570be18d1a4ce5478dffc00c875684df7bfcb
MD5 8423378fe561f8c10f8ac2b312d3c79e
BLAKE2b-256 716a8fe563ddfa1c08c6d9b1d3fd4c728519e7d5437016104d33d3b348e0dd76

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a91a14dd95e24dc078204b18b0199226ee44644974c645dc54ee7b00c3157330
MD5 31547a93521eeeb23612d0555b1099d6
BLAKE2b-256 c78b487732ac8a58aef3e0e790298edffa825a647f720e6b4e971b7c60b968f4

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d47c915897a99d0d34a39fad4be97b4b709ab3d0d3b779ebccf2b6024a8c681e
MD5 51a4ae404376f584f3497aa9f8cd580e
BLAKE2b-256 27c1c7f84002844c9a617be5feafa5eda6bcfee9aa715bbc41807f5c629085f3

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4d59f88c4daa36b8c38e59ac7bffed6f5d7f68eaccad471484bf587b28ccc478
MD5 4dd4a3a7c5ce93f8367f598f381b1b32
BLAKE2b-256 2a2b104ff38a5143b317b18ecedba4a057180458f531e142a7a1a73702cca5e5

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 532a84a82156a82529ec401d1c25d677c6543c791e54a263aa139541c363995f
MD5 2ae268aacce05d6bd5ed5dfb3a48c799
BLAKE2b-256 5869cd4943c89d90766ebced5e18ae4618e4e28c495178e8433af4fb6d8e86ac

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce42649e2676ad783186264d5ffc788a7612ecd7f9effb62d51c30d413a3eefe
MD5 fa82403757bf840f2e3dabfd71d2b7bb
BLAKE2b-256 8538e37b78c676774199df3ea1f7e9c9b223ff774c00dfaf4ec829757d1370b7

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4dd676107a1d3c724a56a9d9db38166ad4cf44f924ee701414751bd18a784a0
MD5 6cd0f138cf5556cb60905fc8527052ec
BLAKE2b-256 c9f545b91ea8f69841e158978d744842afc76859850e9bc3e3cb82845a0f9782

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e3f8b1733078ac663dad57e20060e16389a60ab542f18a97931f3a2a2dd64a4
MD5 7fd0c1b250553ff36297318ca4f21b10
BLAKE2b-256 5e83b43edfc4c3449a68ed666ab1d95b5b55f0e6d779d29fcacaf6166637814c

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c3dde4ca00fe9eee3b76209711f1941bb86db42b8a75d7f2249ff9dfc026ab0e
MD5 ee7c1d54a9d9b31dded3edab389db19e
BLAKE2b-256 f3e515968435836790d4df5a9246aa31e0a33c54e6fb702b5e86642ca4039d9d

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 21.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6dbfe1887ffa5cf3030451a56a8f965a9da2fa82b7149357752b67a335a05fc6
MD5 92c8fb4215defd5d3aa04bc4a7cfc32b
BLAKE2b-256 d1379f95e75bd0c8da937f57899d2de73e57fd9f87b81375abd4ab58f6d7c23a

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 19.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e1d86b75de787481b04d112067a4033e1ecfda2a060e50318a74e4e1c9b2948c
MD5 736282b888ad533b1c57eb2847645659
BLAKE2b-256 39f1ab594bb6a08dfc9465a2d06315d9ce24c6d189b997d85c373fad60cd3efb

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7298562a49d95570ab1c7fc4051e72824c6a80e907993a21a41ba204223e7334
MD5 443858acb0371158aecc2b6d714598fc
BLAKE2b-256 e38e31c66f2e1f5b28ef7872b49e991f7442415495727f10055e547c6ea566ed

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8f34801b251ca43ad70691fb08b606a2e55f06b9c9fb1fc18fd9402b19d70f7b
MD5 aad9995c7f1c86a9d2284021845422e5
BLAKE2b-256 1dbdca13dc4341e57a7405246e7857054bb3a4cc9546f9030fa6001c05e62459

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 49532d7939cc51f8e99efc326090c54acf5437ed88b9c904cc8015b3c4eda9c9
MD5 b5be4377266113b132f3e358af50af77
BLAKE2b-256 4a6c8ab99e4fead92498dc9cfe5eb0a6b712b97ab0d93d95809d36b75a38cd37

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5986fb5f380169270a0293bebebd95466a1c85010b4f1afc2727e4d17c452512
MD5 95155934262818ce0d403cf974009bb5
BLAKE2b-256 5c35559d858578b39836d4d5a824bacc8fbd3fecdf76000454f352cf38343931

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 16b01d9ceae265d4ab9547be0cd628ecaff14b3360357a9d30c029e5ae8b7e7f
MD5 311f8481efc75ff20ba48207adaa3912
BLAKE2b-256 d250e4e5ebbfbd844e087d34ddb7404e9bece9ac46f9e96fd6c8534498871033

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d711c107e83117129b7f8bd08e9820c43ceec6204fff072a001fd82f6d13db9f
MD5 10cbe35ff332e427c8595561e59fbc44
BLAKE2b-256 548e379a340be1bc2e39d8060c97ac050bb0f5b0c78d69bcf7384d153dc1030e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4852f4bf88f0e2d9bdf91279892f5740ed22ae368335a37a52b92a5c88691140
MD5 2bcdb6fc24edadc8c19d1c1d98e860b8
BLAKE2b-256 8d6897535298184446c7dfa6bf8c5a7bce0ca5a105a85ffd0b2e4ecaed8cd721

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 387f655444d912a963ab68abf64bf6e178a13c8e4aa945cb27388fd01a02e6f1
MD5 9ff35bebdf4f135173d370e08a13919e
BLAKE2b-256 632f92ce21c16d31ba48a0ab29a7ca8d418adf755fa3396abafe1dc5150526d8

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e138d141ec5a6ec800b6d01ddc3e5561ce1c940215e0eb9960876bfde7186aae
MD5 cbc2a515fa17a7ad3cfe566f31461d8b
BLAKE2b-256 95a0e59d94e353bcb745149d3c0265ce972b059a03ceb583d575b49ed2124a32

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92830c16885f29163e1c2da1f3c1edb226df1210ec7e8711aaabba3dd0d5470a
MD5 6905bbd3a3462fbb1877ee6f0c8663ba
BLAKE2b-256 173325716dbb79df5f9221e6d1fe9db47178a449c2046acd317ba6683e00570e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a45857e87e9d2b005e81ddac9d815a33efd26ec67032c366629f023fe64fb415
MD5 97a43e06f948047ce1f501cc29a337ce
BLAKE2b-256 92635bf5c439c1af0b7480b7f75f6af02eb7cdcd70b882b50597b68178c3f7ef

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c431431abf55b64347ddc8df68b3ef840269cb0aa5bc2d26ad9506eb4b1b866
MD5 04fdc69fe687fc176444185c0c019221
BLAKE2b-256 0f47c0ea174d1b9416f5847f9010d2879ab4493ad104c8dbdec868779cee210a

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5c614552c6bd1d0d907f448f75550f6b24fb56cbfce80c094908b7990cad9702
MD5 f5843dbcf2b232531e69762cf65dac8a
BLAKE2b-256 506951db3aaac7c862b3023675cf71c0f41d9abb82edceb7fe31b3872238f861

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70d226ab0306a5b8d408235cabe51d4bf3554c9e8a72d53ce0b3c5c84cf78881
MD5 1b6dd8afb138539412f353465968c37f
BLAKE2b-256 a7f57ed05fba6ab598ef760b5b2ee62762d0cfdef6d0bdffbebb6f9550f67a53

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 63a090761ddc3c1f7db5e67aa4e247b4b3bb9890080bdcdadd1b5200b8b89ac4
MD5 589981dd9766fa02b65c4fc9ff4c5bbd
BLAKE2b-256 2ff99a770058242120a66a3a256ce4d0fec10312566272b7096d5f3666f77f17

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7bac7e02915b970c3723a7a7c5df4ba7a11a3426d2a3f181e041aa506a1ff028
MD5 cee1a6265912ac1bcc0369014432c1d3
BLAKE2b-256 778d7a0b1e463073f987a2d269af687877a295dde4daad3842f2731d92564888

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 14c7b43205e515f538a9defb4e411e0f0576caaeeda76bb9993ed505486f7562
MD5 c77b48fba9d3443da8868cb1977d4d73
BLAKE2b-256 6c6ad8e9c48487e6f0e39fa921d88d04fef7e96500e17c5b7eb0c5bcf9406c1f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dc1c3fd49930494a67dcec37d0558d99d84eca8eb3f03b17198424538f2608d7
MD5 26d4341127f15f3686ddc08a5eaf4594
BLAKE2b-256 dd15c582c84db3854275d80786cf4e1a01ef11fd70e016a083707a9e24bdd36a

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e2674a5a3168349435b08fa0b82998ed2536eb9acccf7087efe26e4cd088a525
MD5 00b24dab69d1604a85b8b6575fb0078b
BLAKE2b-256 49c035cf55026829e06b9c3e9927b7f66f1310afc1f08087796462b02c27eaef

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0da56915bda1e0a49157191b54d3e27689b70960f0685fdd5c415dacdee2fbed
MD5 dc65bbf4e2917e539862891f2d04ea6a
BLAKE2b-256 0f811a87b64a4c33e18c30b4e41d8a4cf222c2fff74933d27ed293c2465a6439

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb8797b528c1ff81eef06713623562b36db3dafa106b59f83a6468df788ff0d1
MD5 945e97faa767ceafeba6fa65eeae198c
BLAKE2b-256 cd2486f9359ec4de465bafc90890b57439eca907882d03602a08eb3abec05a68

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f70481213373d44614148f0f2e38e7905be3f021902ae5167289413196de4ba4
MD5 a919f3579fcde7b37337ce4702777f03
BLAKE2b-256 a23d1b6a97fd60998206a09b7c9426d83f1401cd63e358ba385800d2ffad7174

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28bd184b33e0dd6d65816c16521a4ba1ffbe9ff07d66873c42ea4049a62fed83
MD5 e03f5766d17c5c903fd119e7eaf32b88
BLAKE2b-256 2ea1e149bbe353c202eb578f8f13426fa9e8a9bedb72e6afd1947d830890db3f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa904045d7cebfb0f01dad51352551cce1d873d7c3f80c7ded7d42f8cac8f89
MD5 e471844f6ff8999ac0c1d068513167a9
BLAKE2b-256 4bd3b99f6bc21971a7ee889711e62fa9444012999821b06d4e0db300195ef17e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02fc71c8333586871602db4774d3a3e403b4ccf6446dc4603ec12df563127cee
MD5 c06c3148155fe8debb0879c825484417
BLAKE2b-256 b301f71c0ca9acfb2ce6eacb8bfa9963a19220fdfce4b7bc0c6af247ffdec6ec

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd40d2e2f82a483de0d0a6dfd8c3895a02e55e5c9949610ecbded18188fd0a56
MD5 4ac66457d5723594ba4aa29246dc6f07
BLAKE2b-256 6f892bbc2d9400dbb18161e9e6ce5821ff06725a78df2e471875a667f6b61d08

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80b02d27864ebaf9b153d4b99015342382eeaed651f5591ce6f07e840307c56d
MD5 26637a90fb2ae436c07f925040f0fa29
BLAKE2b-256 d908e1de65a655ad7ab3b76d01e718a5f4e3503d8c25bf107731608e49a859df

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 adfbf2e9c38b77d0db2fb32c3bdaea638fa76b4e75847283cd707521ad2475ef
MD5 88ae6469b2bfcf9ae37b1fc5ff8581a9
BLAKE2b-256 83946e729760c66b3eeeec1ea02e06596d7a36b97fa414dd7e25130a34be5238

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea002656a8d974daaf6089863ab0a306962c8b715db6b10879f98b781a2a5bf5
MD5 45c1b95aaf45b7dedf3f6c13bca1cbc1
BLAKE2b-256 4a6c409d11fd7ac6554fe7d205845958a57f0aba7f53edc608df13c3dbf945a8

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3dd63d0bbbe75797b743f35d37a4cca7ca7ba35423a0de742ae2985752f20c6d
MD5 441560ce93c03661217022e619e79270
BLAKE2b-256 27321e6fa10602856e4f847e31c2df74fc29a784e64228af34a47a6f04e1f9bc

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 55ce31bf4711da879b96d511208efb65a6165da4ba91cb3a96d86d5a8d9d23e6
MD5 eaaee07584c31ccd9ced1a0c0abe8650
BLAKE2b-256 6716b54a0562bf8f266fc379f310ddedbb3064dec883421211289a2d429052cf

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7f39f28ffc65de577c3bc0c7615f149e35bc927802a0f56e612db9b530f316f9
MD5 d22b8d9fd8be6ad3be2c38dab64c3e22
BLAKE2b-256 ddb1323f148358880fafff3b1e11bad95528a68f582402077b79636ab50a3ed9

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 bfa73e3f163c6e8b2ec26f22285d717a5f77ab2120c97a2605d8f48b26950dac
MD5 cf7499f93b7bb32dae1279d6a55c3fbd
BLAKE2b-256 35bdbedf7ffc1b4b3458c86c0b092d82f64a0d312359337999be764f46bb6f25

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 322c668ee1c12d6c5750a4b1057e6b4feee2a75b3d25d630922a463cfe5e7478
MD5 f4acc34fbed4f7b9d6b973fad7852ff2
BLAKE2b-256 87e593ab423fccf5e98590ed2b5da2921f2995eb07223c7e494dcb0ec65f21a0

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66ab949424ac6504d823cba45c4c4854af5c59306a1531edb43b4dd22e17c102
MD5 db847c5de71392ab4f45e297fe9c5068
BLAKE2b-256 9da804b39a5c7fcb56c0b43d41c9b8ec412f861b1ce8cbf4c60791ab91af16e0

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 684840b014ce83541a087fcf2d48227196576f56ae3e944d4dfe14c0a3e0ccb7
MD5 bc31bbf612f427401429bb0b3337a142
BLAKE2b-256 df51c0dd2484074519686e239ecbb412df6871a6a46856787c54a323ab12870b

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6481c3b7673a86276220140456c2a6fbfe8d1fb5c613b4728293c8634134824
MD5 07afdba5cdad3d2c58577606df7ece72
BLAKE2b-256 a71de1be6fa8e72cc1418defd17ddd690fe48dfae5ba53e7da7765eab32a731f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b4edee59dc089bc3948f4f6fba309f51aa2ccce63902364900aa0a553a85e97
MD5 d31c43d7ad95211292b7e00e20d3723d
BLAKE2b-256 7a81d3702e89694c9a60d8639daa8868d4e760bc712a849012d39ce2929ee31e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed63e8b75c193c5e5a8288d9d7b011da076cc314fafc3bfd59ec1d8a750d48c8
MD5 ff0afb2ee077bc9c08c1516716ac3bf4
BLAKE2b-256 46f4fd5532ddb5e825257b2f627f3b54f0683074f1e617736ea2122e23bcafbe

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c4c0bcf786f0eac9593367b6279e9b89534e008edbf116dcd0de956524702c8
MD5 047d37667ded988fedd3df9455b489f3
BLAKE2b-256 154f7a4d5ff2044f34fb4d99a715f3bee5117072926238f9e8ce9646992af186

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d7302b4b17fcc1cc727ce84ded7f6be4655701e8d58744f73b09cb9ed2b13df
MD5 11a15741312eb29f42293bf53c4b7c62
BLAKE2b-256 a77691b99f5459efdf9c4b0275a0602aceac740b9a762c5be4cba8808df7908e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e14fb70ca4f7efa924f508975199353bf653f452e4ef0a1e47549e208f943d7
MD5 10e79c7e25cbbf4c8728c87373ed6a9b
BLAKE2b-256 4fad6138ad6570284e9b3de9e99ad4aab184ce6a31f19f3eb1ed10fb00b0d7d9

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 742093f33d374098aa21c1696ac6e4874b52658c870513a297a89265a4d08fe5
MD5 e2dc9712b9915273e9026934ca6b41b8
BLAKE2b-256 6e29d890bceca4c3c494d5d1d225a8f51a1f47c2b818e90db5c7a0fa05e234f1

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a50c8af811b35b8a43b1590cf890b61ff2233225257a3cad32f43b3ec7ff1b9f
MD5 d3179dea996e89c0e23b1d3524c27b53
BLAKE2b-256 efe3d953ec8ed06802065541bbd4586e72bc6d2ffcbb74832b50e41238e32254

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 63b99b5ea9fe4f21469fb06a16ca5244307678636f11917359e3223aaeca0b67
MD5 28aab2957325a9c539878c3aa438bb25
BLAKE2b-256 f31a5aaf6d4e53f8ad8887109658c7225dc2797d2a18b9e12ce1276934b5ac69

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e96cd35df012a17c87ae276196ea8f215e77d6eeca90709eb03999e2d5e3fd8a
MD5 7ee0a2b0531f1a6caa9f532e92cbd027
BLAKE2b-256 fc1b21e6ccdf6724edf58c54b56027c07cddf9b072b1613a74223af1251d17ca

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a6b54dabfaa5dbaa92f796f0c32819b4636e66aa8e9106c3d421624bd2a2d676
MD5 1ff0e9a7d70496299078a416c3dfed1e
BLAKE2b-256 317fe4b5dda9daca5803c0359d04b2bd619cfd31430b05232b351be411b5f61f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0c5f6972d2bdee3cd301d5c5438e31195cf1cabf6fd9274491674d4ceb46914d
MD5 2d27be7d54c838727f1d1d52c5622e07
BLAKE2b-256 d83a292b00c0ae665cdd5b458439029ed594885f7798d5492ca5bcd8dbd260e9

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ca33c175c1cf60222d9c6d01c38fc17ec3a484f32294af781de30226b003e00f
MD5 89fd13cedeba98640cb85b8b2c50d1e2
BLAKE2b-256 b779396b7943e29d9fa6b231a557ca6e5f64f74ce68220cf7c96d11c0f31e45a

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eae62ed60d53b3561148bcd8c2383e430af38c0deab9f2dd15f8874888ffd26f
MD5 59803dd1710bd1730c93b05855562e19
BLAKE2b-256 cc92a6903ab12bf6d15d3a50d7a70ead886cf597227986c8b937f95324f4f2a5

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e741ffe4e2db78a1b9dd6e5d29678ce37fbaaf65dfe132e5b82a794413302ef1
MD5 23b452abf820132e47e6fbcf478deca0
BLAKE2b-256 c76e435ba1bb740255a7a68954d1fdd56e2e0ff88f559c2edae1be093c5b5ec3

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d63318ca189fddc7e75f6a4af8eae9c0545863619fb38cfba5f43e81280b286
MD5 82689f883e9947cf8d2a0390054417e5
BLAKE2b-256 5ec00fc2742ed23ec42928e9eb2adcd50772287652b5163afaac687cccd61160

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57c0d0c7e308ed5280a4900d4468bbfec51f0e1b4cde1deae7d4e639bc6b7766
MD5 3050357aaa2de2c21af713105778e26a
BLAKE2b-256 ad6ab3e34358591c5dae07c6299daed021c5d7d535a76a7eef5cb30a7e166b94

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53d0f2c59bce399b8010a21bc779b4f8c32d0f582b2284ac8c98dc7578b27bc4
MD5 7c9ebec561d5045d65796fb4a28e6e96
BLAKE2b-256 d2532bbb21f9712b856eb3400913ebf286060b998ffba1e5151fb40daad22cd3

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eb98038ccd368e0d88bd92ee575c58cfaf33e77f788c36b2a89a84ee1936dc6b
MD5 062db68313e82c632777e47e263865d3
BLAKE2b-256 f8439554892282dd8a9cecc8c4f97b20bdae25697405237a5a47a26b08951f4c

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3020b60e3fc96d08c2a9b011f1c2e2a6bdcc09cb55df93c509b88be5cb791df
MD5 8904d7dd4cf56835a62a769d7a48d4a6
BLAKE2b-256 08e890fab2115ac3e65d6670dec8bf5dc68cd2de3ad57f1cb83997481535b398

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9412a06b8a8e09abd6313d96864b6d7713c6003a365995a5c70cfb9209df1570
MD5 5f9beca5005ab202382502c73c22405a
BLAKE2b-256 f96673ca3c54b87984100d8a3986be2b6b75b5d0bba682b708db6f6ac9de73f1

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f47775e27388b58ce52f4f972f80e45b13c65113e9e6b6bf60148f893871dc9b
MD5 34f0c1ddef58d432bc1a6cac6fa1bce6
BLAKE2b-256 fe538d5dbd95bf60bb4f2b1b52000c9e62142e08717d33c6d010b8aceb6d8b4e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8fc7197ff33047ce43a67851ccf190acb5b05c52fd4a001bb55766358f04da68
MD5 478e426c4122035adbd51a5dec66d563
BLAKE2b-256 bf2dc679c27a48f9dda205eec4569956680636bd72ef31795aadd32431a1c611

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5341ce3d01ef3c7418a72e370bf028c7aeb16895e79e115fe4c954fff990489e
MD5 4ec5a8492bcde277f6529a6d5cceefae
BLAKE2b-256 bc552b27c9ce696764c958d7567e065b43ba590510ae6d2bcf93bbf90dd2835e

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd1cee053416183adcc8e6134704c46c60c3f66b8faaf9e65bf76191ca59a2f7
MD5 3601e1a72f682ac0a3ed0d0e5ba64fb2
BLAKE2b-256 45aa150839fe0a3111e4738af239f048811ec9d7e8c6cd1be7418127faa7ee14

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0c0773266e1c38a06e7593bd08870ac1503f5f0ce0f5c63f2b4134b090b5d6a4
MD5 aa645e4214f8da17eaf50da36f2fb9c6
BLAKE2b-256 a6392422f0015c26061ac9b8ca63b150e8577d32fbf33fa20e92daf47f7e64d9

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1979334ccab21a49c544cd1b8d784ffb2747f99a51cb0bd0976eebb517628382
MD5 cc5987afc76534573a3d58118107ab9d
BLAKE2b-256 82c5704979bc750e96a7875a6f40067b4630eed9932379af81fbefe237328979

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 de3a32b4b76d46f1eb42b24a918d51d8ca52411a381748196241d59a895f7c5c
MD5 d925380c6838882d1ca99c797df2e891
BLAKE2b-256 77aae528fd9c3f7fae04944220721969fd60c00a3645e04f64351a751864262f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e58494f282215fc461b06709e9a195a24c12ba09570f25bdf9efb036acc05101
MD5 f232880acb64e2c724ea6ec0b3d78e96
BLAKE2b-256 985cb9c83cba2ddbdc7856f3ec74479dc880d511a6ba789951f38bd3eee182e3

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a0026cfbf29f07649b0e34509091a2a6016ff8844b127de150efce1c3aff60b
MD5 cd7cac6c52b41e2400af2ce0feb01622
BLAKE2b-256 f227a4a8cf1f8c1248fb28ae0f3b2c53e7824949508fdfce807a051a24718b65

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27e9619847e9dc70b14b1ad2d0fb4889e7ca18996585c3463cff6c951fd6b10b
MD5 a826d7814118f38f78715e7eed6a58f4
BLAKE2b-256 c8dea4f6726ec3b45e2b0535136d697fdd5324ccc7f5899873a8d3cde3f4fe7f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28adecb308293e705e44087a1c2d557a816f032430d8a2a9bb7873902a1c6d48
MD5 7160cbded841678e48e6e1125fbd7603
BLAKE2b-256 5948bb4249761e62d949be8de0e7a1e6f774d684c11ec1a4cace415847bc5c68

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1f567489f422d40c21e53212a73bef4638d9f21043848150f8544ef1f3a6ad1
MD5 7881bcf7010cdd1530fc8c0ba8668fcb
BLAKE2b-256 38e2a0a874cc77f101769931eb29f30347f7ac424350f1a1cc1ea168c4d79ed9

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9de7586522e5da6bee83c9cf0dcccac0857a43249cb4d721a2e312d98a684d1
MD5 5724372fc78738b450987b6dc82a7791
BLAKE2b-256 2368523c130e99aa74f55159a4c42d3c8aee6e3eb72b8ea5d71bfe8df68997de

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b6c24c0840ac7afafbc4db236fd55f56a9a0919a215c25a238f051781f4772
MD5 dda4c7c7bbd251a344844cff04e57a7e
BLAKE2b-256 c1dae11b573446c4a1484e6cef8eaff84556f69f735f48d95041e6a31ae40257

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f2c9c0d910dd3f7df92f0638e7f65d8edd7f442203caf89c62fc79f11b0b73f8
MD5 9b5f6828c55e9bac48e29ba9f0c0e0e2
BLAKE2b-256 59bd229ebb225820f9900d23129970e5f02af081dfc2df948bafb9dc3c829679

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp38-cp38-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 bcbe47da0aebc00a7cfe3ebdcff0373b86ce2b1856251c003e3d69c9db44b5a7
MD5 069919374f09c90edc86544b4f861816
BLAKE2b-256 de6e6d11a7e54a131db1cb4961470977df330bc314c68631b00a727b24fecb2f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cfa67afe2269b2d203cd1389c00c5bc35a287cd57860441fb0e53b371ea6a029
MD5 8bd9ff0e456139af4a0950a0e45e2a90
BLAKE2b-256 86d1ab677a51f58e60c6d482bdd11b5cbd28052333ce2cdbd4aaa01d82533a2f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: hiredis-2.3.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 19.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 948d9f2ca7841794dd9b204644963a4bcd69ced4e959b0d4ecf1b8ce994a6daa
MD5 8622fdf457876350c475ecc6a284859e
BLAKE2b-256 42d36e6aaa72a07e4bcb7043ffbd3b3d5d944298514fe5b822914bce66f40399

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 380e029bb4b1d34cf560fcc8950bf6b57c2ef0c9c8b7c7ac20b7c524a730fadd
MD5 ca175a02cb04d6a94753ce8e4e73b336
BLAKE2b-256 4f46b2b694baba5f20e6e70ecdc87f3c988b9a462eb188317b9ed7547dd2a48f

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 56e9b7d6051688ca94e68c0c8a54a243f8db841911b683cedf89a29d4de91509
MD5 f7aad660e4d6616c8e3fcba88eb091cf
BLAKE2b-256 452dcba99a55cf3e5a6d5efddfd6a4c1c8edb34f9e3b511b5b9900ffbb53a87a

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ba3dc0af0def8c21ce7d903c59ea1e8ec4cb073f25ece9edaec7f92a286cd219
MD5 a2a9f2a1eeab1bdd8d5f7199b455c0e4
BLAKE2b-256 90d852bdf9703c1618f9d3133d8f3146e7d1e25aa146e9271e70239782969617

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e627d8ef5e100556e09fb44c9571a432b10e11596d3c4043500080ca9944a91a
MD5 478d0e597e19d0e535e2f23da801556b
BLAKE2b-256 4e59c36831dec39ff482b557567ff5238d1e42bba20ed0291dc4155e139f6356

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4baf4b579b108062e91bd2a991dc98b9dc3dc06e6288db2d98895eea8acbac22
MD5 6a682d3dddd9fb9bec03df065770de46
BLAKE2b-256 e17f3b8eee49d55b2f741c1256cf9a1e75b4295fd4b143e7666735275eae9810

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88cb0b35b63717ef1e41d62f4f8717166f7c6245064957907cfe177cc144357c
MD5 94592487f4cc70120e463059ab3275e9
BLAKE2b-256 c5863be9bae1df5361f91ab25949d77866d90bd9b69dd68189f33d3f62ea7111

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6871306d8b98a15e53a5f289ec1106a3a1d43e7ab6f4d785f95fcef9a7bd9504
MD5 e2d2034d5f4132910087c90d7daa596b
BLAKE2b-256 9b08e6469f3c02d5c5b357435be90411e36f42fc403892673b571f3b81badfbe

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 419780f8583ddb544ffa86f9d44a7fcc183cd826101af4e5ffe535b6765f5f6b
MD5 3cc15f4fd86e2b001cda7533a2f7c6bc
BLAKE2b-256 22472d44b4363c90942dd1f2495c6a49240e40e7ac5b91d5ea45209936f83174

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e81aa4e9a1fcf604c8c4b51aa5d258e195a6ba81efe1da82dea3204443eba01c
MD5 7e50193117f3522ded0e3ef0007d2167
BLAKE2b-256 8df43383aabfbfd8ba51d0b534efcd4f103933f355f655e8a2a4e8660b0f54d0

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c490191fa1218851f8a80c5a21a05a6f680ac5aebc2e688b71cbfe592f8fec6
MD5 984425693c4dd6592e875cc7ec399d01
BLAKE2b-256 3b964787b7d21c66ce037810e128e753656d6cb81885781e34d0daf0d8525bf6

See more details on using hashes here.

File details

Details for the file hiredis-2.3.2-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.3.2-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4fc242e9da4af48714199216eb535b61e8f8d66552c8819e33fc7806bd465a09
MD5 dcb8528b6351a96c3a0b384d1a57141c
BLAKE2b-256 f4727574df04dd0bb12157f666e0519a48d5343ca17ed6a85090412a48ad37a6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page