Skip to main content

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.9+.

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.

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.4.1.tar.gz (137.4 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.4.1-cp314-cp314t-win_arm64.whl (38.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

hiredis-3.4.1-cp314-cp314t-win_amd64.whl (41.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

hiredis-3.4.1-cp314-cp314t-win32.whl (40.0 kB view details)

Uploaded CPython 3.14tWindows x86

hiredis-3.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (320.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp314-cp314t-musllinux_1_2_s390x.whl (341.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

hiredis-3.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (339.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (310.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (321.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (360.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (348.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (316.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp314-cp314t-macosx_11_0_arm64.whl (72.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hiredis-3.4.1-cp314-cp314t-macosx_10_15_x86_64.whl (75.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

hiredis-3.4.1-cp314-cp314t-macosx_10_15_universal2.whl (141.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

hiredis-3.4.1-cp314-cp314-win_arm64.whl (37.6 kB view details)

Uploaded CPython 3.14Windows ARM64

hiredis-3.4.1-cp314-cp314-win_amd64.whl (41.0 kB view details)

Uploaded CPython 3.14Windows x86-64

hiredis-3.4.1-cp314-cp314-win32.whl (39.4 kB view details)

Uploaded CPython 3.14Windows x86

hiredis-3.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (311.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp314-cp314-musllinux_1_2_s390x.whl (333.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl (332.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (301.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (313.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (351.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (340.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (307.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp314-cp314-macosx_11_0_arm64.whl (72.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hiredis-3.4.1-cp314-cp314-macosx_10_15_x86_64.whl (75.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

hiredis-3.4.1-cp314-cp314-macosx_10_15_universal2.whl (141.0 kB view details)

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

hiredis-3.4.1-cp313-cp313-win_arm64.whl (36.9 kB view details)

Uploaded CPython 3.13Windows ARM64

hiredis-3.4.1-cp313-cp313-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.13Windows x86-64

hiredis-3.4.1-cp313-cp313-win32.whl (38.7 kB view details)

Uploaded CPython 3.13Windows x86

hiredis-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (312.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl (333.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl (331.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (301.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (313.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (351.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (339.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp313-cp313-macosx_11_0_arm64.whl (72.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hiredis-3.4.1-cp313-cp313-macosx_10_15_x86_64.whl (75.2 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

hiredis-3.4.1-cp313-cp313-macosx_10_15_universal2.whl (140.9 kB view details)

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

hiredis-3.4.1-cp312-cp312-win_arm64.whl (36.9 kB view details)

Uploaded CPython 3.12Windows ARM64

hiredis-3.4.1-cp312-cp312-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.12Windows x86-64

hiredis-3.4.1-cp312-cp312-win32.whl (38.7 kB view details)

Uploaded CPython 3.12Windows x86

hiredis-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (312.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl (333.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl (331.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (301.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (313.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (351.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (339.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp312-cp312-macosx_11_0_arm64.whl (72.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-3.4.1-cp312-cp312-macosx_10_15_x86_64.whl (75.2 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-3.4.1-cp312-cp312-macosx_10_15_universal2.whl (140.8 kB view details)

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

hiredis-3.4.1-cp311-cp311-win_arm64.whl (36.9 kB view details)

Uploaded CPython 3.11Windows ARM64

hiredis-3.4.1-cp311-cp311-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-3.4.1-cp311-cp311-win32.whl (38.6 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (309.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl (330.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl (329.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (299.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (310.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (348.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (337.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp311-cp311-macosx_11_0_arm64.whl (71.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-3.4.1-cp311-cp311-macosx_10_15_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-3.4.1-cp311-cp311-macosx_10_15_universal2.whl (140.5 kB view details)

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

hiredis-3.4.1-cp310-cp310-win_arm64.whl (36.9 kB view details)

Uploaded CPython 3.10Windows ARM64

hiredis-3.4.1-cp310-cp310-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-3.4.1-cp310-cp310-win32.whl (38.6 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (309.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl (329.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl (328.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (299.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (310.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (347.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (337.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (304.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp310-cp310-macosx_11_0_arm64.whl (71.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-3.4.1-cp310-cp310-macosx_10_15_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-3.4.1-cp310-cp310-macosx_10_15_universal2.whl (140.5 kB view details)

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

hiredis-3.4.1-cp39-cp39-win_arm64.whl (36.9 kB view details)

Uploaded CPython 3.9Windows ARM64

hiredis-3.4.1-cp39-cp39-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-3.4.1-cp39-cp39-win32.whl (38.6 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (309.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl (329.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl (328.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (298.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (309.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (347.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (336.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (304.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp39-cp39-macosx_11_0_arm64.whl (71.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-3.4.1-cp39-cp39-macosx_10_15_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-3.4.1-cp39-cp39-macosx_10_15_universal2.whl (140.5 kB view details)

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

hiredis-3.4.1-cp38-cp38-win_amd64.whl (40.3 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-3.4.1-cp38-cp38-win32.whl (38.5 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl (309.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hiredis-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl (330.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

hiredis-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl (329.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

hiredis-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl (299.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.4.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (311.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

hiredis-3.4.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (349.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

hiredis-3.4.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (338.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

hiredis-3.4.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

hiredis-3.4.1-cp38-cp38-macosx_11_0_arm64.whl (71.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-3.4.1-cp38-cp38-macosx_10_15_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-3.4.1-cp38-cp38-macosx_10_15_universal2.whl (140.3 kB view details)

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

File details

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

File metadata

  • Download URL: hiredis-3.4.1.tar.gz
  • Upload date:
  • Size: 137.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1.tar.gz
Algorithm Hash digest
SHA256 2bbb55435506e481d270df8d0b29dd94acb85d11d71df4b8efce23849a4d0bb7
MD5 01acae4cf18f4656d898bdcb38cfa222
BLAKE2b-256 521e4729c6fcecb653da6e4877302ed654c24ebb297fe796deee44139bd76179

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 38.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fd46a3fdec76283264e5a564fe38ba813e962bd3af1860970585c242eace683d
MD5 e263805fb544a4a36324b0c04f69c979
BLAKE2b-256 3b8df27afaabd3fcd3bc2bd66eda3081eb7e7cd637e9f6daa735ee39db220c9b

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 41.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5ba1921fc110294a80e28e2cc145edf69f038c263deb22543e787b07394ef5d2
MD5 ca90c1aa52a23f4c4a4c17152d5bc55d
BLAKE2b-256 9220fe4e49d02322ba07c4793db839c97839114289a1aa49012acec497b55b05

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 40.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e5377c51a30a09f0e302221dfe93e6f137b0a95f0d45c7756d995408a842627a
MD5 3e3b5f13aea42174189e17c67b4dce15
BLAKE2b-256 c5e898e719f8c06e2cc2ff608aab76577077a83c887b79b2b9b8c02f9f2c41e6

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23667bce8ea8e5c300d4b13e369ef3f8d836b07cfea0dba46b839f1f1bd52548
MD5 5e56da6349be573d6f24d387092f7df0
BLAKE2b-256 24d429db21f5f89666c17a8f8708ac16e3e11d51de93d0395b76909ef2368828

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 00073e9b794229daca1089af62e6d2af8ec0a0f5540ced414eede10de2f43dae
MD5 b708d1f634b278df9e281e62dbd6739b
BLAKE2b-256 6e0f4c4842a32a3dac6dd8bea6b6ccb2474913500e2576c32361c2248f0b57e3

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 da1c8485246d0ec238d76c6689440c0e1bc28409a46592cda89f2ef1c008f26d
MD5 95ba7dbba81612230716b079380f3d81
BLAKE2b-256 fe33346dbadf9f1d136c6e22fab4c4b88389b62a555dec8e164f5c1597552467

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfb1f5806a54f643b13065c2c5d05be993401421b8fef309d36f511ed3d13e06
MD5 8c35bfd8b32de609d155e28af7abcec4
BLAKE2b-256 ef43978846fcbeec794709feed9e987cf879ec58ff4be23b76fc3eb22cc2d30d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 885220a6a495365961b8124865ccd5ea5ff7d39772fc79265d947befe418cc1b
MD5 914403796ce632633d2c413e537a768c
BLAKE2b-256 fd28996ee93fe7f3896f2eb21de6baea6499f64753a6e069eb1dafb4209db13d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1bca03bec5515ab7367fb84d5bdc3cd7bae901320eda89e059f1639e3f9e0793
MD5 109251a51d09cd24e9b37dcb51718856
BLAKE2b-256 ec3787826800deec76d4fa23b66c71300e11655dcc8bca2a09378536fe582350

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c874e1f25fff64a0cd0ac990813950d59c9586094df0ce95cfc0372a6bc750ab
MD5 360123354e62869711a95ec9d0da5a4a
BLAKE2b-256 8d24dbd83e6fe145de363642bbdc6b73e0d230392a4c200b0f74dac441fa14ec

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4eba0bacd389e350470a883aad5f6733c721c65d408b32ba50b6624025660c4
MD5 1ead754937ce825dbd930703ac36f336
BLAKE2b-256 b0e46542e44c54c2ca64512daca2ea8c652935f34c53eaf3add585fcffc65d5d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a70be2b3a2280d48a0c46823455d83a863b8285563177a76667fcd62c686b5c
MD5 16ccb92c25a6643b505aa12c610026e5
BLAKE2b-256 69be327f1a953aefa5e0eaa8c7d6ed434cfc80e1906b96177eac7c86009395d2

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bfd850dbf9c221d4a9e3eae819a91ecc8cdf9843a9ccdbc49cc94fe3f49dec59
MD5 5619c0639547598e7faca21f65586a76
BLAKE2b-256 f494a1a68fc63fcdc24693b70a52d22de01520773f70320a097f06e4d7c0adff

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fd69048bb3870b962a2e09aff2ebfd0a3a4ee868bd280404c553235c36d43f7f
MD5 f44f74147037b416da1f6ece93fe16ef
BLAKE2b-256 aeebb5a324259027129ee2a7c47ffa23e1c18a57ae5b26b4ab06575d81d26e56

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 37.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 16fb7453720d846168281619021cd3562e4d6252b39ee0dd29610ab26847a0ee
MD5 006a84834763e88ba90b4cf171f68a69
BLAKE2b-256 0c3d388cb7b58e2a4a964f0f786980f12e3439b215d20de96559e3166a1af2b8

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7cf4cf0735806049d2ada98ef0ac605e70b6bd303277857f459a8183b38b88c0
MD5 05b3e010edb6f4ed9aca7e21e97483c4
BLAKE2b-256 504c669ec7794d6f562010637cc274513600291b0652bd019a6130ca06bcbb25

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 39.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a5e68f33bfdd542f659066ae7fb4ad37d4634d67fd330903feb0088f01808298
MD5 decab79090a2ae08d461aaa349e14a51
BLAKE2b-256 3a14a701b843d53ad3df1342ad537c70efbebf6ed4ea9d8482d50895be17efb6

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b72464f56c3f40f1ae1c784933686c3f0135d15e84fa7eb90166df18577b645
MD5 eeddc6c6b97b07262ab48ed168548deb
BLAKE2b-256 9a6bdc7a99d829c8593ee02063608661c05d0a932a2c8064c8e8c76f0fcbc67b

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6fd1472d5e5d82929411ea08d002eb4a8e200558d05b66458b9fcd058214aa33
MD5 077222c2a37502d88990f12c8d38911d
BLAKE2b-256 a910a13bcb0f062938bed38b739ba28118bca97b73867777bb34adef857d62ef

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7eb8b46d2f453030a3514d8ba76edeb92b920b627f883ec3685873c018a96494
MD5 d9f8549c380786b17c5de433d9b3cc22
BLAKE2b-256 da6f9069e8da83c5482308803c28b240a2817322a46f097e18f4f65947eacc5c

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e1e92095b511e2a778302b9acd160eceb1f20d49a1c9716a864358fc4ffc236
MD5 afebb30883f3cc7cd4394157d65bd688
BLAKE2b-256 c7fe4edd184006bb27f84c990e591522dac6c6ccdefd51b12209a2f53878a7cb

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b980b63a189ed8e2a42274f260430dae2f33a4a61e2f18ce31248909e36bd14a
MD5 6f2f9ac26310c546696a59fb08eb0e03
BLAKE2b-256 958774b10908f1741b0fb5549d97518736989212487d84d6e77717a228eca0f4

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98788950e4a973b925a1b5cfe6d74736726732d8785437fcc4b80bbc563d2a47
MD5 679c3f8077d08d989e619cfdae03ec60
BLAKE2b-256 e076ca29c90d39c03d714f15db18ae428e2a664c960e5c5aa9624f086a7c4686

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 279258dfc81ee6e2235f45e2fc9af00177bdaea5c72eaca6f6bbed56812c1018
MD5 34c688a83cc8de180753ad5696cbc5e6
BLAKE2b-256 e9ab94c1a638d9698d4c5ace21f52877920a994871156a970364c4d2166c962b

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b59b49cbe1ee36e88a629a6653258cca4a89c3711b5836efde0ef1e011f0ab2
MD5 fbb0cd94147fd87920e7e327091a5918
BLAKE2b-256 3a4b6fbe51a5ea37366c3ea506a2c999ae2f3414ec78c20958da20c691018f18

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d151dd3d715cb62dcc09132e4a8f16c9ec0b0874ab9c6fca3b2cbdc09d52660f
MD5 20ca143972ce64cf9ad79700a141c2cd
BLAKE2b-256 eb041d3805b7bddf59c60695f11397e6e7d36cf1e7602fa5aa0ad927fcae09bc

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 718b86c425c8e2b3505d428ca632f9c9f5ea1c1582edcb76a77aa9c0d0a82580
MD5 39cfd8b089c802f250a516ac18a3b6dc
BLAKE2b-256 37f152d6a38baafe9ed68d1d2bce3364acc5b0010557e852a5792787696e8ae4

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c54721b67df1cbdd0f78e0421b0b9768818109fcadbfa6b4a8d761c2506dd846
MD5 b1fdef205b68c293b8628aef8641ae2f
BLAKE2b-256 f09f2850247842b08ba3f4e9135ce23d7d32fe3bd7dfa300250b7d8d86ce7eb9

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 36.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b6bef7f8753b0ab1e2a29781b589e4a64645bbe2753581cd57f32659756ccae2
MD5 aebfe4babf04771874b25300b32c9e5f
BLAKE2b-256 98c62eec5f964ce65bbf798309ac0b14509aefb479facf824a93a465575011a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba678bbf5bd590e5c5b23560e5dcc73b9bbc4ccb4639d1eda1dba669bd8c6cb7
MD5 a2aede3358d88d771b41682f5409e12f
BLAKE2b-256 233ad51b1565a82e7c2d6da375bc080bbf5a1c5614aced40527321fd0aff17de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0ebfbff143596d0b8957e67972ab14591b7427891e2d22b5939ddb1185fe14d2
MD5 26ce2d2a609caa6e7e0dd43489736c22
BLAKE2b-256 6d282596cfe03cea54e5c92bea3ab9084cd3a7f7379583bd21285c0be818ecc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e238e434d22c767b638d591f32532b7b34077267055481fce10bab1a4fa82d39
MD5 e6e344927f7123b57062072e613c654c
BLAKE2b-256 fb5f6abaecbbfe0c9e0436d5e930e35bd125d0ff6207e8b336f034aa838b3fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1e52aee6e7c9f97ae6df104388292568ce34ad5f1aae8acc843f4686b4745362
MD5 457323f7769670d7f6af7b0670368268
BLAKE2b-256 be17b311e26d402dd23cd259d9f4ce9d47d1a6eb8e9ea71bdf033ae9c082c963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 28c6f40eab7dd56dc63ff0e100e9d5d2759b191615d3134abcb48de5ff1f037a
MD5 14bd7aeaef026f8d11c2154facdac9d4
BLAKE2b-256 a20b2a2a06feec8d9013a5f644ab0b4865c15ed65354fac71f56ee5a6c531227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9186f49f2f45220d1dde7981f7766b7195497d6f3b85617dc0bc519f1e456482
MD5 00641228380b54f4d15916e77ed44b21
BLAKE2b-256 5ec17ab8574b87bbc55e979eacd60ca498c76aee7cdb6683e183bdf8431734eb

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54d077e062804fa1eb49d25032bc0cadb085c50a5adc6f6fc43262dde6428471
MD5 3bd798051223a3e702780c509966e891
BLAKE2b-256 59e51835f7fab225ae7225fcf465a1cfb1b5c74035e0e2e2c8e2110a5ed94790

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 464f27b0521375a8179e24f19889d7953a88d22ec00808714a0c78ac8ebffbe7
MD5 e9efa346e3543712de37abd18c8b686d
BLAKE2b-256 c881f2175323bb9a25a538c43f034f8220ecbe951846e5fe28063121958f605d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d94c41779ae3eaee75c1668f23d26d9eda526055e37cd9052e980c64fb4127cc
MD5 0f078ff634a1ed0fe9849c0ec1183981
BLAKE2b-256 6fcf4308ba045a27c9f9f607d8f0f7658f68e893641163bfac8951691957c89f

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 026639fa97c4b4fcc0f502454287ef1254cc1d067b610cbb958c392c46ff54ae
MD5 ce3205487215fb20ebdfa793150d7b5e
BLAKE2b-256 bcd4e20f512f034834fa203d879b627c5926ab91b2d4e27c08ed6fbbb3a5be92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d856ba70bd97db7cc136ca1dfa72b98044647d08913335949aa70477c8ebfe9a
MD5 67f0de7ac48231127e2ce7b4b969595e
BLAKE2b-256 e0bbd7684fa5a12ac02272bb71a791b59153bb710e192cb8807c231fc03c8f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2b5b4cc3e1806f44f022389ade780aa1054336357defcb87613fe5267470e6f4
MD5 97420398ed2160345d44ad7099203c34
BLAKE2b-256 19ecbd25177721047cba5f31976a2ade1cbc042d57d101b3651ab081fca55a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7c3632721df2a3addca9a9707f7baa062bb0c004a585873f461b3b7a629c2516
MD5 7fb21c21c2ef5777cafd45065149cc57
BLAKE2b-256 8929c24d310627ebb5e5642b02d373619826c893085bf5c4b23ecd18e07b61c7

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 36.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 50d821b6195c9a4ba5cda44d950ba6205fdac5a7cf03e1ac4cdf0294f2df886c
MD5 8a19352daf82f3b3511355bca6e82b50
BLAKE2b-256 2df8f3dadc80ed4f3aeabad0ef309c207ed93b6ce602557ce77ecd73c75b126f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0d11936e377f305024953ae25ba52ae48edc26fe49f47af1e934f642deb3ed6
MD5 3fc18d9f44aa6655ea2609ca9329a290
BLAKE2b-256 e302d5df4b12366a15e44857364af52db80c032eac6da4b9ffd644df647fa91b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e333eb85c9ab16538d43b2e4e1fa564244d3f0c4a8a84e7c640812419b597180
MD5 67554bb31e928e6e3881387451656805
BLAKE2b-256 4a2b91f4a42d123b2660a3286e5b853f787e4ae3088b45d53b2c0b0079c6c5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f2656e2c11339e7e93df3c0d73c442129fb1381fb709706848f1b49e85677d1
MD5 1e311131209a31f625142eddde26c311
BLAKE2b-256 6bca19c1ebd6b75c5811d77e8d17a2adb9f863c7642a3d5ac129be0d2d3bed78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 404ce858750c6e31d420818d79bceda89869f521c990b01e7ce8fcc95916eb8b
MD5 b799317230d48ba582d1495f48d18685
BLAKE2b-256 cfbda0102c1394c63e1f2b2550e96c3ab262afeb017ff007effa6d99635d96a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 90de946ceac709797efcf3278e3f004f2a60ebd6bb5761bc35d7212d56fc1e5a
MD5 bf4aa521759160d3c12973178c66abd4
BLAKE2b-256 0b09fa282ff2c5a54ba356312ce49dd276b9dc3db00b8ac6667e93f652347354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 742b4f7ce4b28820ef3fd45c7866f09e07dbf1904895eecd56b482eaa7bd26f5
MD5 0dc976648c8d6e07491ee4ec2e67acbd
BLAKE2b-256 31c3145c5a574ac98f1a32cd0473c1f699ed272de44e240f14b7306ccce4e1c0

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a2cd31cba425ae954abeafa5dd74552e5ffa61661d3c8098cc66787330c1779
MD5 66c97e9998e71a685380d13f8a530b5a
BLAKE2b-256 78b24662f0f9218d82d1fb5a58cfa8f6a6742cc53f9c25a36db88667a2ef4510

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5c3e191e6514c54f68a0b3d2b18aa6e73885393be16a31ae74b15c12b544cbaa
MD5 d1914761634e60c94c7a016f6be7732a
BLAKE2b-256 2bf1971068f1e80ca8b84c188eb1afc4eb4067f8e9e6cb574cc0afd8b737ad0e

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7b083a1deee1124a7c47baf1d3db85251f4ecd9812a974f586d59ef7d28f6007
MD5 aa4679970ea70a8b963a120a446c4be3
BLAKE2b-256 a42c71f3ffe234669c848e92fdad4f79dca1c5e1bd57b547a55fbf41a86bed45

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66953abbda35703727a596bd3a83e86acc4da781e258780c3d85dd6acc1f39f9
MD5 8c9aea7f3e89bb8c1abbd6b8348c55ad
BLAKE2b-256 38d058719bab08a0b9e8e134e18f43eddb5b29e0e8f7edb449ae564312e9323e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8efc144cc467c62c14cd49d276f1aaec5232ba46300164d59a5fdb68ba77fff
MD5 56ea45fe1970d24794ebc4c2fc02a6bd
BLAKE2b-256 d586e34e08f21b3dec802578768a9cb1d0fcfa82a83e2b69942331058170c3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7630086181d75cd4e377fbbb00ed903619121bcf30b7ae84250366b2717ddebf
MD5 0304dc729b85e448ba56107faeaa5275
BLAKE2b-256 619353617e27de296ba7734451d7261532b5c6a03492c3587e428163323980f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fd5f86d937ecb5aa1dfed21d774f5ae8f8379eed607b1d9ab0ab6e80c4717981
MD5 bc5b1195d5da2f876769ee7a519783aa
BLAKE2b-256 ed9a944db038f55c8c3141b29c897b9ef4d930b1bb9ef387d34bc80e1ef78b50

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 36.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 48facb01c32fe6234c95f1e5f9d0a730c8e0a184f86962b46369818cf28ba209
MD5 4a458c9c9843ccf57878037b55aa8085
BLAKE2b-256 ff5e501f26c2bfb103b059a498aebdb8fec1252ad1df573d732350a32ee230af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc40bae8bca39768eba82820248fcc18ae4d9bf66d8e9c7b51cca40c272863b7
MD5 19fe55bbb16a78961958c6bae81aa5d4
BLAKE2b-256 86eeb12e8726526f770e6c71ffe6da1b38d50b9387561464e9d3a0067773e2b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0dd0dda7c9f0e909e1c87a73ec3461ec3bc746962dcdfc3a7cf34d6d1bc57873
MD5 0a1e7bc357bf0dc2647ca65d0799b848
BLAKE2b-256 0a318a545f1d3269c2501cd85f6b40bc9076749cccc34dba44ed91d6b9b36fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be2cb4733754cda4fa07b8a5ee7f792f341fa830fe28f62be8c6342ffade98d0
MD5 05b45a3c33fd1a5366fb51cb6b5fa524
BLAKE2b-256 e0a1d089a9f4c1883660fe0bf68058ee840eed1ab7c0e5261955c01fef9cd632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e021c48a2f6ff58f04f3344d3dfb6511cfcb120823d6a632af3af608da907cff
MD5 868d8aaffdef40afca5b4394d9b126d3
BLAKE2b-256 3f2d5c6653e1a94a3b53b3d3b931c8856b464d82c89af8368a771c6a60090600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4148ca8973da6dff84628209ebc40722e56463425c9ec3fd18508de0a163f3bb
MD5 adac55dc0f481e5af69c3a30758f8b96
BLAKE2b-256 d564a67103137d24ef82cc3204ec58f8d76a18bbc23e0f240541c708168f00f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2dd565a51444d4016217c9be9f389a30d641955ae8227eab0c3224497936690
MD5 496d38a0e07fbe183a9a38b221fe2093
BLAKE2b-256 e66def80158f5073ed2417d26f6f46d6a91b4080c15d7720b4a160eac9136766

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 606abfff97de808f1bfd7ca2960e4a92176133229490cd33260d6a179dc62b04
MD5 5e1567eac9ce76abbd6667cc7fa5b996
BLAKE2b-256 a1fcf86d89aee8984fe8a662491e310613287164976e43fa65bdecba0717ede4

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2bd12118559e36bd38081c128b4c98f1e96d0a04890770d2750604cdd6a3ca83
MD5 f1e0b8cc5bce1a57262e0211b2aa7d59
BLAKE2b-256 8a616ec9c55197fcf8c89f77fe7cdd70b703cdf3c6173e03f583f0056234058d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8dabc962e38f7cb2e5ed934edaa57777d00d05e432a0ae9a3f22b6d64680fdc7
MD5 1f07d6b079f561359b5b3e0d0dfd8d31
BLAKE2b-256 cd799f4f1e0725aa8e751e082653857dca4bc44b026236f0bb991db2fb3a0e36

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd98896fb410dfc5c47362e5f4af04cd7e179472a57052531b44b043adf360af
MD5 1fc42874e01141102a13738045814b2c
BLAKE2b-256 3f52f04f600aba3b8eaa8d29c4f671dcc504bdcb226dccb1face84256947ca4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67326dd115b5e0bfea5a448f2102357b9957ea0a6d1f15e41916588845b57a2c
MD5 8b21db410128a98102da96882a51a6b2
BLAKE2b-256 e70952369849b7934f91bd83a47b32327532123cab21090a4ea6800c2a4a625c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8852e54d87cd2e6481c0d0a843d01b0bc46a0300e13afc312228ee4eb4cc470f
MD5 76398ac257e6365232a5cb2d6dcea32e
BLAKE2b-256 56925bbdbf8c1a47b98fa015ffe4e42aacf43837ac547dd483dd7bb1cf07cb79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8f2ccefce627b6caee2e9605ef6eeb7cba50eaed49331789301a678c3c661703
MD5 3f35aa9e841e29c3c93a96358e7a99cc
BLAKE2b-256 1da4704850cddd69db62c9f54ee46be7ebe2261525799980a4963651fe0e9c23

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 36.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ffa742a05493eefa1c8d37ea8296b35cc4c26a6f589540fad71c6f58322bc960
MD5 fa5adcb49d3b72abe7c8b4178e92c0f8
BLAKE2b-256 987017405ebac5b24eb2a425eadb3e2505dd6451b5b3c712d7b4d8ce835850ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f77015efbdceb83b1c8751d967e31fd08114af5bc0b523e3562149894bf3ad4
MD5 a123fb233db17b2085fde6f3edf1fe57
BLAKE2b-256 893b15e2f00be421c1e791e14561b92ff54a4bb2bb4038edbd29bcb9f72915bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cd9a9de43b191739b46df22c01016c842f129e149cdeb0a7f6862bfbf6f0a19
MD5 c04f54061fa031eea6f28a49bdefc980
BLAKE2b-256 938a23988c7005a5d1eccb31e0e68cd5c2619f9d6c5e2c6c640822111ad818c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c944aea7b4dc44294f90ecfd8c2b320f13e608a043dd4f654bdc728ffa256197
MD5 3aee43d8479783680739000b3e8ef55c
BLAKE2b-256 5c62c767b6b70cd7d7c447b185c115fbca16802bb292b2172990943b0a73077e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a034785409ac0a74d16c9bd05ac803a53261e0b0f4ec249ba3bb2bc159fd700
MD5 0e796e4f43f74aa67a434517101547a0
BLAKE2b-256 ff7aee2a7e884a55d041066a16fded8ac0b498b5a163e059cafca955358a500d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 392533ad3f209ad0cbfb84fa753081daa6416f45030ef3a379734311295c89a0
MD5 2bc81f0b05f26215bf3b54c286d13040
BLAKE2b-256 5120f276e80520d67b29ba2f5f0bde7851b9299c6fb2d3d42b25226052a3dba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa51ccf31c7bfcc808ed7371fb90bb1e19eea1b4c842a6f8132546f2b7d2e205
MD5 a14e6c81000dbdb59cdef87fac99e268
BLAKE2b-256 efaf03737175b5e8395082f056a5022d4de4bc8935d3201e36c13bdc6c0dd5a0

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41fd6a4780c874726900891717a16032c0cc78ba5fabc8412ccf2f4fa9d831e8
MD5 f4daa2618150a65ce7a055bc81850255
BLAKE2b-256 079a28e2051a941e92aef2625993336565115e72bb06dea2c9f11ce613445698

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c51d8c57a11fba6175419272b542428d9186f86285e4f634d180b47908f9478f
MD5 18007c8d27a2c66ffddf2c088e7941bb
BLAKE2b-256 f898a5064e7de74c74c8ee271474ed2aceb1f366a1948ede1be89319f0c10a34

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f8f5299a5c22724d440fe762acbaf21f8e825acf87793c543c26692ac110341e
MD5 94af8ced632317a5a0fc9bb283f05235
BLAKE2b-256 f676def58f2c8174b932cc8fc902b7de56efc485f520520ff40a9200eafe4d10

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40032f28be64352e6d5024bfd707f3f8d2ce1369064b1f730ce248b23f8ed8c7
MD5 a574d8daa2705a3cd77dc1277b9282e4
BLAKE2b-256 30966557d38b43af8edfc6b59bc6f7688bfc10b886c02cb3a68d4ee8fd13e4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60f648860614725242df1322ce9937cb58101b95efeff558a658963ca4e40125
MD5 14e7a270a0bf85fcac6d7a210869ab26
BLAKE2b-256 3fa067ed943fb1d88f5af5c690685445ac4b767ab4f6e6757d3ccb928bb9b0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 66958d145d6560f116542539acc625744c5e61a19ae33c840fb3d46c6b1e1c2a
MD5 0b47d39a30162a1bbd2edaf2cce0c253
BLAKE2b-256 9130bd76543476f6f6c13477184c37812a18563510627d35e3ec7d66e10a80e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 82358041521c4da1a635b5d4819c7d22cfdfa44d73a61e4fa6696057b7c9f0b9
MD5 e0d5ada5a8742b73a97e2eb45a59de3c
BLAKE2b-256 82d474e180734e0e23da6ea94abe06d067a732d1e72c7c32f572a355e6d5591f

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: hiredis-3.4.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 36.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fffa6cb2d713bd2ec45a1b68aa2ba37d01aefecf127acd323fbd5df564dab274
MD5 561c56bff6c126caa7918d2a628a3951
BLAKE2b-256 8ba4c17c349382442f51628d4151957f3357149207961ff58029c294af83d6ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 40.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8753ae9912993c28081204999f8be18847d99c67268bee8ec52bda55639b3319
MD5 027369cf9d48303490228e795de8b843
BLAKE2b-256 5bdd0ea13a4306bcb18ab0f45a5ecf62eb9c5fdd21084719f06211bd473ec764

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 38.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c00e3ad8a4cccd3258f6fc3094177ffcd3a69f7d87a82d1e32fdf9c143d6e5c3
MD5 5c50857144dd75e0683846ecc21d74e2
BLAKE2b-256 7d9b0b30a293eaffce90b27b74ec8a5a8838ca91e630e47abb12af3dd7410526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8874cd9366f9f812c4966fa1185475adf0a53b5d795a81c499619427843e88e8
MD5 cc3a3afd118cf53a5dc1162b2ad74485
BLAKE2b-256 ceddab195544376a96edbbff63fe1620abfe4643bf332d2d71952c735d86336a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 966d9a4198bfe43fb200655a855ab8f1ad60b9649f16f4b68c297f8e56c3dc12
MD5 728a69498f942a39c6d6b7bf688b6e77
BLAKE2b-256 6570fb732e2e228feb182eec38acead56a11ff05879f45297d91a4686a2c8a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b8e655e8f6883c901588f92d1b2aaa40ac438de70146dcddd8291858d17c9d2b
MD5 d9abef8e4f2f7a7540ce977022be2dd1
BLAKE2b-256 f4005fb3382df5a5bd130501639bcf77a0e1a0640d96d1f090c39180c8e6b5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19e2a62fb6650f2a7631cbe0925e3455e24630dda210b4e773e075b59129bbf8
MD5 5e22efe9e1d0f453c9925c1a1f703b3e
BLAKE2b-256 e5270caf830bb93c6c42bbad09c7ca5d978d2047d521e2f8271fc6d66450cff3

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05c9a679f2e22d64d4d624f5fd93825061c23d88f4b9cf2ba70ff8fc34781e3a
MD5 9efae9589d8014f4d8ff57c150679e71
BLAKE2b-256 3cb62da5b47518d30fa42c4aed4cd0d2f44e6bdb39c5f322995c5482360171ec

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 738b044df56eb8fe2283237ceeadd5ec425395b98cd067e9f233877f9e1cfe9b
MD5 d8c0c88735abe7f11f604f2cb572e1a4
BLAKE2b-256 33a5afb2585c80d7182bf19c495b3d8c95928371eecf3d420f9f74b22e3a1cc4

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fb971a32a2623b087ea86368ed762c5b47545173206bc95a987d2499150a4ab7
MD5 c2a773ef98759e0884eb90e47336ecbf
BLAKE2b-256 13f6016b2d9659fbaf3f1843253409b2501c99158155533fc34112b84efa0f2e

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75face2cbb978a1df104c88aacbf9ec56f6f00495d64f8de2f852148c9a23e49
MD5 67565b8b66a6d2da2aef635278f8d046
BLAKE2b-256 5f5102da40b37568c6324724c9010464ed5d98b0bafcb70fd3903cb3dcac4c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e90f85e072197049e48a578f5d4a3a09b3d0e0e0605fa0b96204659c074e5eb
MD5 c54bd5a03cb37afbd7663a0b0c3a8966
BLAKE2b-256 b0f4100e371d533c708c223b15a729bb36ecbdf957ffad2f79b697caea76f4b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 211c1a503fa100fa958f8463aea4e21778fb3d9b27423a918403cd68e76b3b19
MD5 5ed72eba135847cf776248e814ef5c79
BLAKE2b-256 d5ee465215b607fe3535b0b73a3759a3b3485848cccbf563d0be1fb890b37053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6598c6e9dd158f54ea43a3036b75fdc36427a9ba96bfa159b4169d1a5e0ea68b
MD5 98b8a3cee9a975b699ded075ece6cbfd
BLAKE2b-256 c94c152bfb78fcaf870ff358e4b5980d34343bed8afe757980c33b9d76e41aa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 556971339bcb3bd6acf21c93d28acd21600c5d792511531a602fbc7e0f361fe8
MD5 3833a3188fbcf2c8bc48b1547778b772
BLAKE2b-256 5f95860717e32a85d2915b33fa2635525694e4f0375f4c9b123c28158cb1d810

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 38.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 09ec2a32cdbb91c04a471e7d79ff98ee06185ea1a6bada44a0da1baa201c74ba
MD5 cb8e1128c8948604f6c30250a3c943b4
BLAKE2b-256 3b29faa4ce47c9d0948c19c3ade7a1f802f32ad1a7264d4b0fee6ff26acb2281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f2b0b3c2f2c584dd8790b8ebbf574fa94042302eefc1cc00fae6b2d62de5b7c
MD5 2bccd197e0db14b0777d05fad5bb86b5
BLAKE2b-256 15cf9cb46a2d97af4bbf4f548066191695187e8ae2c82921489feccc7d7dd646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 24d1c839feac4d6bb64486096fbb5a72eb43b8b0d677996e3d6b21670fb2a7bb
MD5 6fbb5ff734f2689760b3fadde8aa2d6d
BLAKE2b-256 a1f6cd78fb2415f17c94809fd7532c06a7f0cf2060019ceec3d2d93994e661fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3465347ce84bed21381072f534329f535df7f7517bb194482aa8817d9c333aec
MD5 1866fd30645fe3faf4683517c8254db5
BLAKE2b-256 daeb4158f90f7aa0f679812da02536dd2d000ef81bd85545decfe89726b590c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d84092a3e25502d505aa445ce1978c18c65e2b369b3812fa85fccf04bf8e788e
MD5 99b539dc6ca3e03e41765fa4e8132834
BLAKE2b-256 97a6d2db164eba4c9da88d7dbcec0c38573f24a7c0fdb3bd568fea0c6eeb851f

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f7ef731e65cb9d45b3c8f27d51d4b325a97a141d090936672fba5b49b5a43c3
MD5 a50136bb0db028d544a8180d93a612ad
BLAKE2b-256 2cc4369f48b8b6b77599053fb3d13cc5ee86f7803875bf3ded0b1c455c88f2f4

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cfca3c3c4410a9c127bde2ac164a5ac7c6cbb4a0875c9455221b453c7748d18f
MD5 7f689cb3940dfe6e38c1d3e534c779ef
BLAKE2b-256 51f0b69d10603d9c82ff3406c7304939a6a149ef9548bce78aaa245a8440ca78

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 50f789b574373915daffe1e8cf3536218b03e42823774f7f502dfbb3b909f1dc
MD5 3cd51a31f0aeeabfa767f151908060cc
BLAKE2b-256 0a1c1fe9453727fcff318d17c3c34c680c6b2a28fb432905fd0ff410c3098690

See more details on using hashes here.

File details

Details for the file hiredis-3.4.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e14e068d911a45321fc4383d222fac8efefc3fabaea1ab61c9a23bb90ee3b0a
MD5 d7f82f729adb1946a9ce0aca324ed774
BLAKE2b-256 83f1b9dcf2ef75bc67829b4e8a9de96f62f2a3657de2c1eeaf52124b3e37c8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be3be6c9fa4cc756c27ae9744b821473fe76989fa8429f0af63e49ce8c32314e
MD5 b6385e431414fcd58a6dfc6526cd54f0
BLAKE2b-256 9fba27d5f088a542be78aa9a931b07f7dd142574ed3b28f6887b116e6087f8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 33e48e61f93279382740e67eac9fe57c2207272f00bde7325d455078518e9d5c
MD5 dc5c6c87d5d556d1699962967cf022bd
BLAKE2b-256 8d8456df1227fc4fca4540e78a3c83369d590cafd552f86d4ec6e0f936ee7add

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.1-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e63ccac57eb71e457b90b63b0905535cc3e058797ec1fbbc1e6d56de5052d3a1
MD5 3801eb870085100e2162e7e9047e88f0
BLAKE2b-256 3d2c7f1df0b04829b1110546b1d59d063d15c4cd62301515bb06d6623160a179

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