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

Uploaded Source

Built Distributions

hiredis-3.2.1-pp310-pypy310_pp73-win_amd64.whl (22.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-3.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (37.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-3.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (40.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-3.2.1-pp39-pypy39_pp73-win_amd64.whl (22.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-3.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (37.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-3.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (40.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-3.2.1-pp38-pypy38_pp73-win_amd64.whl (22.1 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (49.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-3.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (37.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

hiredis-3.2.1-cp313-cp313-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hiredis-3.2.1-cp313-cp313-win32.whl (20.6 kB view details)

Uploaded CPython 3.13Windows x86

hiredis-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hiredis-3.2.1-cp313-cp313-musllinux_1_2_s390x.whl (169.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

hiredis-3.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl (177.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

hiredis-3.2.1-cp313-cp313-musllinux_1_2_i686.whl (165.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

hiredis-3.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (166.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (173.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

hiredis-3.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (172.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

hiredis-3.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (183.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

hiredis-3.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (168.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

hiredis-3.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (172.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

hiredis-3.2.1-cp313-cp313-macosx_11_0_arm64.whl (43.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hiredis-3.2.1-cp313-cp313-macosx_10_15_x86_64.whl (45.4 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

hiredis-3.2.1-cp313-cp313-macosx_10_15_universal2.whl (82.6 kB view details)

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

hiredis-3.2.1-cp312-cp312-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.12Windows x86-64

hiredis-3.2.1-cp312-cp312-win32.whl (20.6 kB view details)

Uploaded CPython 3.12Windows x86

hiredis-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (167.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hiredis-3.2.1-cp312-cp312-musllinux_1_2_s390x.whl (169.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

hiredis-3.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl (177.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

hiredis-3.2.1-cp312-cp312-musllinux_1_2_i686.whl (164.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hiredis-3.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (173.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hiredis-3.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (172.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hiredis-3.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (183.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hiredis-3.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (168.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

hiredis-3.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (172.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hiredis-3.2.1-cp312-cp312-macosx_11_0_arm64.whl (43.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-3.2.1-cp312-cp312-macosx_10_15_x86_64.whl (45.4 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-3.2.1-cp312-cp312-macosx_10_15_universal2.whl (82.6 kB view details)

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

hiredis-3.2.1-cp311-cp311-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-3.2.1-cp311-cp311-win32.whl (20.4 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (164.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hiredis-3.2.1-cp311-cp311-musllinux_1_2_s390x.whl (167.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

hiredis-3.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl (174.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

hiredis-3.2.1-cp311-cp311-musllinux_1_2_i686.whl (162.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hiredis-3.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (164.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-3.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-3.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (180.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-3.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (165.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

hiredis-3.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-3.2.1-cp311-cp311-macosx_11_0_arm64.whl (43.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-3.2.1-cp311-cp311-macosx_10_15_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-3.2.1-cp311-cp311-macosx_10_15_universal2.whl (82.4 kB view details)

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

hiredis-3.2.1-cp310-cp310-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-3.2.1-cp310-cp310-win32.whl (20.4 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hiredis-3.2.1-cp310-cp310-musllinux_1_2_s390x.whl (166.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

hiredis-3.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl (174.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

hiredis-3.2.1-cp310-cp310-musllinux_1_2_i686.whl (162.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hiredis-3.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (163.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-3.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-3.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-3.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (180.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-3.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (165.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

hiredis-3.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-3.2.1-cp310-cp310-macosx_11_0_arm64.whl (43.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-3.2.1-cp310-cp310-macosx_10_15_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-3.2.1-cp310-cp310-macosx_10_15_universal2.whl (82.4 kB view details)

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

hiredis-3.2.1-cp39-cp39-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-3.2.1-cp39-cp39-win32.whl (20.4 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-3.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (163.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hiredis-3.2.1-cp39-cp39-musllinux_1_2_s390x.whl (165.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

hiredis-3.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl (173.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

hiredis-3.2.1-cp39-cp39-musllinux_1_2_i686.whl (161.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hiredis-3.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (163.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-3.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (168.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-3.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-3.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-3.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (164.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

hiredis-3.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (168.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-3.2.1-cp39-cp39-macosx_11_0_arm64.whl (43.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-3.2.1-cp39-cp39-macosx_10_15_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-3.2.1-cp39-cp39-macosx_10_15_universal2.whl (82.4 kB view details)

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

hiredis-3.2.1-cp38-cp38-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-3.2.1-cp38-cp38-win32.whl (20.3 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-3.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (165.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hiredis-3.2.1-cp38-cp38-musllinux_1_2_s390x.whl (167.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

hiredis-3.2.1-cp38-cp38-musllinux_1_2_ppc64le.whl (175.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

hiredis-3.2.1-cp38-cp38-musllinux_1_2_i686.whl (162.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hiredis-3.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (164.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (171.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-3.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (170.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-3.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (181.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-3.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (166.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

hiredis-3.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-3.2.1-cp38-cp38-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-3.2.1-cp38-cp38-macosx_10_15_x86_64.whl (45.0 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-3.2.1-cp38-cp38-macosx_10_15_universal2.whl (82.2 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.2.1.tar.gz
Algorithm Hash digest
SHA256 5a5f64479bf04dd829fe7029fad0ea043eac4023abc6e946668cbbec3493a78d
MD5 3bef98b3714e3944e452a158c7d61f39
BLAKE2b-256 f70824b72f425b75e1de7442fb1740f69ca66d5820b9f9c0e2511ff9aadab3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 291a18b228fc90f6720d178de2fac46522082c96330b4cc2d3dd8cb2c1cb2815
MD5 81281ff6fcedbaecd05877505a254bd2
BLAKE2b-256 c6a25aacf68320bfaf531afac73f62f4fc55140742a4725bf04929671ca5d1cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b7f34b170093c077c972b8cc0ceb15d8ff88ad0079751a8ae9733e94d77e733
MD5 23df803baea24be55834adbe961bb745
BLAKE2b-256 9dafb49debecac06674a9ccb51353f497300199d6122a7612f56930872076147

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 578d6a881e64e46db065256355594e680202c3bacf3270be3140057171d2c23e
MD5 3095116fade6aa373861c9a80e821bdf
BLAKE2b-256 97b053c33900139149a9b85878c04748984987b62ee2583d452b4e4d578067a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c78258032c2f9fc6f39fee7b07882ce26de281e09178266ce535992572132d95
MD5 fcb1b03e492472cc41022bd8e056428a
BLAKE2b-256 5ce6d147636edf44e5267f9e4c3483cd8d6b027fd6cf008a003c932f5ff888f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15a3dff3eca31ecbf3d7d6d104cf1b318dc2b013bad3f4bdb2839cb9ea2e1584
MD5 69eb2296d96cc6421c70d5fae2f9dce5
BLAKE2b-256 cd1c50fbce19cc5e393cf97a187462377d1c9441337684b3da1ed13ed0f20873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 73913d2fa379e722d17ba52f21ce12dd578140941a08efd73e73b6fab1dea4d8
MD5 aa0d5c8f759a005dd61a5ba549118eed
BLAKE2b-256 edf904a0a6c760d28e0b7d536646edacd6f5b4c979dd4c848621287bff5be9d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d64ddf29016d34e7e3bc4b3d36ca9ac8a94f9b2c13ac4b9d8a486862d91b95c
MD5 c915a1297d991912851aaa63be2a950d
BLAKE2b-256 7682710a510e99b5d5286977e7f8d1b3af8280ac1f2776d9354afffe82e33387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a4f6340f1c378bce17c195d46288a796fcf213dd3e2a008c2c942b33ab58993
MD5 1d14a09e9e6ec8dc0016b9744f969afc
BLAKE2b-256 150832ffa9eaafc8b7fa2d02285800d8bde4a8c7d80c70bb85696f8916c8d0b3

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f9a03886cad1076e9f7e9e411c402826a8eac6f56ba426ee84b88e6515574b7b
MD5 245dff07209971d6364c9fd048816867
BLAKE2b-256 540f3e297b4595c40974a97cc3d3682fd410889a6c63a6c65def5f55648c43e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b16946533535cbb5cc7d4b6fc009d32d22b0f9ac58e8eb6f144637b64f9a61d
MD5 b685ba580f07b04b91596f79e4bac090
BLAKE2b-256 9dfdb4a8b93d4f4db7b820e6360855c4b4f10327de0bd81fc8a8dac1adf04468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01dd8ea88bf8363751857ca2eb8f13faad0c7d57a6369663d4d1160f225ab449
MD5 1309fa8ab57e24680cdf4247b827694b
BLAKE2b-256 0e3195e5172c5251404f18ddef11c34d52ccf44ca777ee5b81ff55bb9936ef13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 33f24b1152f684b54d6b9d09135d849a6df64b6982675e8cf972f8adfa2de9aa
MD5 16c6eb5f1cd8dee20b01710e11a6549f
BLAKE2b-256 876290f062953fc240c7879295592da9e746f4fc63e5536034dc7a04aa39ab89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e305f6c63a2abcbde6ce28958de2bb4dd0fd34c6ab3bde5a4410befd5df8c6b2
MD5 32609a44cafd1f82e505b66efc4c25f3
BLAKE2b-256 81f9d5fcd4947cffa8a5237eb60e02543deb93700aa92463d5f26bf8ecdc002c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53e348438b6452e3d14dddb95d071fe8eaf6f264f641cba999c10bf6359cf1d2
MD5 481eb194069045153aa0e2f51254d380
BLAKE2b-256 a64ec9fc128923097f3f2317fc1e40d10eff14016c8962fc6937db0dca42a38b

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e5bb5fe9834851d56c8543e52dcd2ac5275fb6772ebc97876e18c2e05a3300b
MD5 c3d0345274e1c2f29c30753837bb2761
BLAKE2b-256 ff0906b348869148058801e294459f4e57405224b392916fde0f44d7d939fc35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f43e5c50d76da15118c72b757216cf26c643d55bb1b3c86cad1ae49173971780
MD5 cadb45d5ed4da1fb4d7386abc3ced4f8
BLAKE2b-256 a3cbc317183ab4dcc3842d06fbd6d0b6ebf5bcde77af38de11cddfb619e6c70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20bdf6dbdf77eb43b98bc53950f7711983042472199245d4c36448e6b4cb460f
MD5 e7c187642b4712de5bcd8861da61038d
BLAKE2b-256 916e58850ac7543976fbd63a110849ce7cc1d598c2231454c311c238c2dca031

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f53d2af5a7cd33a4b4d7ba632dce80c17823df6814ef5a8d328ed44c815a68e7
MD5 535b6ae9524edb96f74ed328ad135461
BLAKE2b-256 ba75b890c77c0a0e9cffb4c4a066b850aac24dbaf1f64a662477e769b8f512da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 22.1 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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5b1653ad7263a001f2e907e81a957d6087625f9700fa404f1a2268c0a4f9059
MD5 5f492db3cc77dafdd58e26270089f91e
BLAKE2b-256 e16ee76341d68aa717a705a2ee3be6da9f4122a0d1e3f3ad93a7104ed7a81bea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 20.6 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.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e9726d03e7df068bf755f6d1ecc61f7fc35c6b20363c7b1b96f39a14083df940
MD5 1400c5c9791ecc54c769c96034d23e4b
BLAKE2b-256 48928fc9b981ed01fc2bbac463a203455cd493482b749801bb555ebac72923f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d632cd0ddd7895081be76748e6fb9286f81d2a51c371b516541c6324f2fdac9
MD5 19c0e5054143a3c77f9bd94d99c619a9
BLAKE2b-256 8944cddc23379e0ce20ad7514b2adb2aa2c9b470ffb1ca0a2d8c020748962a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 158dfb505fff6bffd17f823a56effc0c2a7a8bc4fb659d79a52782f22eefc697
MD5 17e7cca99e8633cbe0810125cae0e5c3
BLAKE2b-256 1ac731bbb015156dc4441f6e19daa9598266a61445bf3f6e14c44292764638f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ec3b5f9ea34f70aaba3e061cbe1fa3556fea401d41f5af321b13e326792f3017
MD5 d48820009d62f5f35c4e473ee4bff11d
BLAKE2b-256 6c70a9b91fa70d21763d9dfd1c27ddd378f130749a0ae4a0645552f754b3d1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ab010d04be33735ad8e643a40af0d68a21d70a57b1d0bff9b6a66b28cca9dbf
MD5 68be0b0e389ce79b467ac89380fad5ce
BLAKE2b-256 e75b6a1c266e9f6627a8be1fa0d8622e35e35c76ae40cce6d1c78a7e6021184a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d10df3575ce09b0fa54b8582f57039dcbdafde5de698923a33f601d2e2a246c
MD5 99d1c9d69b01646bb7d20910a77e342c
BLAKE2b-256 3d8b596d613588b0a3c58dfcf9a17edc6a886c4de6a3096e27c7142a94e2304d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41fc3cd52368ffe7c8e489fb83af5e99f86008ed7f9d9ba33b35fec54f215c0a
MD5 64587562d16176e5ef95d68dc02a1306
BLAKE2b-256 35b94fccda21f930f08c5072ad51e825d85d457748138443d7b510afe77b8264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 998a82281a159f4aebbfd4fb45cfe24eb111145206df2951d95bc75327983b58
MD5 5205d51d916b98d93ea5c2f1f375b1b8
BLAKE2b-256 7517558e831b77692d73f5bcf8b493ab3eace9f11b0aa08839cdbb87995152c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79dd5fe8c0892769f82949adeb021342ca46871af26e26945eb55d044fcdf0d0
MD5 4caa1ae93d45ef68e1360764c6d41bc1
BLAKE2b-256 88aed0864ffaa0461e29a6940a11c858daf78c99476c06ed531b41ad2255ec25

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d6a290ed45d9c14f4c50b6bda07afb60f270c69b5cb626fd23a4c2fde9e3da1
MD5 3ee20423e94901c796183b6a174ea43b
BLAKE2b-256 1edf8f2c4fcc28d6f5178b25ee1ba2157cc473f9908c16ce4b8e0bdd79e38b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0079ef1e03930b364556b78548e67236ab3def4e07e674f6adfc52944aa972dd
MD5 4ce25e20bfc0309b19b7a49d742b1a57
BLAKE2b-256 f77b2c613e1bb5c2e2bac36e8befeefdd58b42816befb17e26ab600adfe337fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9a592a49b7b8497e4e62c3ff40700d0c7f1a42d145b71e3e23c385df573c964
MD5 fe5bf0cd95e338f7f69208673f907d26
BLAKE2b-256 8751d30a4aadab8670ed9d40df4982bc06c891ee1da5cdd88d16a74e1ecbd520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 db85cb86f8114c314d0ec6d8de25b060a2590b4713135240d568da4f7dea97ac
MD5 6af6c9cb3e127ec9bbe50965a9ef7266
BLAKE2b-256 922002cb1820360eda419bc17eb835eca976079e2b3e48aecc5de0666b79a54c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7cabf7f1f06be221e1cbed1f34f00891a7bdfad05b23e4d315007dd42148f3d4
MD5 a7ae64507ebeae015ef970a955ef51f5
BLAKE2b-256 4791c07e737288e891c974277b9fa090f0a43c72ab6ccb5182117588f1c01269

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 22.1 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.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7b9749375bf9d171aab8813694f379f2cff0330d7424000f5e92890ad4932dc9
MD5 be4f55257577f35e7c15bc63af1ffdb5
BLAKE2b-256 9074b4c291eb4a4a874b3690ff9fc311a65d5292072556421b11b1d786e3e1d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.6 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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 33c4604d9f79a13b84da79950a8255433fca7edaf292bbd3364fd620864ed7b2
MD5 74a1da1b3974b140a58ffbd6f325f0b2
BLAKE2b-256 2b7d567411e65cce76cf265a9a4f837fd2ebc564bef6368dd42ac03f7a517c0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4e78719a0730ebffe335528531d154bc8867a246418f74ecd88adbc4d938c49
MD5 1a64af6fabdea1fba7a26516523c5430
BLAKE2b-256 4558f69028df00fb1b223e221403f3be2059ae86031e7885f955d26236bdfc17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f882a0d6415fffe1ffcb09e6281d0ba8b1ece470e866612bbb24425bf76cf397
MD5 6447f0632ed8e17c87e722e2c331cfbf
BLAKE2b-256 c5f3723a67d729e94764ce9e0d73fa5f72a0f87d3ce3c98c9a0b27cbf001cc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1e1f44208c39d6c345ff451f82f21e9eeda6fe9af4ac65972cc3eeb58d41f7cb
MD5 406601f6dec86b234b2a9227db67dcde
BLAKE2b-256 f900f995b1296b1d7e0247651347aa230f3225a9800e504fdf553cf7cd001cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 641668f385f16550fdd6fdc109b0af6988b94ba2acc06770a5e06a16e88f320c
MD5 d8b62540b3e6ac34bee6b2ecbaa365a8
BLAKE2b-256 015d7cbc69d82af7b29a95723d50f5261555ba3d024bfbdc414bdc3d23c0defb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9e320e99ab7d2a30dc91ff6f745ba38d39b23f43d345cdee9881329d7b511d6
MD5 b0f219463bc07d294aab840869fb8e21
BLAKE2b-256 41d7cb907348889eb75e2aa2e6b63e065b611459e0f21fe1e371a968e13f0d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1252e10a1f3273d1c6bf2021e461652c2e11b05b83e0915d6eb540ec7539afe2
MD5 517621444176a29a31913908629ad1b0
BLAKE2b-256 652583a31420535e2778662caa95533d5c997011fa6a88331f0cdb22afea9ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 080fda1510bbd389af91f919c11a4f2aa4d92f0684afa4709236faa084a42cac
MD5 f50aaa6d689136f8fc21bcdeb0199315
BLAKE2b-256 da68da8dd231fbce858b5a20ab7d7bf558912cd125f08bac4c778865ef5fe2c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5cb12c21fb9e2403d28c4e6a38120164973342d34d08120f2d7009b66785644
MD5 0e71bf731d56c60f15c991a3c27f5e34
BLAKE2b-256 3bd60d8c6c706ed79b2298c001b5458c055615e3166533dcee3900e821a18a3e

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3717832f4a557b2fe7060b9d4a7900e5de287a15595e398c3f04df69019ca69d
MD5 80da8e24a1f8a4edf89f856edd623c75
BLAKE2b-256 2c1e443a3703ce570b631ca43494094fbaeb051578a0ebe4bfcefde351e1ba25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f86ee4488c8575b58139cdfdddeae17f91e9a893ffee20260822add443592e2f
MD5 61c8d4a6aa87eddb8525193ce7a2296b
BLAKE2b-256 c025ddfac123ba5a32eb1f0b40ba1b2ec98a599287f7439def8856c3c7e5dd0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8bd46189c7fa46174e02670dc44dfecb60f5bd4b67ed88cb050d8f1fd842f09
MD5 48efd184b4c23dfd72a17c5ff330dff1
BLAKE2b-256 584f13d1fa1a6b02a99e9fed8f546396f2d598c3613c98e6c399a3284fa65361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c2f3176fb617a79f6cccf22cb7d2715e590acb534af6a82b41f8196ad59375d
MD5 732494993d541095b4aa20538c1d7d0a
BLAKE2b-256 6cb11056558ca8dc330be5bb25162fe5f268fee71571c9a535153df9f871a073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3742d8b17e73c198cabeab11da35f2e2a81999d406f52c6275234592256bf8e8
MD5 cbd4fc01e182207a7c224698760c87f7
BLAKE2b-256 60a16da1578a22df1926497f7a3f6a3d2408fe1d1559f762c1640af5762a8eb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 22.1 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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1402e763d8a9fdfcc103bbf8b2913971c0a3f7b8a73deacbda3dfe5f3a9d1e0b
MD5 f6b3e54d84f681636c788f492d83d3d7
BLAKE2b-256 9f05c93cc6fab31e3c01b671126c82f44372fb211facb8bd4571fd372f50898d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.4 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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 eb3f5df2a9593b4b4b676dce3cea53b9c6969fc372875188589ddf2bafc7f624
MD5 db5805b13f02e960e0d74d7bb869346f
BLAKE2b-256 7579a9591bdc0148c0fbdf54cf6f3d449932d3b3b8779e87f33fa100a5a8088f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 476031958fa44e245e803827e0787d49740daa4de708fe514370293ce519893a
MD5 54ba25c9264622eda3014c3651c756d0
BLAKE2b-256 66adbeebf73a5455f232b97e00564d1e8ad095d4c6e18858c60c6cfdd893ac1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e8a90eaca7e1ce7f175584f07a2cdbbcab13f4863f9f355d7895c4d28805f65b
MD5 60376298d623a836226da21933be3568
BLAKE2b-256 8491fc1ef444ed4dc432b5da9b48e9bd23266c703528db7be19e2b608d67ba06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b0c8cae7edbef860afcf3177b705aef43e10b5628f14d5baf0ec69668247d08d
MD5 3f41fa35cda46b4edda282756413a3c0
BLAKE2b-256 d4da8bce52ca81716f53c1014f689aea4c170ba6411e6848f81a1bed1fc375eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dde790d420081f18b5949227649ccb3ed991459df33279419a25fcae7f97cd92
MD5 afb234d444a9baedaa6ad55c8e4bc712
BLAKE2b-256 0aa15891e0615f0993f194c1b51a65aaac063b0db318a70df001b28e49f0579d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc993f4aa4abc029347f309e722f122e05a3b8a0c279ae612849b5cc9dc69f2d
MD5 774228e6bd7ad701d1fc67f01fbc3dbd
BLAKE2b-256 435ee6846ad159a938b539fb8d472e2e68cb6758d7c9454ea0520211f335ea72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffd982c419f48e3a57f592678c72474429465bb4bfc96472ec805f5d836523f0
MD5 4b006e0b5d1a3463c740b9eba2666f65
BLAKE2b-256 525f1148e965df1c67b17bdcaef199f54aec3def0955d19660a39c6ee10a6f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99983873e37c71bb71deb544670ff4f9d6920dab272aaf52365606d87a4d6c73
MD5 cbb70e4f5c1f6ad3156e531a049cf4dd
BLAKE2b-256 83baa8a989f465191d55672e57aea2a331bfa3a74b5cbc6f590031c9e11f7491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f03e6839ff21379ad3c195e0700fc9c209e7f344946dea0f8a6d7b5137a2a141
MD5 4de38a8d0e4607cc555b9e72040d9213
BLAKE2b-256 1ccce561274438cdb19794f0638136a5a99a9ca19affcb42679b12a78016b8ad

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fc632be73174891d6bb71480247e57b2fd8f572059f0a1153e4d0339e919779
MD5 764fe637aafb9efe5c51887aacdc25d1
BLAKE2b-256 912ff9f091526e22a45385d45f3870204dc78aee365b6fe32e679e65674da6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38ba7a32e51e518b6b3e470142e52ed2674558e04d7d73d86eb19ebcb37d7d40
MD5 10928b44269affb2656f6532b75b13be
BLAKE2b-256 e983d53f3ae9e4ac51b8a35afb7ccd68db871396ed1d7c8ba02ce2c30de0cf17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fb3e92d1172da8decc5f836bf8b528c0fc9b6d449f1353e79ceeb9dc1801132
MD5 6e6c4d34e59251ede572a8b8240de032
BLAKE2b-256 684cc009b4d9abeb964d607f0987561892d1589907f770b9e5617552b34a4a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 24647e84c9f552934eb60b7f3d2116f8b64a7020361da9369e558935ca45914d
MD5 043708826f04fbce4ad3539f9b3f0f64
BLAKE2b-256 fc24b9ebf766a99998fda3975937afa4912e98de9d7f8d0b83f48096bdd961c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e4ae0be44cab5e74e6e4c4a93d04784629a45e781ff483b136cc9e1b9c23975c
MD5 860e6fd0d02ae81f227c33fb3df3aded
BLAKE2b-256 48842ea9636f2ba0811d9eb3bebbbfa84f488238180ddab70c9cb7fa13419d78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 22.1 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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cbac5ec3a620b095c46ef3a8f1f06da9c86c1cdc411d44a5f538876c39a2b321
MD5 3b5990b958b624e83b6088eb2c82bef8
BLAKE2b-256 6214cbad8202ca7996686d51a779a552fb9d16a59c4fe60b68b076907a8a44f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 20.4 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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 efa4c76c45cc8c42228c7989b279fa974580e053b5e6a4a834098b5324b9eafa
MD5 cd2100580af34d63952efe0768863cf1
BLAKE2b-256 442e28b5fffd2872e51182aec94992ff34641b6aab00c135e21da1d2f6c8c99b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d470fef39d02dbe5c541ec345cc4ffd7d2baec7d6e59c92bd9d9545dc221829
MD5 e7d44d638fa1d6eb4f39eee3f6cdd906
BLAKE2b-256 ded08d3753244bdea37ab1700db8eec220df8361d0e3f72b9b5314ce4a0471ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 043d929ae262d03e1db0f08616e14504a9119c1ff3de13d66f857d85cd45caff
MD5 86c3324107a9a3dbb1a26f9022c08faa
BLAKE2b-256 f82496702f71991d884412d7ac89577ad9caa28875e2e309f53751b8c5f969be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6d8bff53f526da3d9db86c8668011e4f7ca2958ee3a46c648edab6fe2cd1e709
MD5 9a5d81e85bc3bd602c24368a6fde35ec
BLAKE2b-256 bd2c34cb6e665535dce1cbb7077cb9cc608198f254050241b5e232d62393f6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b90fada20301c3a257e868dd6a4694febc089b2b6d893fa96a3fc6c1f9ab4340
MD5 a07939f58677b0abac4d5a081b516c1f
BLAKE2b-256 3f248a3cee0f08071af0a9632ca81a057fe2b638e7b6956c9b5704a2049c1305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ead809fb08dd4fdb5b4b6e2999c834e78c3b0c450a07c3ed88983964432d0c64
MD5 973928ebc1b582983cd1f978c8da294c
BLAKE2b-256 43143443dee27bd20f2ac88a759b67b29e7f3756a9a38bbe8084de049dfc5cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32822a94d2fdd1da96c05b22fdeef6d145d8fdbd865ba2f273f45eb949e4a805
MD5 e62dbdbc83b880870dc7e4e6878450f7
BLAKE2b-256 158bafcef7a30bf5b94936264edb7daaf12a165f2b57007e384a57ac48411886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74f2500d90a0494843aba7abcdc3e77f859c502e0892112d708c02e1dcae8f90
MD5 6bf415ff249feca0c4ef16b245e0f6d2
BLAKE2b-256 e3ca6df2cf488792ace30ee525a5444e12f432cc1da4acb47756ea5de265ea80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 186428bf353e4819abae15aa2ad64c3f40499d596ede280fe328abb9e98e72ce
MD5 1df4e1cefd1ed98fb98c94da4fd7f240
BLAKE2b-256 98d0b05bc8d4f339abaa455a9e677fc5223e25cd97630e66a2da0ad25e67b131

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1dce2508eca5d4e47ef38bc7c0724cb45abcdb0089f95a2ef49baf52882979a8
MD5 72f4e17f0498fd9dafcdd603b4b60e3c
BLAKE2b-256 99224e2e9fde2b2efcf9847a2442a21f404c4112c57cccd6a09e564524dd70f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8e7f9e5fdba08841d78d4e1450cae03a4dbed2eda8a4084673cafa5615ce24a
MD5 02b26c4f73af019e31d1453f2dee1444
BLAKE2b-256 51d038d4b5bf36bfd010fdfd460c53efc0aaef7c81d6c20f4041ca35e26a1e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9ad63cd9065820a43fb1efb8ed5ae85bb78f03ef5eb53f6bde47914708f5718
MD5 5c8a0713fad2959f153247c9edf1cc97
BLAKE2b-256 d5977f50bad0b8213a3ee7780e295cd3d5e3db2839de2a6342b3c0ceeaf8e0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5fe955cc4f66c57df1ae8e5caf4de2925d43b5efab4e40859662311d1bcc5f54
MD5 782b553819300073d4ecfb21cd7df5d8
BLAKE2b-256 d30445783d5cf6e7430b1c67d64a7919ee45381e8b98d6d4578516579c5a4420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 add17efcbae46c5a6a13b244ff0b4a8fa079602ceb62290095c941b42e9d5dec
MD5 0bf4eca87aea359fa2f11780916599ad
BLAKE2b-256 ce12e797b676d65b86d9ad56f434cb4548b1bd0ebf531cd2e36ef74c5cd46dcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 22.1 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.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0a2eb02b6aaf4f1425a408e892c0378ba6cb6b45b1412c30dd258df1322d88c0
MD5 68d9fdac0290afabdd05338849cc2325
BLAKE2b-256 fb28cc272accf8b8d405f9ff0eaaf0e40faeb03b129c4083dd7c7d17c503037f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 20.4 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.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4a5365cb6d7be82d3c6d523b369bc0bc1a64987e88ed6ecfabadda2aa1cf4fa4
MD5 03d6433cab1dd4cb46dafaa759e2975f
BLAKE2b-256 b02b5254d75f20e9b143a062252472661bef4acf7484448fe93206efa1d762fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54423bd7af93a773edc6f166341cfb0e5f35ef42ca07b93f568f672a6f445e40
MD5 795bfbfccd2441b0baa3c603989bdcd3
BLAKE2b-256 dbf74a8b29c9aa8bf8a53ddabdbbe493cc7fee9186aa80b454e8a4fbb4c1cf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e99910088df446ee64d64b160835f592fb4d36189fcc948dd204e903d91fffa3
MD5 99a7d3ba986ea77c47f90aad67e83c4a
BLAKE2b-256 d9082a47ac117360a26298179ddf75c0636610fbf983af7cc735702fcb736e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d74a2ad25bc91ca9639e4485099852e6263b360b2c3650fdd3cc47762c5db3fa
MD5 58089a0ffc6f81737f6c9346447f451b
BLAKE2b-256 850392634405243f11013f60893de70ad75cc4a8da0e17acd8c0497c2880bc38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4909666bcb73270bb806aa00d0eee9e81f7a1aca388aafb4ba7dfcf5d344d23a
MD5 2b8ebf59dcfdf0e919d801d621c77666
BLAKE2b-256 caa1485ca8457d4ecdae2175cc1d2059991f6902e50f457797740ec86c5c8261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c936b690dd31d7af74f707fc9003c500315b4c9ad70fa564aff73d1283b3b37a
MD5 94d979a395d7cdf439657e1e911d196d
BLAKE2b-256 519f93546a2a59f581d82ef3d726edefee0fb5a587193bf9961e05ab2ff64e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ef1ebf9ee8e0b4a895b86a02a8b7e184b964c43758393532966ecb8a256f37c
MD5 fcba3fffbc8124dd95b0c42f655ec236
BLAKE2b-256 6afbd1a43334d82df8f7c11ae83d357ee72f09035abc09904672538b96f96f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e26e2b49a9569f44a2a2d743464ff0786b46fb1124ed33d2a1bd8b1c660c25b
MD5 b74a3c29d2fe5dabd95e9da8f62c0292
BLAKE2b-256 9cecc141917f1d839f46035087287ed87c9be1177c895fb552d5a3c3c784fb47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e21985804a40cb91e69e35ae321eb4e3610cd61a2cbc0328ab73a245f608fa1c
MD5 a2c8fbec49bb6c500133df52c65c2898
BLAKE2b-256 ce2643fe7deef32b71527e4237895a9a067957e20208fb35b1dfdbded523a3af

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12d3b8fff9905e44f357417159d64138a32500dbd0d5cffaddbb2600d3ce33b1
MD5 db3616c01e43d53db03269d5c99c6db1
BLAKE2b-256 0dfb085834a711a79ab037695e1a024143bc9098918cc1bb8e5e24d28ec5dc20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd974cbe8b3ae8d3e7f60675e6da10383da69f029147c2c93d1a7e44b36d1290
MD5 279a86036ce8070874531340c0493258
BLAKE2b-256 dc15dd2ada1b40f1d4e6c2ed7706262e7463d69b39454eb80bac71fc682272d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e75a49c5927453c316665cfa39f4274081d00ce69b137b393823eb90c66a8371
MD5 3e373fe610f73b183303dfaf6e3851b5
BLAKE2b-256 e8f087db3b65ee30b0eee55accc37f2e0cbb683d8d22910b29228dbb13058e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fec453a038c262e18d7de4919220b2916e0b17d1eadd12e7a800f09f78f84f39
MD5 70c08691a4780a1aa41ce738ab185c1d
BLAKE2b-256 127ffd73467183267e83e5032bdd9deaee0b92a7454cb790921b184b78a4c7a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 523a241d9f268bc0c7306792f58f9c633185f939a19abc0356c55f078d3901c5
MD5 65c20ba6a0a037f5f90ecb9b35e3955e
BLAKE2b-256 f27a8e38cc79467467d6f86a63a56d768f5730ecbc6cdea4445c4511f4bd90b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 22.0 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.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2b910f12d7bcaf5ffc056087fc7b2d23e688f166462c31b73a0799d12891378d
MD5 451735e3a6195dd65ee798e8a097260a
BLAKE2b-256 a8c5b058541d32b0f71df535f100e9edc133dd5622f6338c1ae60aaf5cf4e008

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 20.3 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.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 73aa0508f26cd6cb4dfdbe189b28fb3162fd171532e526e90a802363b88027f8
MD5 42a7b2abe2ef037e5e415198b81f8d85
BLAKE2b-256 b6fc084b3edef93704e8442cbc724845d524ecafcc1a67bfe2dedd205ce897d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39f469891d29f0522712265de76018ab83a64b85ac4b4f67e1f692cbd42a03f9
MD5 ec8a499cd94ad6e47c35bb9fe6fa2c55
BLAKE2b-256 4b61233ce17c35962c2d71a90d37ec916ee9fdbc0a44bc1417f1de7cfed23450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 259a3389dfe3390e356c2796b6bc96a778695e9d7d40c82121096a6b8a2dd3c6
MD5 804d4da5b1d5bec0aa4386e718ecfe29
BLAKE2b-256 c0e9e65473c82b826a40c4b3e55565a813e0f80d4c8b0c2b899f0f3af47d0a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a015666d5fdc3ca704f68db9850d0272ddcfb27e9f26a593013383f565ed2ad7
MD5 21cfbf154f79c5d7234cab4fb86a09df
BLAKE2b-256 e1b724c2beaad9d3bf82102d510fb15085ae0f23fc158489f739b51ce44f1d76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f74e3d899be057fb00444ea5f7ae1d7389d393bddf0f3ed698997aa05563483b
MD5 5e921042439cf5f715015f23682d4f3d
BLAKE2b-256 63b83e3215cbde47337213153197f902ed137fa0c3f0618e8a6be96c3afd8414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 979572c602bdea0c3df255545c8c257f2163dd6c10d1f172268ffa7a6e1287d6
MD5 981229f83eba1520691e12bfdf87db3a
BLAKE2b-256 3f70a5dfd4c4321f3763857b006c6ce7f88fee5c6b7ae1338bf607ec5e44a436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9ad404fd0fdbdfe74e55ebb0592ab4169eecfe70ccf0db80eedc1d9943dd6d7
MD5 eee68a03b6d8dcbd1dd335a6b1adef80
BLAKE2b-256 c8e3f425b4960dc0fa0602cafa2cf1a2cbae8955c13d7389550ee37fc675b3a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bf271877947a0f3eb9dc331688404a2e4cc246bca61bc5a1e2d62da9a1caad8
MD5 0f3edd2ead82e5558fe23a4c621270a1
BLAKE2b-256 020b858925affaacd660e1ed16f0a654d52af22f0548ef5a931dc166aa1b5d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e789ee008752b9be82a7bed82e36b62053c7cc06a0179a5a403ba5b2acba5bd8
MD5 8f14efc604ab339e2858c9fc18fe08b0
BLAKE2b-256 04c240c3ddc928e5c81a26b2e1dbf70027c4e6ce34b2a0c9c4baedcbfb5f261c

See more details on using hashes here.

File details

Details for the file hiredis-3.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ddfa9a10fda3bea985a3b371a64553731141aaa0a20cbcc62a0e659f05e6c01
MD5 1a1c6ae0712c7d38d83fffb3fa1e0a14
BLAKE2b-256 54703080ade628652d8c066bde38320bf25c4bfb65c351e819776e99e5f7f846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6fc1e8f78bcdc7e25651b7d96d19b983b843b575904d96642f97ae157797ae4
MD5 55cffeb2e54c0a9f4a33c18c4f24cf61
BLAKE2b-256 b02efcc466ef275acb56fbc3cb172ca7b9b28d9691f9144d8daf7d687a6ab0ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a8cd0eb6e535c93aad9c21e3e85bcb7dd26d3ff9b8ab095287be86e8af2f59
MD5 8ebf559f6be1744ebb20d593ac0acb98
BLAKE2b-256 e2ab35f8e13589fb9ef8873c9cdb1af55d8c11d2e27449087a6a29bd04485a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1039d8d2e1d2a1528ad9f9e289e8aa8eec9bf4b4759be4d453a2ab406a70a800
MD5 1d1cb0e2065036d9d34c5c74171c70ab
BLAKE2b-256 d7e2a4d0497d27c44025076dfdbcf6a2669504fc40184de7ae1f3d86473034ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.1-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ef27728a8ceaa038ef4b6efc0e4473b7643b5c873c2fff5475e2c8b9c8d2e0d5
MD5 4c0a3764c02d27d713effab48d7e121e
BLAKE2b-256 c29e85748d15d4d02360ea2b2e5fb748cbfd914879b486fa4f3c78ba136b7cf1

See more details on using hashes here.

Supported by

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