Skip to main content

Python wrapper for hiredis

Project description

hiredis-py

Build Status License pypi

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 --recurse-submodules https://github.com/redis/hiredis-py
python setup.py build_ext --inplace
python -m pytest

Requirements

hiredis-py requires Python 3.8+.

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-3.1.1.tar.gz (87.9 kB view details)

Uploaded Source

Built Distributions

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

hiredis-3.1.1-pp310-pypy310_pp73-win_amd64.whl (21.8 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-3.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-3.1.1-pp310-pypy310_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-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (37.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-3.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (39.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-3.1.1-pp39-pypy39_pp73-win_amd64.whl (21.8 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-3.1.1-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-3.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (37.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-3.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (39.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-3.1.1-pp38-pypy38_pp73-win_amd64.whl (21.7 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-3.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-3.1.1-pp38-pypy38_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-3.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (37.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-3.1.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (39.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-3.1.1-cp313-cp313-win_amd64.whl (21.8 kB view details)

Uploaded CPython 3.13Windows x86-64

hiredis-3.1.1-cp313-cp313-win32.whl (20.2 kB view details)

Uploaded CPython 3.13Windows x86

hiredis-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (166.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hiredis-3.1.1-cp313-cp313-musllinux_1_2_s390x.whl (168.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

hiredis-3.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl (175.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

hiredis-3.1.1-cp313-cp313-musllinux_1_2_i686.whl (163.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

hiredis-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (164.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (171.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hiredis-3.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (170.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

hiredis-3.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (181.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

hiredis-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

hiredis-3.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (166.8 kB view details)

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

hiredis-3.1.1-cp313-cp313-macosx_11_0_arm64.whl (42.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hiredis-3.1.1-cp313-cp313-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

hiredis-3.1.1-cp313-cp313-macosx_10_15_universal2.whl (81.4 kB view details)

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

hiredis-3.1.1-cp312-cp312-win_amd64.whl (21.8 kB view details)

Uploaded CPython 3.12Windows x86-64

hiredis-3.1.1-cp312-cp312-win32.whl (20.2 kB view details)

Uploaded CPython 3.12Windows x86

hiredis-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (165.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hiredis-3.1.1-cp312-cp312-musllinux_1_2_s390x.whl (167.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

hiredis-3.1.1-cp312-cp312-musllinux_1_2_ppc64le.whl (175.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

hiredis-3.1.1-cp312-cp312-musllinux_1_2_i686.whl (163.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hiredis-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (164.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (171.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hiredis-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (170.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hiredis-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (181.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hiredis-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hiredis-3.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (166.7 kB view details)

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

hiredis-3.1.1-cp312-cp312-macosx_11_0_arm64.whl (42.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-3.1.1-cp312-cp312-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-3.1.1-cp312-cp312-macosx_10_15_universal2.whl (81.4 kB view details)

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

hiredis-3.1.1-cp311-cp311-win_amd64.whl (21.7 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-3.1.1-cp311-cp311-win32.whl (20.1 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (163.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hiredis-3.1.1-cp311-cp311-musllinux_1_2_s390x.whl (165.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

hiredis-3.1.1-cp311-cp311-musllinux_1_2_ppc64le.whl (172.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

hiredis-3.1.1-cp311-cp311-musllinux_1_2_i686.whl (161.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hiredis-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (162.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (178.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-3.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (164.1 kB view details)

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

hiredis-3.1.1-cp311-cp311-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-3.1.1-cp311-cp311-macosx_10_15_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-3.1.1-cp311-cp311-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-3.1.1-cp310-cp310-win_amd64.whl (21.7 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-3.1.1-cp310-cp310-win32.whl (20.1 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (162.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hiredis-3.1.1-cp310-cp310-musllinux_1_2_s390x.whl (164.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

hiredis-3.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl (172.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

hiredis-3.1.1-cp310-cp310-musllinux_1_2_i686.whl (160.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hiredis-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (161.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (178.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-3.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.8 kB view details)

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

hiredis-3.1.1-cp310-cp310-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-3.1.1-cp310-cp310-macosx_10_15_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-3.1.1-cp310-cp310-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-3.1.1-cp39-cp39-win_amd64.whl (21.7 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-3.1.1-cp39-cp39-win32.whl (20.1 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-3.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (162.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hiredis-3.1.1-cp39-cp39-musllinux_1_2_s390x.whl (164.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

hiredis-3.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl (172.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

hiredis-3.1.1-cp39-cp39-musllinux_1_2_i686.whl (160.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hiredis-3.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (161.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-3.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.1 kB view details)

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

hiredis-3.1.1-cp39-cp39-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-3.1.1-cp39-cp39-macosx_10_15_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-3.1.1-cp39-cp39-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-3.1.1-cp38-cp38-win_amd64.whl (21.6 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-3.1.1-cp38-cp38-win32.whl (20.0 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-3.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (163.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hiredis-3.1.1-cp38-cp38-musllinux_1_2_s390x.whl (165.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

hiredis-3.1.1-cp38-cp38-musllinux_1_2_ppc64le.whl (173.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

hiredis-3.1.1-cp38-cp38-musllinux_1_2_i686.whl (161.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hiredis-3.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (162.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (168.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-3.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (164.7 kB view details)

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

hiredis-3.1.1-cp38-cp38-macosx_11_0_arm64.whl (42.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-3.1.1-cp38-cp38-macosx_10_15_x86_64.whl (44.4 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-3.1.1-cp38-cp38-macosx_10_15_universal2.whl (81.1 kB view details)

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

File details

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

File metadata

  • Download URL: hiredis-3.1.1.tar.gz
  • Upload date:
  • Size: 87.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1.tar.gz
Algorithm Hash digest
SHA256 63f22cd7b441cbe13d24087b338e4e6a8f454f333cf35a6ed27ef13a60ca8b0b
MD5 7fe92a33e303b4185a2b52919eab41eb
BLAKE2b-256 496fa1b4749fa7d980f4d11e7f6da42658520fb9a92538844b2012427ad9aa06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dc0348c4f464020cc22f9733792d95fc4c09afecd1d3097eada500878133fa0e
MD5 7618d397140a5beb1ab8379b5e1ca915
BLAKE2b-256 28b0309f431c11b91c215985567b389b318dc73f8a42a8df9fe8519913afecbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4586570efa5c931a9dae47d0ea80968e058ad9a631364c474b316d0d62d54653
MD5 96364ad367db2648564ef3673f390424
BLAKE2b-256 051d94d29a3000b480a995e257e5aecf55151d82f7b4df897d6a0d2302ea0b50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5851522b854a7ef9af1c0d5bda04ff1d97e5da28cd93eb332e051acce36d8e3
MD5 d770cf0be9b99a83c199e6e8be673158
BLAKE2b-256 28cc3e407e364040c1cc40b04aa231595348e26fd319df8e7576676b47568a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33c8b28c9949eb1849bc07e6b03591e43deb25cc244729fa2a53d9c6a9cdbdb0
MD5 da173468f542d3f230236615897e662f
BLAKE2b-256 c409fb9309b97339135a3727f678077e2001f125a5021bae07f3ecb75211a17d

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e196647a34e82c5567b982184dff698a8655c9d2997ddd427a2ef542ef8b3864
MD5 54b91b4edad2959395229e2b17958632
BLAKE2b-256 4db4f90de5d6f714b914027bb5b95d04e6c94b8d3fd75ae1bcad11a43b46a778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c37f00064203ea8c17e06a51971511dda0ce826e5974ebe61cc6c7447cd16d30
MD5 19ca61a718403b90dbeacefeae8be879
BLAKE2b-256 f0b062405b56facbb6a72bd010af391f3aa8efabf89bcea61e6ec19da5a9c09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d1eeacc81a8014cc88370f42d1e82bc41591587fe063ff7548645c172713f38
MD5 89be45f813713a943a5394e4c1be79da
BLAKE2b-256 22e1fc263cb46fd5613c1056df96d18922cff67bf165402939d979b8d323d9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfcde616a8e1aba2f6114a10ebe20d7f8961fff38c0e9b720105ed977d40f977
MD5 48b29647dc3020d6238f0330acdcb0be
BLAKE2b-256 5c8ee9b684ddc5718da55d053ea800f36902a41b4cb289511834516864ecd132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e2b6cd4716a666e544af7b9d9b95e1b66e2ea46c419740856b63237aef28387
MD5 ac01486439dff7ecafea2a6284dcc107
BLAKE2b-256 58919dccf9bd36a8591c3f28f7a35e48d9f0afe49325051dca0f92d09ef9515b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f756d4c63bd6e50141dbb5b146c541899ce30911a2d79221752717ef946a4f12
MD5 e0dcb574a94bb707ea2e70baf3af44cd
BLAKE2b-256 f265f994f007f6aef672cb7e8e0cf285d20459f0b1986aa9145b9db04c3b42ae

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b25b26064b9b10f75b9765db3e46d7bb5215865e85d991dcc34b793d8193faf1
MD5 21a97c922f2a944458927da9e9106196
BLAKE2b-256 ba9bdd9d8f70df2c583e6d38649773402e118eda4ac0b9ebcce37e74c4fb505c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff3706f3802248c98ac7e06553f6b3820a6e073899df41f49833d60708fbe1c7
MD5 becb536aefc6048e0d99a4d4e231bbc9
BLAKE2b-256 00db00cb4bf7786e1c4dc10e7852a880d374d9f62d31cafb77352a4ff75c47b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8782a8eff272af2cc705b8ee503367f71fb9d2ff370eae0825d77baed91f0aeb
MD5 095880a7b336175aef922ea91ad62342
BLAKE2b-256 09b1757d8cff306923c83ff4022c27ea1597aa6f8ae7055395b95536b836f1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 412ac8d59134b7bcd1ea0c0378828ec8584c313e35ce6926d0b26f3db8004e58
MD5 a2d3f672ad2659d89a4f9ee5e259fc8b
BLAKE2b-256 dfbaf13f4ac2efa1eb6514d364f7e0d69328be1132dc8175f51cdb20a6962cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 898a67fd6e07d9c19aa8f25c47954f3c32c4b43d16f6dab3bd93e385eccf93d8
MD5 7de52315f903fe9b024e7e3ab976b324
BLAKE2b-256 775f75c5c018fcddfb35df791d53a9b3f644e65fc009459ca37b55f2f79ae3a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36667d8a5947fa382339e2c60fc4947005e07681b569823f13dc227186e16267
MD5 c7b6bf65b597875686a0b02264c1c664
BLAKE2b-256 1fb514d5e079b88c4ba7314b4e516541177662336c36a7397ea42c70ee5cf38f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ff51069030f0ed71521f40828b5966aa8613f40170ddc8929c675ea2b662bf1
MD5 499eb99be89e89d75be364f4b0337f16
BLAKE2b-256 f7cac191235461ed4de1161218c3cf28282f1ceb826d38377d87348e977af9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93027287ad7bef050bdaeec3d9310c6a4cb965b2491ede7a68d9c6121d45f052
MD5 11e39651b2bf736a884e05f63f4be50f
BLAKE2b-256 67d0429885737bd664c3564584eb1f870e9077a74034b0fc35902efec720ab38

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: hiredis-3.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5fa133c6f0fb09bf5f7dd3d722934f2908d209be1adba5c64b5227c0e875e88c
MD5 9b089a529a81156a7dbff0d96597c367
BLAKE2b-256 763c24fcad4f3db2eb99fa3aedf678f623784e536ce30fca42ccf2e5979f97e5

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: hiredis-3.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a227a02b603583c84cb6791b48bc428339ebccd80befed8f00cac5584fc29ca4
MD5 566b49b0602021d442cef8893840e61c
BLAKE2b-256 f14b16069d1eb3eb4991ac194d1a0822f41c1aff02e8c621bbc45dd696e57067

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 330246da5c5c33fd7cb25e87e17eabdb1f03678e652ea0c46861f4318fc56c29
MD5 edfa2c259733de6757eee9ddd34080cd
BLAKE2b-256 19a0d16e9ceab7fa83223b4513ab82dd6b5a3566d333ea69c88fc06e8227e1e1

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 64cd1f6b5cf2904e64445c3a5e765fcbf30c5a0f132051a3c8d4bd24fa2fa3fa
MD5 21fd9b88eae6ef567f2f5ce59e61b6db
BLAKE2b-256 69c6196ea580a2deed300c392cf42e3dc94c0204b76f468ac462bbcefd9b259a

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7db1567a8aef8594c81ad67ff597b8ac86aa1ead585b8e8b51d33e234b817d68
MD5 093df8e5823d1ba29528628fee2c168b
BLAKE2b-256 d6b4b3654be50623bb8036058600b128596bd04e15b5566d5d1b16d90c09e1ee

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 434614076066704efae38a538a6e1dcea9678c3de030a6ec2fe72d475e2594de
MD5 9d328cdfd87a0dd7cde0407a6ebd0c5d
BLAKE2b-256 cc9a1c7cab2e92b8be240cedc859f8b870a0eb28bc0b93e1bed5ef94e284bfa6

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bf5711a5bdbc284c406c8e9dd9154b4d93a54ba758f417c8b8c01133997059c
MD5 ea7d9a9d332a50f2d22fedec87b12f92
BLAKE2b-256 252ae05816b03c151cb246c7ec9a35b840cdb3b27f89253224cfa7878633d79f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56f2587e35a4f3f214d6f843e000af45422ebd81721a12add13108c1c4789332
MD5 5706b13c6a986830d3a7efc21df56513
BLAKE2b-256 cd4800570c3e57767bb0935a862d22fd0300c5c491832648938dd7a1548bfc81

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 340f3e9c33ae71e235a63770e339743254c91aba7b55d75a1ab6679e0d502aea
MD5 571c9933dbd96863b4279c5a83eabcde
BLAKE2b-256 f7cbd7bd0a4387199aa206de2253ce1398547677c6a6895eee2e7e71625321c2

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17e5ad9ed8d8913bdac6d567c9cf0c4f259e7950c3b318fe636ebb7383d3f16b
MD5 55b71119dc50b9c42314b6a2ab3e51c4
BLAKE2b-256 47a1e85364f88b463cc4fd8c20c6f83977abeb8b7d0803f26b870231e9437e5c

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4614cc774bff82c2ed62f13facb732c03a8dc0c5e75cc276af61b5089c434898
MD5 ce0ebaa564b56c9d1cdad98b7e548c52
BLAKE2b-256 700928b3a318e3e05060d814185855eacc0265ddfca8044c4ff7febe0f67e3ec

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dba00f102b4414a6b33f3aa0ab6192d78c515fc4939a14d9c87461262047883f
MD5 58bb422c7f05b312f5f2ec65499185ee
BLAKE2b-256 46e86993c834c783fd3d384943cea224e2c1e5cf37ab0895b0d89fa7f9acb339

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6c9c6eb9929ca220002b28ce0976b1a90bb95ffcf08e6e2c51956d37a2318a
MD5 628d3d1321e40555d647ec625465105f
BLAKE2b-256 f6a74d4dc0f420dafdd50bd7b22238da6ffd2e57de007b0f108da3c0936935c7

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a9524a1f651e2d45eaf33865a0f412a0d1117f49661f09d8243a98c3d3f961a2
MD5 9ad0cfba4126e67f523298678b195e74
BLAKE2b-256 29768af1c24bd69d0c910281ddfeb603686220cdcb7e37d9df2eb39aaf31f5b0

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp313-cp313-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f22759efdb02f5e95884b1ad986574be86c7dd2ac4b05fe8e2b93826c6e680b3
MD5 b1fe5a2ae7ec2afe06fde8302b79a97c
BLAKE2b-256 3e937c9f61e8bd145f5933669c0d48ba8ed248b6ed2988beae039695378828b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87b69e99301a33119cb31b19c6be7aed164c0df6b6343ba57b65deb23ae9251e
MD5 025285d17f936b2071fb193b07d3bb11
BLAKE2b-256 92f0856832bf2558f35ea4db0d594176cf61b10dd6091d9029542362c29631d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b48578047c6bb3d0ea3ce37f0762e35e71d1f7cff8d940e2caa131359a12c5a7
MD5 d4761e8adedd6ee21c647a00b2a2dc9e
BLAKE2b-256 097f345923dba3b9d6326accd20bddebe5a0a40abe28447581188a5da2c720eb

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c7e43d3968000d75d97b2d24a6f1ee37d24b9a4472ba85f670e7d2d94c6b1f2
MD5 f45c13d75213f44fd88665cc912c61f8
BLAKE2b-256 f5ab35715b22dc1962bf6edf0dcde5fe62ca35221c81fe5b946a38e0da4d2f93

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 24b51d492b6628054eb4dce63eab0cadf483b87227fe6ee3b6de0038caed6544
MD5 b21208d1bd664e76f4f1c0cd44f29df4
BLAKE2b-256 3ab18f7fc62699b11adb453f91fc33bf738a8b73b38274bc392f24b9b2b1e2ff

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1fd685aa1f9636da9548fa471abf37138033f1b4ec0d91f515ea5ed4d7d88b62
MD5 421ef452db90a87ccf4529b972037620
BLAKE2b-256 f61a8bc58594b83fd4c94d8d531b061d8fc2af0a4659b5dd7bef5ad294f726d2

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8619f2a015dd8ba98214e76e7453bcdaaa8b04d81348369ad8975c1ff2792eb3
MD5 57625949526f252196b089d67756aa55
BLAKE2b-256 c107157078368e4262c9029e8254f287ea851f95ec687dc78aed6d957b893af9

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a6f2e54bbad9e0831c5d88451676d7f116210f4f302055a84671ef69c5e935b
MD5 913a2a1cfb6af991bae5d98eac85b909
BLAKE2b-256 1ac250bbca04b21dd6bf208c429348230a0ef7d64091d3ee4ff2ad54fb204efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d42cd753d4d85cf806037a01e4e6fa83c8db5b20b8d0cbfc2feec3daad2d563f
MD5 54d998031f5ba9744b63141bdc222e48
BLAKE2b-256 d9bb582df8cc41f0ab52c364eaf8ba0515a952c757d41d5f3e44d7b1bcc4eda4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0e371c78b9e4715678ca17a59fc72c37483e53179c9a2d4babf85c383fc55c5
MD5 83cd98f1f2d8352c7bad109e55f041b2
BLAKE2b-256 65b075de93fe61a643638bbe8d8197d312a06e20ec64a92a2bcef1746e1deb68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93f1981e0f54e74de525266a2dca3f9740ca2eed03227b4f86d1ae8ef887d37b
MD5 997676d4232f12ba73e3607f317b9372
BLAKE2b-256 dd6d6d186f2c0faa486f2615c10f78d85969999118115564fe5efa7ba36c2cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c63a753a0ba0bb0bc92041682623cab843114a0cf87875cd9aca0ab0d833337
MD5 3a0d028a123488d9fab9178e58576459
BLAKE2b-256 dc6243f9b533bc1020814e0edab0b26ff473b63723a76fb4939c07f5693ba3a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76b8f64de36c8607650c47951a1591996dcfe186ae158f88bac7e3976348cccc
MD5 a265b4cc6295650eb05ca1aa5bf567dd
BLAKE2b-256 7a4646704ab52f3a334d5340d121f0692196059b31af27d1dde9279a79c897ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f444c482e817452ccb598140c6544c803480346f572e0b42fece391ed70ff26
MD5 5f64b745ae8e381ecb3f8e2bd25e9283
BLAKE2b-256 dee366e4345a39fbc9efb81191ccba58debc18aae03fbec7048a59624284377b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dba871b974ebd60258cf723a096a4170cc1241d9a32273513fc9da37410ff4a1
MD5 1e4aea230f19ad9db4d06be796f9ba11
BLAKE2b-256 4ad29c889337dbd812a27725c84773db187f014482708aa21d1f4aac17afe805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b7c3e47b3eec883add6ff6d8dbcc314e7bacd73c5146e4587aa3610a1d59c1b0
MD5 14108d67914998fec7224025ffbe4a5b
BLAKE2b-256 2222b59206aa280f7cd8b6838393765da19648258c0f7d0a65513ea9ca83d373

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 21.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b60488f5ec1d9903b3b0ce744b76c570e82cb1b53d3045df74111a5d5bd2c134
MD5 3f0f5f83941ebc711b345780cf0c95eb
BLAKE2b-256 fe9a8ad1c43268fde062e717f5f16e7948c6fc31ae885a90061de79e77d01296

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 de94a0fbdbf1436a94443be8ddf9357d3f6637a1a072a22442135eca634157cc
MD5 e3d4fd8b3f4c0e0193184b86f01c3626
BLAKE2b-256 c171d2e5ed355140178f61a84a102a6b4b30e80da355d86172fa1e14aa11d599

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9bd0e4b5a0bd8c5c7137b2fb96eac1a36fca65ab822bfd7e7a712c5f7faf956
MD5 241977bf1ab1b7362956cdc29c37af1f
BLAKE2b-256 6a5f3ed30df0b6ac34b48ecbce8a7c633a05720b8d3b446d3ec518a947f8f60b

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7bfbc714b3c48f62064e1ff031495c977d7554d9ff3d799bb3f8c40256af94bb
MD5 5d9aa0eef11504c9d03de01288f0f5f5
BLAKE2b-256 8382f157db3b867dff34d586948adfc48279ccc8011c2b2b49fb9a685c80da4e

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ef96546415a0ec22534ee5ce30ca5e0fefc1c1b9f69ded167748fa6b2da55a73
MD5 e5e38fe30e3163b29199301136009eb7
BLAKE2b-256 06ff636262e75da46b1e07ef0e5b27774572245bd20df97d3b409836ea40a3c4

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c32869095b412d401ad8358dbb4d8c50661a301237e55fa865c4de83d1a2b5f2
MD5 c9ab215f7d6e890c0692cd74ed58e200
BLAKE2b-256 1d2d84ffc08d64b1f5fb09502fe5b8e6557b864c669e330ab65e7f2dded1e741

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec1e10e02eaa8df9f43d6e4b3d201cfcc33d08d263f3f1ad59e8433bca4c25e8
MD5 a439e309d8779df9184282f0a02426ca
BLAKE2b-256 ea666043f47f5703152339b11d285ff621eb73d383861289df749d1b84563f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98aeff9c038fd456e2e1a789abab775a1fcd1fd993170b1602f224e8fb8bc507
MD5 7aef20c3931a9c8f318d073d0c5cddfc
BLAKE2b-256 d7ce038d537b8c41caef11a9ee6815e4f1fcf59aab1f222ee48330eaa15d2b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32acf786b0e7117b1d8ffc8e5a1cfab57c73798658ed02228b5e9fa71fd4eaff
MD5 06bf642c7710156715972e2b87032bd7
BLAKE2b-256 e50649292341ec3da3ffcd49a23a8fbca4f7a931c37ed00e1521136efcb3dd57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf6c2ea105477a7ea837381255f884b60775a8f6b527d16416d0e2fc4dd107d6
MD5 47ed7a326cecf9f9c4178b63087f755e
BLAKE2b-256 3a1628ee85a8a5835259ae427eaf6427a00338651a695074e8a4af657165dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e2737844ca1c2477808f2612093c9fad68b42dd17fba1b348c95232cf895d84
MD5 7c8e0bea237dbf74db1b034f10589c7d
BLAKE2b-256 bfdabed1270992cd1d1647de9e9cd4ee3902f4c21453de57ab5837e6183ca37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb89a866e61c81ed2da3dc7eaee2b3e70d444aa350aa893321d637e77cda1790
MD5 f755f6c8bd210b41aeb2d562193e5533
BLAKE2b-256 21763a3da9911a9c98600c72095093629d4646cbcdb4ffc1f2519170a476c801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e0b02238141b685de2e8fcf361d79359a77ca9b440e566280e9dda875de03d1
MD5 a6b9606966c9e105cfecc3f2a8f5a58a
BLAKE2b-256 75bd28ecc23080e5b74d7bba977829bcd27eec3207809ee6b359594a4d33ab84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d943c754273fda5908b6c6f4c64c9dcdc4718bb96fa5c699e7fee687d713566
MD5 5d58f2b8b911a4890d1cc13d959114a3
BLAKE2b-256 649065251dbbf742c6c8e19735f232d09e1f13fbd033e19d1397e1d46e8ac187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 80d98b1d21002c7045ef4c7bae9a41a7a5f6585d08c345850c32ec08d05bd8fe
MD5 dfc19de7ac83a477cdda4d6f73f55d9b
BLAKE2b-256 3b89ed8072ca29a52a01a6cf9c8d68141effc35a3a1d511dd6705f15a585fea0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 21.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3ee37cff4a3d35207e4c385a03be2adb9649df77eb9578afc4ab37825f1390c0
MD5 4d54cf1bb953fb867ea285cb629d7cb0
BLAKE2b-256 dd1de2bb5a5e2941a22e02bcb1c1397409a7be8b31aff76d8fc137e84857e3f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a5a6278f254d688099683672bec6ddf1bd3949e732780e8b118d43588152e452
MD5 a6ae95100d24bf4037bea4f419b7f34a
BLAKE2b-256 f5241cb537fdb83852a23a0d955ea234f25f1c001e39d8a625b4abb9a9c16620

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72320d24b9f22f0f086103a2dd33f4f1f1c4df70221c422507f67000d6329da8
MD5 75691d833af9535ce11aa5a41e02993a
BLAKE2b-256 59050bf80b0103861b7499071f55d19f5fb06f52c961eeb5744cb68e7a52c1e0

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ed3fb25208535e6470b628f52dc7c4f3b2581d73cc2a162cc704dde26bbc89e5
MD5 ddb25e6b148b8997e6fa51dedb2bb3dc
BLAKE2b-256 ac406c665f463e7991707d1ffb89980b2602b0658928428a0726eb5f5fbf73ab

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 adf1cb0f7002aea80e3cbd5a76dceb4f419e52f6aba1b290ac924ca599960d42
MD5 fd729cb2eefac206c4b814387a3b2d50
BLAKE2b-256 023cba5f59c2e082e4ca03ac78b5f290e99a3c648dde6d7d0b77a9a21e8370cb

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c70f18645749c339379b3c4e2be794b92e6011aae4ffcc462616e381d9031336
MD5 adc852ce98d522d4b88277e5dec5f1cd
BLAKE2b-256 cf47d672d0127a6cc5d7871b7984b3f19c11b34ef3d906d178ffa8d0fa54222a

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c02fae94b9a2b27bc6656217dd0df9ac6d5d8849e39ae8ceac2658fec1e0b6fe
MD5 fd75d2b0fc51eba32a8527acf5aada47
BLAKE2b-256 c1aed1db87a45e010d4fab99f7cf5085fbbc1d03bbb04c2a990ee79a7b5dc1fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66a25a32a63374efac5242581e60364537777aba81714d5b49527b5a86be0169
MD5 e726fe6d486db03ad5c4a749f36352c6
BLAKE2b-256 df69e5e0e3ef93df5c1d67d8c848379809d84ac28e4d09f7033d1c4c6e4d746e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85bcacc03fdf1435fcdd2610372435782580c3c0f4159633c1a4f4eadf3690c2
MD5 3e072b2610c483b2c8679ecb21164102
BLAKE2b-256 f6be5e91374a5aa52147f337f3be4a9e99fe89dfe873527c49a871a6332be758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fe7b283b8b1c38e97f8b810015c29af925f25e59fea02d903b2b17fb89c691f
MD5 57138f75db3cf4fcaab435a8b261326d
BLAKE2b-256 a3e0071a690753219068f465ecb9b2ccd536da312c33b5a0bee058a20267ff60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b865e5c6fba2eef0a60d9e49e70aa59f5809d762fe2a35aa48afe5a314bfa145
MD5 7da72ca8dbd2ec843a65475b88f17113
BLAKE2b-256 fa8b2eb7a8e1023789fbbe281e87baabc3b0b3af1685f83d72649ee6a862dd03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20eeaadac0ad7b9390c4bd468954d79626be853c92e8df99158240f403817641
MD5 1b095f6989a4b79e9b3d7055293fd7fc
BLAKE2b-256 d0d592de178d900ba33adf7f7e7543d41914c3e43ad192f12eca110ac3497544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03c6f4501d8559b838be0138e5e312dda17d0db2eebb5fbb741fdc9e73c21c4f
MD5 db5465bc820218a690908a2590bcb8ba
BLAKE2b-256 0d0bff550e597fbd25fe72e57d267776e10f374fb0eba4bcee05240aea5e79be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe49dd39922075536f06aba35f346ad3517561f37e7fb18e247040f44e48c18e
MD5 3dae3cc7c7472f6258c9dec34e2f63eb
BLAKE2b-256 ff46657739c935ec803b7d12c47c6b7df8cd7835f02ed43f407b31e255ccc0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6154d5dea2f58542333ef5ffd6765bf36b223210168109a17167cc593dab9c69
MD5 a284c48aebedc0c6b399a761839858ce
BLAKE2b-256 a9ce81e7eb40de108561a41f3262e64130c55c1aacd31f5fde90ab94606bec61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 21.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c3b80ef4185f64a7107d8a6954ba756fba2b955700021af7cc1231b7602b3b6f
MD5 fef91c8f80fc61c9fe2fd7703d69b5b7
BLAKE2b-256 1847270b71f51874e86696e4c13f62df26f5b0785a0a3f50c480139b2cfcd06d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 96999841cbf20ae015809ac491d387118179270b7d7dda336c7333a2283c9822
MD5 5d6cc3d8efcea8cbb9104cd471367be3
BLAKE2b-256 65104022a5c7942583f5f7c17a0e9fe1c00399aa0c3c39cee25bc2e81afd487c

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65d3f1533b4e3fd02dae821f4bfee75e6a1d955bf34c47e32cf7924e145beee8
MD5 7d8364b00fb69fe64ea04c5b4ed2697b
BLAKE2b-256 fb8b241f1c27e1eface502ecbcbf149002e3fb2d865196b3da6dd754b3d2e199

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d60e956ebb6960a5db480db7b9382ce3942c660bf922b3803d66896dbaef5dbe
MD5 cd97cccc60ae8d64da853aab21c2042c
BLAKE2b-256 02ee423675ef02059362432414e02cc255e1d17864eb718327f02fbd0eebc7c3

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 757303f4c8115b338f8317dfeec836525e097dc937f7d43b8dd316c7419b1301
MD5 29d14885bcc75458b1ab87ce0e23dcbb
BLAKE2b-256 ae78d6885e8300d54707950db1fab6ac69880f895bde3eacf1109f7b7f54914d

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ac2efcdc1c5e3ff1add167e4dd9646f266d10dd2a7b1ae1f2a021f5e95795b7
MD5 18031df3cf0deeb7f9028466ca2cd017
BLAKE2b-256 3df9cd821bb64e8978a712e493b8590a83a0a4cbe352ad728cfe844dbd3ce7d8

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b83937f8b84310fe4caf89b81622618aa319c0f9d67d9efe340d0e67d61acb8
MD5 f635abb6e569aa38b9ad06ab2000bfc3
BLAKE2b-256 a83bcbb912cf7cf3a6a463d0a453e1fddc8327c878b3160c40c099a3bd7f4ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22ae61afcc1d7c561cc927a76cc41b7707eee4861871569a79ce093ac332e429
MD5 b747d524abf640bcff5b7b706a981900
BLAKE2b-256 609773bcdaa5eba8c52556f4c6f18aedb65d7f0e49df83f9af0ae20b41de18dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 727215b75a669eeba3518b37a640c2eaf9f56bcad209eee516afb632a7b19965
MD5 b194952b4c81b2be04e7ac444ec523af
BLAKE2b-256 1c26c371de31d73a457ba6c02987a1f69551f00adea95e1c09dc4e821fb2feef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff714f4efc93644481b23fd0da8df7f8d60e93604bb9b66590e29b6bf3642b22
MD5 17ba896a57f87c187748c4b120947609
BLAKE2b-256 52e27645ff33dbd6b41cdf6b7fbe30c23bdef13f3684d7254a4e5cf7c1798e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4b8a3b92fe816b713d18535a34cb5a5aeab3c2d13cb2ad19f115a406b5651bf
MD5 12cf6f3673c53a53c7b6ae46b732cb2f
BLAKE2b-256 3c51af21f6de6a9b3656a16108ecafc6678c20c6f642a830ded505fde7991f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f0af1513d98f80b4edb65f2ec1536c06bd1fa7b553adb4bc5f2e18466203038f
MD5 ba03e377fd08a945358b4d6f35abc379
BLAKE2b-256 3e68eba32c89abf3d8293ff91d0cde8089c7858b0c8969c9550af1e481544319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e09cd080c5985a41028093f7365e88194f64ea7f0c37fdc2154f0006f66d540
MD5 5cf9e7468fc5e971f42a8d44289f807b
BLAKE2b-256 91f5c7e0d929ae701115d0eda950fa8f48bafa485294ef22ce3880c919b57283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1411e49f247e28f03607fc26fa6c976e935a0e6a9de63c0ae1d80a76fe06f4f
MD5 91945f9338de8c6a3b7d31dd38003908
BLAKE2b-256 ce9cb72a154574297a4a9883d441a329f2cd958495d83a22b757405184016506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f9d7fc07a083d38d15aebaa3f2b7acab520330b59e74a3aaabe74a25e01bf582
MD5 af789bd19fe9165d21689cded67db2d0
BLAKE2b-256 068cf4275ceed9dc5238646601fc1461e3c681460875159f5b0ce8ae0aa2ffd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ecb0d7813a576570f9fc9d192f4690f61a151f370c9a3015811a69b99fce56c3
MD5 8479090556f2768d94cba3aa5417ca9b
BLAKE2b-256 288774c5f63221780d50be0ecc3714e62743ffaba810b66bdc4a6e948eaad6f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 03f3fa16c7b285bd053ba6b013d7e642a19318f8f291338a35cdd2237da47b70
MD5 0051a1f3e08e4bc5156a0a492ea088d1
BLAKE2b-256 9f01c06668f189069049bb7ec5e05a231ec85773779fd2f9f7c0343ca5703c3c

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cee9a3fdb067054fd23799ba010de03e78788d6cf2bcd1b4edfe9e2363b9cde7
MD5 b76520b047a4e0a7d679a44d73edf883
BLAKE2b-256 e77912d7622ca5523bb32c0d0dc8d90f28437e44662c3abba83f663754778e2d

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 77df8d0d6d0e98e74afaf1e75d890b32561d3b4614b674e121f30f4e92197d53
MD5 babc5a54086da32387439c0b90bb755c
BLAKE2b-256 29741ab09a32e4a30c49f23d210d99670069f8191acb76ce5ed97b261058648f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8a574484a279827703aa3e8bf8d0907bdc5ad598b09c0b7af356e33babb35813
MD5 923f5fd4662336a6c56e5b51d324465a
BLAKE2b-256 fab790f804b0f616a3315d1f1b0cd68e43e1db640f14358e8753759290b2705d

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5c9822f42f195397df3554d13e6a4acfec201f68de3b31d35940d6232c43b715
MD5 af57523da8d1b286741545f4a0d044c1
BLAKE2b-256 d1030e50c123d128d7e8034f112ee3b1c4f3817ad797e7e27f9314c5f376d3eb

See more details on using hashes here.

File details

Details for the file hiredis-3.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a4878673d8f1167829ca0cfc204faa480f85acc46a07de4dddfa188bfaa28e0
MD5 73fd8f19659a73bc0953a8a6f9922ac3
BLAKE2b-256 cd31700ac2ac74b1e53ae46452a91e929f84440d9d80476b23127ec358d42e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 763d36bdd554bea314b6b09b38edfacb579b3a349ddff496a995232f7bd5ee3d
MD5 ecb81ea8a8c11bf6d3f9408ddae38d3a
BLAKE2b-256 33d7640546e076f3e2352a4a68e0713ca8a416cc7cfb4a9e72bf0296aae0a623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 217e635245894c8d1bd827e6e0d7a59de703d0884cb41396fd22f73f9d134ee3
MD5 647d546b1fdda3233614a714600eb0ec
BLAKE2b-256 2ae73118bb7b1c6c5b8b20b1cd81924044deed777101048ea4141b4417bc5e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8dc575624a57a7e8a88e3c72a78c201bedb864a94ab23d97ae2395adb3ec81c
MD5 1e1f04c3d62d1e34b678948885a5db22
BLAKE2b-256 179083087d8d1d32be4a31f993a5678ae013597200cff0b5fb99d011dd137d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b6c1780e4839249ab64100af54cd63f6818a1d4a5e2d2a772caf079553902e3
MD5 783dfa6988db4925755f0595471966ab
BLAKE2b-256 8fc54b86667ad5b240996627b748ae5a9ea926403ded468580098a184c4fade6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 afca4ce7dca972d990b542bedbc61561d360b5d2565748973c58ad90ff492292
MD5 9dca9e21e98cc3316a03dea13b7b90e9
BLAKE2b-256 aa95dde09fb10f0b3479b619328659f26002fa86b053b99a2b1cdf082a98d593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b98f8466d3e5e6f09604aceb3a290085e520d0a8ccabbe076b4cc7b08bc17f02
MD5 ddf52bd1cb97a879693a45a7f705f189
BLAKE2b-256 2fd4ce0ab6c717ae07fa1208ced54af32ae49c4773c55b6503a839e8b3b4dca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 747de1f53439c2fd3cee9f0876f197583630950c60afa9521d2a28ff9513b941
MD5 40c3dcaf23df40e83b7f3ebd9ad78a09
BLAKE2b-256 f94efa8989140674dad69e7de42b21cf432da884bb2171dbfcf0d11b83c0dd86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.1-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0f594b790ca6b4cff22c53bcad894386c6bcf1673ead1f2ce6b8a47ab67650ba
MD5 217ff645bd00170dd4c2614994eef36b
BLAKE2b-256 6a029a7e77df2eb37be4a7aa45a7832f5d901fbd9d8dcc5e64b28027744e0f38

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