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.0.tar.gz (89.1 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.2.0-pp310-pypy310_pp73-win_amd64.whl (22.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-3.2.0-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.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-3.2.0-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.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-3.2.0-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.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (56.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

hiredis-3.2.0-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.0-cp313-cp313-musllinux_1_2_s390x.whl (169.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.2.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (43.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

hiredis-3.2.0-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.0-cp312-cp312-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

hiredis-3.2.0-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.0-cp312-cp312-musllinux_1_2_s390x.whl (169.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.2.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (43.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-3.2.0-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.0-cp311-cp311-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hiredis-3.2.0-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.0-cp311-cp311-musllinux_1_2_s390x.whl (167.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.2.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (43.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-3.2.0-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.0-cp310-cp310-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hiredis-3.2.0-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.0-cp310-cp310-musllinux_1_2_s390x.whl (166.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-3.2.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (43.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-3.2.0-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.0-cp39-cp39-win_amd64.whl (22.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hiredis-3.2.0-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.0-cp39-cp39-musllinux_1_2_s390x.whl (165.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-3.2.0-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.0-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.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-3.2.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (43.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-3.2.0-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.0-cp38-cp38-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hiredis-3.2.0-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.0-cp38-cp38-musllinux_1_2_s390x.whl (167.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.2.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-3.2.0-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.0.tar.gz.

File metadata

  • Download URL: hiredis-3.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 889e8820e27aa3c8e92aa62fcce0e050985cf19a27bb0d5fabbbed1cf73aca8e
MD5 6c02afee5f3d19eb708252d2980d0b27
BLAKE2b-256 24c95085131f1739143fad09708fc229866f6f45a1b8c137e8104ac4be2330db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 43d1cd5b9679718ef644d465ba65d27af03cad2fa4cf102574c24bc4ba9f3682
MD5 830b5938517f4f8f30feaae9a098e28b
BLAKE2b-256 3e8f5a35a88287d26629602cde1029d5b4e4f0137fd60b3e355d250b281d8128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5df3b136de749b8798337bff7685b96f20aca2b0bf6e455973586ab5560386b2
MD5 af228b5effeb3e99a8ae608571deb07d
BLAKE2b-256 e260c5cfbb98fbe6646dddb64205c9f32ae07295406e89e271a662d8a1925cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca24f0689316f742156251e3b188801e1122ed768fba694673da702d5092b44c
MD5 21f354189f887c889214bf019b941a41
BLAKE2b-256 a5a50ec966369d097f42309a14628038e2007bb1b5cb37297b5749fd46718b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 393cdb7a35526f246784671d80c623458771de952b5c807f3baca578c3030adc
MD5 f4be45b3b741a7dc577cb9a382647c19
BLAKE2b-256 c9f040ad581ccf65feb388c33be071a20eaa7328d0131e3bcd378ded69c6a949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfc65fa6388e689fe0752ad53ea38c854ca67d1990e20c797cb79467763bb0d8
MD5 5b3c4987871964a4348c9f8c269d6722
BLAKE2b-256 755e2910bf2e2428454e4284c20d4532909f7c95b1dfbf6fa03dfc9478618f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5bd0fe67c4f850e65346557ace414160b604a386e9cc96a7eb281ddcfac84e09
MD5 ff5656745f79f251980d1470bc742336
BLAKE2b-256 c10dfdf9a1a22d2d8bb145d8c9c8fd68bdceeadeeb24e1eea9b151087fa37c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5ba35fa5e0078c13231eaff46e772cd689a0a734125b95fa64a26232e51daaf2
MD5 d73bec88f578902416dc527c2e3ee24c
BLAKE2b-256 91d6fe61c263bd9ffa0a03f2bb1553dfc3aa35ad16249fcc8c32c500a9a5bf85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9f2957b276db0fa0b5f0e952e3558e8a9dcc961e934138faa86f039e118599e
MD5 5fdc78a3da9497851a5bc3e461325358
BLAKE2b-256 a261a00c3af3ff6642ada623fc343d7764e2507560a701e8350d982fdb4822d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fa127aff0d841089bd0bc1d3c81c9b0cfbd4df4b882c7453810ad3ca3859578
MD5 c43cdb7a0b11ff1e61e6ca6d2fa25402
BLAKE2b-256 2b772ec4fa3e85db90bf53894da9ff81917a597ec91dc15b2dfaff9b57a5bb76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d9efc27210f9579064e6ec6127065086d906f82de252a6ffb428acf6ae713d2
MD5 f32c568d48aa8969761935f0080403c2
BLAKE2b-256 c6c078596bb6eaac277a8114f301f3d28cff34f8167a7980b807649eda000414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47310111bb332fe102a0bf013975c469d50beb16074da3ea0b716f678b87e100
MD5 b829c55ac60af641e9abe36fbcd710d8
BLAKE2b-256 8ed44b07d0db8f1f659fc5e8b77d46bb8cf755f12b12f6f70d4d95fac3e73365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9b3b6b82e52a290f39e01ec822cb14eef3ed817a5d399bee8355ce49b7cddbee
MD5 992f94a1609a4c48f2ebdaf354dd2148
BLAKE2b-256 35aede3324bd11a32a938358bb4d1e6b8718655273ac165ad21f0e5a3b943179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d5ed64c59876b617dd3d176c696df5aef24626cda8068166694f6057ac24f891
MD5 cb1d220a8524d61f2b39025a699eed7a
BLAKE2b-256 97d1ea6a0f18125e29cc8745050a18c594c556947747c922269988773e6bd026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ab8a0e05513d68ccfbbcce87782f5dc7534f793f96c81f00a2a3826f43d9af0
MD5 19467f67635d17e3b836fde15abe25bd
BLAKE2b-256 185b317255ae3da5df1933ee841cfa7f0682b8198b72d523933bcacd6ded0499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25a48de49bef6e010f1f49a752c564d386af3f46daf4bf850a9de308c172ac69
MD5 b9e8a34887a9014b7e41557d92508427
BLAKE2b-256 5795515ac07c9eea5836546ed1410d0bd35f2572bf4b8b13b04f64870fdb6494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99af3e6ccc01940cab6e9e8624107062590bede2ca5e2a7a456ce0d4af8013db
MD5 439289a674bcd1315d7beef0ff963851
BLAKE2b-256 22ff53a5baaab863c3e7079a37db8c49c5254edd0e7e41f875d3e4147e8ed6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fe229a78b1451851a416ff6d8ea1edab17d78a07b6106f963fe11654b28cd73
MD5 ae70cb117a8d2d9d23d73ce9d783aed1
BLAKE2b-256 a445a77625113470f5d0a82c3f7164dc367aa8f03abd2f17b700f08528d01779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e9228334a7e5a3f200add73f5d1c2df5ed1ae9b80bb71a8278d290172e483210
MD5 af4b3f1628edfa1289c35797fc0bb27d
BLAKE2b-256 6c0100985e7725330d0ae0f5d5efef77acedd9769ae7903ff5c164f8d2f29c59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 323e8a9691db48b176c4472eb826c0747a7825c1a163de762ab73f81240f7783
MD5 fb3955cdb098be7f4eebdd4ebf55f5dc
BLAKE2b-256 7b9132e8cb095de0b4dd87a88fbd167fd492a3c5932e571fc9d15f48e2a1e422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 22e594efc18a1c48f9744a0ad640841727fb8b2f950b1f1e8d990544dd402719
MD5 44f4dd503d018f6ebf15b45e9560d4d8
BLAKE2b-256 0ac299238a7533d6628b8bd95a8d448d21810fa927391b0a3be8df586cdde100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fe9cd710e08fba4e16e0174de8535207711d5dae827290a96bada0ba82caa6c
MD5 337494021fac11ac2ebcd503c63c010d
BLAKE2b-256 b98582177a92ab94bb3a3ff2258bab6ca476b1e657757144f96d9e7d4d5e8a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d334b2d911471eaf4578a5bfbe23dde88c621d20a9e97f90e352cffbf91509d9
MD5 a62e265765cfc291979689214234d89a
BLAKE2b-256 bc5d51f8e1ddc931f0be869feb28ee008480a12bc2ea3392cef11240360777ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 010bdd4211161e8e9af96c9bfaf10576422f194ab4babda9c0bbe06af3370b55
MD5 dd798d385c120a130a817f2a3019956a
BLAKE2b-256 1bf09b8b14fdfc683c01a5a0a563798d767c4f6151b270ef4052cf55136d9f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 573bbc4649e18f2076f4ae410eeed400024eaa26abfd5fb13fe593c6f1c0b034
MD5 db5a29ef287dd48280b7fdb156236b05
BLAKE2b-256 d27018a127d05f4045457d8a655aec17238d37a09b7841d30d0dac2c992b304b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6fadcd4f4c637eabdaa13e3f7c1ce4ae78e2d38d073d927f7ec19bc2fa554a3
MD5 853de546020052cbf23436e42e9dd09a
BLAKE2b-256 51b5f9a1199eed8dc40617637a38810a1802c9b8a8ddc3b3bb66429f9f9f71f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54e569167049818e886dd42799fb4181d778ad19a49bbc1a6d1a3d5fd774b7e8
MD5 73855715c2c546e3e06964201b39e5e9
BLAKE2b-256 960ab33fc490f023a73aea94943591c6f07733d705dce45ac196689b4d8d0065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b31b32429d74bd0fc253b9dffc2929aa0dca8c8c5e3c7d6c09c5fec42fa6542
MD5 be07d28ca117d07a17922cd45ad9c348
BLAKE2b-256 f6f0934159edc9cbac82e9adc2a5f4f008ca20f1d4aaaaed08cd8d90214ad97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71ae603ffe05fb0e3455340377c32048b67a97af6cf610aa375eabec1d802610
MD5 7ca7d1561893f459a237e0940d2b0d92
BLAKE2b-256 69eb7cae619d8f950301143f137a7ce0f627f208efeb6066319a0726b0b8d7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ba96a42aa5399b1cde7ac9a25dd3a9b610490d2e003e463b805d7b5c06dadec
MD5 d4011aed9ef39b521f724a2e8a63a881
BLAKE2b-256 3ea57f0027345364632c6b76a5b79ae7bf21f6a90dcf94e05c9bbb7ddc417951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d60bb0cbbfd4c2e00460b3fdc6451847eb4b1baa7923469f86e06483152b7313
MD5 73f5c9c8470058dfc1e4ab1cc79d293f
BLAKE2b-256 45f1341c4699b4abfef64d6efa5cb0e024e7937014ea18cbd93667be4198d292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b91e7664095d5b439b6a4c5e4987d8fdef84f3f18a3af3775ed80b3e62d7a3d4
MD5 263e93f50998fe0a43ecce78e9d863f7
BLAKE2b-256 51d3c711a942f9e9b097b491f3c7d458bfed2bf06c31b45a23ba0ca0454cc1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aefcca2fac9ff510d781dd9c3e76f30d800ca4f0eaf4cd06fa8022687ec96edc
MD5 a58f22e27a93f8f4f000c6db72e7e0c0
BLAKE2b-256 532d23a20ccf42957e69ab818ffc166a6f260b77932c48d5e2d546295d5ea680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 cd2b4fce991b07e4ce72426dd359647d4c640b7febc94d00628fccf105b6b766
MD5 3edd8cfd5004cfbd60d887cd2ed4acfb
BLAKE2b-256 f411caa79b5f80f4ebab11a2d72f41fd7df9002a73f293ec227393bc51bc02bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9640ac0fa667548bc02a3c3629a7d3de7bf2c85b0c14990aa7d318ea2db8b3d6
MD5 11a82325cc62291c76968f7dcd8c1530
BLAKE2b-256 32a6973b63e3861338132e7f455b823fd032122a7cd313d579f2c81da738e2c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 998c21b58f02cb9d4dd61054e77b54070ed54e660ca17ec92ea2753e8cf5059d
MD5 bbe1b340e3c95eddce7de47976523c07
BLAKE2b-256 4ec5af8448fe3abbeb31e1d97cf6a0618d7186f19e46f2179ffba34e1f917043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a7229e229ce2e77625518c7cfbc78cedb5d862575b4e566ca3b35c4e2200b99
MD5 3bb2e6abd3e068bc1ca535cc73d0e300
BLAKE2b-256 68cc32d1883f001c28771c1baf951e1a31d6e4b6be7cac52c863412e8e397c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5e11f8f9107ce15b6f0cd513217b576cc47fed3000929dfbde0892c098a8c6dd
MD5 78831e8329f6bf45dd07fa5817f6ab90
BLAKE2b-256 b47b820bbf1bc747cd773a213fd9fa96907e6aa0ba0258d7f420a816312eda0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a9a9af7173bb60e00e82262035d52920b071066cb8f2e79616b0fa4e3b1937a1
MD5 99d4789f5c72fab0c0753368a8b7effe
BLAKE2b-256 81e3ec801e020e90bd88f3e3f6bee40f146098004e11045835d3001b340f0bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19d8957a74731b06a4f44be030acc32efdd4cdd7143644fa898419fe0a0140b8
MD5 05610950eecfe0f62b02c8da9bc1f1e7
BLAKE2b-256 9645bef85c736bc8ad1ea32c6c4b6d0b7238b75d1241c7cfcf2ada2ed6d0b4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e8af33a1154022129a8c3ad34eb8ef186812398d221b0c0f427eeda1921cdc4
MD5 703d3c7b38fe361eb364d209cefb0fd3
BLAKE2b-256 931ae03e62123a5a43d904f797bbc52c830f64d0942c144caf121b4b55d23a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6678a9dd43e3edfe9bd8014cbe3a2abe1a34698d5f70f5b59522a6f5b1c1475f
MD5 6357365e87194ca629364b91a04c6d7b
BLAKE2b-256 5940ec8fdffb8b29c37a48a34e924439e0689596bc3dad485e1bbda82cecd5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d81b41308b61ac2fa5fc1eb284a402f5aab58ec164a1cabbe4f21b36c2963132
MD5 58512af424d218b924ad04dc7315d3dc
BLAKE2b-256 dca9b57e2ef3c6ca3ef96ebf0a243d3cc64f42e483f1b2214cbe767ca56dd511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50a3b82066dd25065075df2147b5dcd86d51b4cd6fe7ed294878952ffc1f545d
MD5 4f378dd316feeb404e88b3effcb4a80c
BLAKE2b-256 eb5f40b184b84a5add1f646227d35d27671b5bd6ef74cf5369bc19e3318a652e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e32c2db41ce48e7e21256a6ab53d28e2073fd814a90fc3b5f7cc9d788e448e8
MD5 6d6df50eb266bc31579a6030293a95fc
BLAKE2b-256 9feaa26db2c12e4d328f0473c907c7943fcb7b5fb92017999ed02f39e8fbb6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3093a32bbbc220715c6688df0aafb73b814b9369cfa573b19b8b0d1d521089a
MD5 1bedda8b7aca2f8302886a65360de7bd
BLAKE2b-256 56e6bcc1d3a62ec7387cc4b06706edad9e33225229faf57c1bbc00cd29d7b539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4627bae1ef33d99188be0583f8a61a9a1680c3402ec5aa34ef435c19be3ca99e
MD5 e4935a09ca485154c66016f6caf7f8f8
BLAKE2b-256 2fd2f78988e2c131839f47933a461b35a864166472fd2d40c277c9b179042735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 459df81a1ab6bfcb6d687c650c9f8a73d35aae612cef649ecb1af286982c1e59
MD5 3d2b0f7e74615d438bcb8d6f1fab619c
BLAKE2b-256 a080ed747e94dac50909bba10da77918ce84c95e41a65221d38760b06977e168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 33cbedebd6f8a395a030e90fb11c7fc2e94677b4e969deb455e1ffd47b84462a
MD5 d0fab86aa18d2756c99d18c6e57ce9f9
BLAKE2b-256 a6a96ca80fdc9f221889499f458c0dc4d547554957f4c7dc546ae8c694d1256a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d79d14390025608ab413dcc7c54a0e5d6d4141d6ddfabb0003eb3ff9c58da29b
MD5 6520da039f9fca0fe08ade164eed6775
BLAKE2b-256 2c221ae810ccefb72e6166423ef8be05a42b09db1c0f45c7a536ec7c85b7c7bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8eae352e54076bce53dc781f6c59b539d91fb51070f6acc71300ab97367fcf4e
MD5 06bfd92dba391ba555507133121b8cd1
BLAKE2b-256 d209b4efa1db0ccce98b557c4a517cf41376f766250f5f24becded74edee773b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8555c33bd1a79f516ca263934dfc069a7881a08ba3b423ffe446bf2904da937
MD5 9c93b7f9c51bbf3ecf0b0508909cfdbb
BLAKE2b-256 cf929318d10282e0bf4d098b253c3c4a94ca1a9086a3c83e391efff338745129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 38bf4d4faa127a240ea94c049c87064d010f9778cd6f48c84902b2247f62c363
MD5 40859660338e6c173165ce2700a93355
BLAKE2b-256 8bf0d2e51cafd41cceb1a3aa864f7485bc98ed157d1379ea9d4c562a89616b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f862aa704f73e9df5ec948cb7d9434f19f8245e56372a672f5af56dc72cbff3a
MD5 e6505088cdcdfc72209ac44552b62a91
BLAKE2b-256 aacb49f4d37aff34c6eaf2c14a34160e8be175587e7036f350dadf1b67e656e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe39bab2d7f2b4d2578f2c9d7c835c41cbfdf0a5e52b581400433f583818de1f
MD5 a92053290d6070df242bd6d5470b4918
BLAKE2b-256 2426f81f88a71cc082e2b20d0458d396d5cb3d0080dd5791bfec23f0ad54a74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c177179c3a2dd492729e6ba3d39f5d76e6b456d6657db7fc44639e9aa08029d2
MD5 c6b43f915103166c4b960ca3bb5be105
BLAKE2b-256 2bd5ba53cf889d594d8213371c8882ac49b4d4f94629d63e81e3543c07adff9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fa00f001e4ce27157d7d0a2124dbb7f17de280bb0aa9e65eda46a94f951abc1
MD5 618c759ba2c74d0d09f7482ba7dda3ef
BLAKE2b-256 0043628fed2bbf059fd766d696abb99f45ebdc84b4dfbc984e51ffd2f15f38ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3373dc51507633484392ce3b7ecd906b4a755ede54ab6cec070922385156d526
MD5 48a0fd7c95e20294393c020a3a779cf5
BLAKE2b-256 d484939dd100f98a4be6d8867a06acd825b9a1463b59bca103c3bdcd8e09d883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c36dcc3f9e3819c479350b53ceccc2b7e06cd2c2e8b0d40132529b59575071c
MD5 8d0241c71c5906206368c324bd464abf
BLAKE2b-256 f8258a13735d9dbfb496227ad536573f099c2747faacf7cc48d7332ff4bfcf78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6672e215e06f01f8459f772dd8930b8a8ccbb13f6a2508a0e5bf548eac5c61f3
MD5 a4528c62a578a59f5f5e763d4c9ec0f8
BLAKE2b-256 972508e641bba33c0ea8be7113d090c9d3b7037a7f0abcbed1e10f3f1777f38b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a793b79034dc3aabdde2f2ec52cefdd702e2c7d7493329a15504a20ed24f19e
MD5 8a324155ba47d006335df1f3c9d0bf8d
BLAKE2b-256 c735b4d8faf91ec96b8374aaef53f4f2819cd9e083db7d50cc24727355b2b4d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d9f7e16bc92d203ea5a45eb9b0c074682d86a6aff78014c7cee3e8ae72addda
MD5 ff5233eb662995758f696dadceae91e6
BLAKE2b-256 9823e6f24c7f27a3fcdae75b31098571205622e469beab1219f4f29b6b3b1e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de4fdd884031ebc2810249a2dbcd3444c49fe21ec5c3cf4aa154b144e5d51cb4
MD5 33af28fec4f29f353d100387d229506e
BLAKE2b-256 33e7be65070f494d68aae88abef803164aa128e8013022cefb4b5dea8d5217f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e003033c1ee4ca79bec7cc7c7c416622e501cf62c07500c5801f526950adbe91
MD5 f0808449243076450b1d418d5232b0c6
BLAKE2b-256 41990857c3382efed5ff51f1510a71a41ea9380a8b2eb1997c9cdd9c95e5c004

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 385d30de4793b4c9a9c9baf243b806c28f9cb9fb866acbc7b23bdca5a18bb739
MD5 e9899d99c279a6e38cf65bf478cd376d
BLAKE2b-256 bdfeb44830358b589f29fafaa628d3a88b7604584eacfcba35bf6da2089bb5ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1806c5e8d8a4c12b437264cd1c7aaa863171da564338bac2e63efa8b02672430
MD5 1891fefc29e50bec4b9d4d234910c82d
BLAKE2b-256 ca4f40c192184ab405d8347e710ba369f0f1f7a3fd1cd5939ce4983c21688a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e81cd95bb047451cc2574fa79bc337bce8ec8b6da4923e79c863ada92f20dd38
MD5 def41f5467978fbfab624782303b5432
BLAKE2b-256 69b25e5c5ba0e3904cae00b190afff234e66f80024513fe0054f33641d5e64cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d23fcc82861131233ae1e8635135d5a721583092212608d05375f4dafa12316
MD5 0677f9bc5c5c80766e365ae12647bffc
BLAKE2b-256 ce0c7b164ccf21b94938e17cae6cf2a44e941f9d422eac41f096e80b11159756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f9c0f2d21c17d66367abdfb0933c7dc0eb82f993799d3f1f360fb7572d3e56bd
MD5 b4afbef8b8f8e83b9b43773c3a25f082
BLAKE2b-256 500472c9ee887adfca4c01afed5d10cea65f504a6d452a6d7d620005e4faa7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42198b787f2c6e535bc0c07bb037313f02d11e70238ba111422e8205b6e89688
MD5 cc04c26a3aac865e5dad92128c994bef
BLAKE2b-256 2119e0e83220ae1ea8cc0097b54c8e9782b39ff2137ac6d26d9632567e5532c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58267e1a1c0131f9dd9d450f0ca6e4c36c0bfb750eaecd7a0e9ae4119f13007a
MD5 fa8844fdce8263581a4085dd117ebe01
BLAKE2b-256 f988a1c87c070a2cc54b1ea4e69e32c7efc2ff59d1b3e0a889f59cc147443356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b53ded12efd64d71f7b49dacf6c8201787919a51ec9e8be111c948d62fe28885
MD5 35bd7aa01c57a358392f50f8f73d1654
BLAKE2b-256 29859e3ea648a4f6f093473d65c568298ef1d60deab8ec3c574eb5e8d7236d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d36fcb3ee10d3746155037a9d313f23d4fbf4858d7ef88fb64c53da65e1cc21
MD5 f4b772110095e720530e64be18eb613b
BLAKE2b-256 1154611659d31c41cfa9d2074024a89cb497eb1606d3d5e46d660a4f70e445ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8df584842b507bc9f47d478cb2165e2ec375a484be55979bc033d504e2c79631
MD5 8ac17d244ada9e2d59090fc0af84e2a4
BLAKE2b-256 273f7cd2627c4f1b4d792214240ac5d8a2409a5dadf8923395872db2c4588cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34183237d088dfffd60286fa17721b3a032f3079ff76b71d3f4c2b948537e3d3
MD5 83a3f3d681e9bb4481d22588ca4e4ac7
BLAKE2b-256 f56edfbfac39365fad9f5d6d7633eb339e99f88d0cddc0cf9e1d078ef0a6b854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 011ba586ad9bd355b1c1856fd1d0136f3f9f50e676a94d4a0f57ead87e66c618
MD5 03aa6270073d5209ce1d81eb40b6b6fc
BLAKE2b-256 559e691770c702dae7c919d3b570a83aa8812f812b6f00d9f1a2a4e521ac5920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c31943c4f3d3e02f191d8c90960b37e897228599471a0d8733e99700a3a6b72e
MD5 34c5b422a2326796be6f7b63f6e5b1e4
BLAKE2b-256 c55704b93a69f4ef0b72f55b710fe1c45e2d52b6baad53a49c95e792873853fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f513dfa1af1e9175212fd5437fea12a3e6e011acfd4e4ef12ea49879f076693
MD5 5fa3f226237a33c52524eb17ec760101
BLAKE2b-256 0c6a5ed7285a7dba4aa0b10bddb282e02aeab8504ce61783128581a679dbe00e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 68bae0240f508120ac1e332e311431eb11b8bf14eda01af1d4a8f9f36337623a
MD5 bee723584f5302d7973292688d8b7f34
BLAKE2b-256 02209681a77eeeb5cc00a51a38186179db61ede51027e7807b61373a422c1db9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 16a66674da66403badd18f79abeeb8029040c20b13c1c276bcca056ffc5fd8ab
MD5 35a10589794118b02c26497b0e7e88e6
BLAKE2b-256 155cc204ab0aae589b6e05615ddaf15e13b2a57382c38aebbc4b6d45e7572233

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 42c8c196ea802094d69840b35325ec5facd5fb67d8560463a38ee962c2a2aa35
MD5 deadbf82b5edc04010c912a4dabae894
BLAKE2b-256 60bfef68197f28e8099e6f55f97fa7d58e325c7b84a0f1e97493cb23b067e7c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0c8600681c00331f1c0669581c66a3a578556af6004ed7dd1260fc55698fd40
MD5 d8feef707fd61693194134aba869b0d1
BLAKE2b-256 2ced9773ad323e97e53880378cdb291bb90745df9182642e02a40dda0bb6e186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6709780b8e88e7876831a81a4eefa33f708dad3fa116bb3654fc19ab69bdf7dc
MD5 b63e1c471781a67a80ac8e8f70d463b4
BLAKE2b-256 dba8cc85dcc1d08aa235a5b73d649a20bf3cd36923d0273813fa7d619e4adff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a725dd5ee7fc5433adbdb157f194e4a1671846770917d1a3cf5ff215657d17d2
MD5 916778aa7168646d2c7b1f14b7fe877c
BLAKE2b-256 8ccaa0685e71e0b0801829d1310fecd7c8c303b0e12e47144b556fb2ab59dbac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd17415403b891b46babce75c71274ef6d4feab83f12ee8cc2959af0c3fbddd4
MD5 ada4254aa829c90f0542f1d11d5a3e6b
BLAKE2b-256 aceeffebae1d74cc1b49631f6eefe38814bbbb830ca930078cd5c3259255c327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 383e4d64dd8a0bb85d1e81b6e705ec052a58d902194e4038d84d5d64d874edcc
MD5 d7ce2d0160855840c8d95c95979e0ac3
BLAKE2b-256 1df00817d5a4f7aaa4c13acc2993a7d5f910f6694ff5d5634c0b125b25e501d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60260d3fa59298b342ec709907ad3937a9c26bc3d1a52e7cf29400dd5ddd6deb
MD5 93d3257c6600a279cb713c801550b6b7
BLAKE2b-256 c0cb82003ef458ebed73c4075fca4202190e96ee14fa073c7611acad39c80d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37bd0a40283516968f24376c9168e4bb1797aa2da993e44c5e5be75ae8fcbbac
MD5 8fdb07df3a87c23fec83fa8263a66fdc
BLAKE2b-256 a568e54805f35d7eacc781b2c60ed2466b0a876a217573fbc769d1c67cb25ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d40fc0e2f2c7fc0245ebe5129e06d473ebc55612a0087f17cce10ffcd00e76e
MD5 f6cf017ae607f63c9888a8805543473a
BLAKE2b-256 8ae93a8ecd3dcfdc92498b97aa8b935e5c0aeaddd0d5a7d9415600b5a9b083bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e686af29b451303e0e887682b72260b6f26a42ecaddea0dac69f58e8d6e7078
MD5 d77e8ef2f90c6bf6f24a6de9663d344d
BLAKE2b-256 25fcbde5c06776d9232c61cfcd90cb3fbbd721b72fb5cd6d80826e0579df3085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4730a89a1f62a05e18fe35fe72b4372d9a597d052f28acc20033d5e1705aa8a9
MD5 ad02686ffa5433e797133376edc66f3f
BLAKE2b-256 0a3b21ebc3ba698e143b955396a1e7e53d8156918903f4a571cf0691248698e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be89ce574aac431ec17dfdbaad233d9332a4b3a94157405a79a4fbb8d408617a
MD5 3b7d78f7bc6ab689d81da323f6d79b8e
BLAKE2b-256 44ec46afe9f1a23304d524dc18ea59eef540fa1afec744c2a17a1dcd6f0dd40c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8e6ecd041bfd4b47815e270cb581c7e7f25154303ae13c391df609bf237fcb08
MD5 c469b71ae9f13ad912481ad563d679a7
BLAKE2b-256 97c9987e40e40827d3ce7de7cc4d17269a34c503c327ac770bc16ce6e59d867a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e825076497baf4bc6af6a4ad5c27742a502aaf025990e8d01c9295907f5aa1dc
MD5 d97e0a0c763eec7b92a8b46ce7ef4b7e
BLAKE2b-256 131b01d17a56008a1b4430402fef0c42b820bab6a115af623350574425446f9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 470f32c6c3bae49a4e883ebdc866301c27d27003ae69af8f90d70e5c36e83ad1
MD5 0a6c308f7e160c740c624c4827e80874
BLAKE2b-256 37db0c2257cf42873132ee99f37afd84b1763640757c7c80813d9cbc973562ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.2.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b0182a09994bbadbcc961c9eab3245fd5e6f95a5d7aaa11f19646619421a051
MD5 f6304566dd8e332886482174c0908a13
BLAKE2b-256 a18667ca2c84dbd90ab306f6c5fa1fe3d1ff7325f20d3d089cc9fb9f46008986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 061edd857edf2b033eb64a49ab2043873cc43737b03acdf96bb35da483816aa4
MD5 2a4e99c969b46c746043b3f2872b49ad
BLAKE2b-256 4be71d2af4439e8b33f2b1b1adc03ffa01ce481e91f58e9b123e2e43d8386a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 24df5824a2c8cf9e68597d9fcdcf707c339a3a3bbc50ab59b453c5efd3bc9cb3
MD5 25fbca44c318156674dd5848632c84d9
BLAKE2b-256 2666492b44cfc6152d073845b9c6d1642228f207c972e6741203ea13b39fb0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5115299104c86ae5ed274aa0990d7e454211909e689cc3c865aa243333c44468
MD5 a7c8beca532c81ced995fe3209b1bf21
BLAKE2b-256 74d7cd0b5b773ec213787ea52fcda9a798fb8f4bc8841aad1717e855c16fbab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 729bc639e51c887803b6b55ed201d2b945c79e79c16ee39800b9cbf00bc2b09e
MD5 b70831a897c739004ef2466397c032e2
BLAKE2b-256 1b5a28c0789961fc8f7ae9bbf20abf31780cac1118590cdbaf10c39589d50a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 001ade48c6a0648ac5d5999c0398d8329a69316b55a1776543877fa201d7f550
MD5 5b70ad909793b62d523f8bcb91f99a92
BLAKE2b-256 f8b26625ca036fdb148ad7f6208ab19d9757663ad5ae3f5d5fed9aa8434b59a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 963948eccbcf15c7e925fe9042f029c8a56a4e01d7b145d72107467a50cb9c84
MD5 09361ca50962d8f122b1832f6fe5d96b
BLAKE2b-256 7e016abaa10334a758a023cfe333283124f8bebb290ae7e09fc4a0ff8d706ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3215a862bd96314c885c28d0c601a7f46c2deb459deb92c9fafb47ddaace15e
MD5 519d27474da12d1aac0ef3274ee9e92c
BLAKE2b-256 a31c1cf959041730abb050bc639847fea0bb6e9c8a531b023a517ca6d240c151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 655c678a8ea51d9ac47afd4072585344cf64b9c64990ab9c0772ab5876d1dca6
MD5 528d71aae1d2a4c8d5fc8a9cb32733aa
BLAKE2b-256 652cb2d0b118e6507f33758d9a2853f450c6694aff32accc5da3cf1c4e809b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dec03f3f2fc556f245b513f39dacdce33008f663fbbd03107de88a7941ac4ad
MD5 31ae1c717b3f6c96712bb7ad84323bcc
BLAKE2b-256 2518cb170397d8a0c0568e04750a4080793413c723c6f6504ae84c614c045591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c6d8d188d4380d10b1b50c65bcdfa396bb2479a81cfa1a2290637331e3b7e87
MD5 276c124d36801b42151c496c1466248c
BLAKE2b-256 4b32d05e279689d157fb4ef74edbf742a01ec5384a50dcfb33f9569713c69ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce92923c9436c9734951c149048c3a58685ab17aa30aff54f976a2abc4b84371
MD5 f5721770f9b8d644d73169c13e49d9a5
BLAKE2b-256 3ccd8c1d48eb5fb43dd32f2f7af8abd2059e4a65469029c0f96c48f65823be99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 47d55857caa9cf062543e7abb999170e40c513af43a540aba159e1cae8f100c4
MD5 a3975d5fcee18b1ea33cd94293514408
BLAKE2b-256 24ceec966192c17adda1fd4e669491695c4c2f2bd44c5470713403fe7f9fc079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.2.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e08cccf0aa43a3c24974664ec012bcf1a3a7da181dbf501dc45674053fbf046c
MD5 bcb4391b103d28efa63804327bdb1708
BLAKE2b-256 cadd6f7424912605c72db17f9a09e60b2736ae1567d235a9fb335432312c70ca

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