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.3.1.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.3.1-cp314-cp314t-win_amd64.whl (23.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

hiredis-3.3.1-cp314-cp314t-win32.whl (22.0 kB view details)

Uploaded CPython 3.14tWindows x86

hiredis-3.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (176.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp314-cp314t-musllinux_1_2_s390x.whl (179.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

hiredis-3.3.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (185.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (175.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (181.0 kB view details)

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

hiredis-3.3.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (189.2 kB view details)

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

hiredis-3.3.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (190.5 kB view details)

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

hiredis-3.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (180.3 kB view details)

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

hiredis-3.3.1-cp314-cp314t-macosx_11_0_arm64.whl (42.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hiredis-3.3.1-cp314-cp314t-macosx_10_15_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

hiredis-3.3.1-cp314-cp314t-macosx_10_15_universal2.whl (83.0 kB view details)

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

hiredis-3.3.1-cp314-cp314-win_amd64.whl (23.0 kB view details)

Uploaded CPython 3.14Windows x86-64

hiredis-3.3.1-cp314-cp314-win32.whl (21.2 kB view details)

Uploaded CPython 3.14Windows x86

hiredis-3.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (167.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp314-cp314-musllinux_1_2_s390x.whl (170.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp314-cp314-musllinux_1_2_ppc64le.whl (177.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (172.4 kB view details)

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

hiredis-3.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (180.5 kB view details)

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

hiredis-3.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (182.0 kB view details)

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

hiredis-3.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.5 kB view details)

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

hiredis-3.3.1-cp314-cp314-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hiredis-3.3.1-cp314-cp314-macosx_10_15_x86_64.whl (46.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

hiredis-3.3.1-cp314-cp314-macosx_10_15_universal2.whl (82.1 kB view details)

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

hiredis-3.3.1-cp313-cp313-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.13Windows x86-64

hiredis-3.3.1-cp313-cp313-win32.whl (20.5 kB view details)

Uploaded CPython 3.13Windows x86

hiredis-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp313-cp313-musllinux_1_2_s390x.whl (170.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl (176.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (172.4 kB view details)

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

hiredis-3.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (180.5 kB view details)

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

hiredis-3.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (181.7 kB view details)

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

hiredis-3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.1 kB view details)

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

hiredis-3.3.1-cp313-cp313-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hiredis-3.3.1-cp313-cp313-macosx_10_15_x86_64.whl (46.2 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

hiredis-3.3.1-cp313-cp313-macosx_10_15_universal2.whl (82.0 kB view details)

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

hiredis-3.3.1-cp312-cp312-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.12Windows x86-64

hiredis-3.3.1-cp312-cp312-win32.whl (20.5 kB view details)

Uploaded CPython 3.12Windows x86

hiredis-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp312-cp312-musllinux_1_2_s390x.whl (170.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl (176.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (166.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (172.5 kB view details)

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

hiredis-3.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (180.6 kB view details)

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

hiredis-3.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (181.8 kB view details)

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

hiredis-3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.2 kB view details)

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

hiredis-3.3.1-cp312-cp312-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-3.3.1-cp312-cp312-macosx_10_15_x86_64.whl (46.2 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-3.3.1-cp312-cp312-macosx_10_15_universal2.whl (82.0 kB view details)

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

hiredis-3.3.1-cp311-cp311-win_amd64.whl (22.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hiredis-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (165.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp311-cp311-musllinux_1_2_s390x.whl (167.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl (174.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (164.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (169.4 kB view details)

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

hiredis-3.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (177.5 kB view details)

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

hiredis-3.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (179.4 kB view details)

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

hiredis-3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.6 kB view details)

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

hiredis-3.3.1-cp311-cp311-macosx_11_0_arm64.whl (41.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-3.3.1-cp311-cp311-macosx_10_15_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-3.3.1-cp311-cp311-macosx_10_15_universal2.whl (81.8 kB view details)

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

hiredis-3.3.1-cp310-cp310-win_amd64.whl (22.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hiredis-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (164.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp310-cp310-musllinux_1_2_s390x.whl (167.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl (174.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (163.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (168.8 kB view details)

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

hiredis-3.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (176.7 kB view details)

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

hiredis-3.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (178.9 kB view details)

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

hiredis-3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.1 kB view details)

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

hiredis-3.3.1-cp310-cp310-macosx_11_0_arm64.whl (41.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-3.3.1-cp310-cp310-macosx_10_15_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-3.3.1-cp310-cp310-macosx_10_15_universal2.whl (81.8 kB view details)

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

hiredis-3.3.1-cp39-cp39-win_amd64.whl (22.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hiredis-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (164.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp39-cp39-musllinux_1_2_s390x.whl (166.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl (173.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (162.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (167.9 kB view details)

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

hiredis-3.3.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (175.8 kB view details)

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

hiredis-3.3.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (178.1 kB view details)

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

hiredis-3.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.2 kB view details)

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

hiredis-3.3.1-cp39-cp39-macosx_11_0_arm64.whl (41.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-3.3.1-cp39-cp39-macosx_10_15_x86_64.whl (46.0 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-3.3.1-cp39-cp39-macosx_10_15_universal2.whl (81.8 kB view details)

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

hiredis-3.3.1-cp38-cp38-win_amd64.whl (22.2 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hiredis-3.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (165.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hiredis-3.3.1-cp38-cp38-musllinux_1_2_s390x.whl (167.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

hiredis-3.3.1-cp38-cp38-musllinux_1_2_ppc64le.whl (174.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

hiredis-3.3.1-cp38-cp38-musllinux_1_2_aarch64.whl (164.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.3.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (170.0 kB view details)

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

hiredis-3.3.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (177.9 kB view details)

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

hiredis-3.3.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (180.0 kB view details)

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

hiredis-3.3.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (168.2 kB view details)

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

hiredis-3.3.1-cp38-cp38-macosx_11_0_arm64.whl (41.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-3.3.1-cp38-cp38-macosx_10_15_x86_64.whl (45.8 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-3.3.1-cp38-cp38-macosx_10_15_universal2.whl (81.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1.tar.gz
Algorithm Hash digest
SHA256 da6f0302360e99d32bc2869772692797ebadd536e1b826d0103c72ba49d38698
MD5 ac8a2fa2182ff57c5fb5650d71e85b59
BLAKE2b-256 97d69bef6dc3052c168c93fbf7e6c0f2b12c45f0f741a2d30fd919096774343a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ab1f646ff531d70bfd25f01e60708dfa3d105eb458b7dedd9fe9a443039fd809
MD5 8ecd9790c0b2b54c2b9227dc9ef3de98
BLAKE2b-256 35d6191e6741addc97bcf5e755661f8c82f0fd0aa35f07ece56e858da689b57e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 98fd5b39410e9d69e10e90d0330e35650becaa5dd2548f509b9598f1f3c6124d
MD5 38cd226620b32de1a8c5eedf12fbb555
BLAKE2b-256 4499c1d0b0bc4f9e9150e24beb0dca2e186e32d5e749d0022e0d26453749ed51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a110d19881ca78a88583d3b07231e7c6864864f5f1f3491b638863ea45fa8708
MD5 191aa5b41f97961298704b14b8db8e17
BLAKE2b-256 b73a4fe39a169115434f911abff08ff485b9b6201c168500e112b3f6a8110c0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3586c8a5f56d34b9dddaaa9e76905f31933cac267251006adf86ec0eef7d0400
MD5 1071a27933c77ae66fd6fc250516544f
BLAKE2b-256 d0c1b39170d8bcccd01febd45af4ac6b43ff38e134a868e2ec167a82a036fb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0b5ff2f643f4b452b0597b7fe6aa35d398cb31d8806801acfafb1558610ea2aa
MD5 3e10d8c16cd681c6a4791a84305a50be
BLAKE2b-256 892ebf241707ad86b9f3ebfbc7ab89e19d5ec243ff92ca77644a383622e8740b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcea8c3f53674ae68e44b12e853b844a1d315250ca6677b11ec0c06aff85e86c
MD5 1533db08c5870c366765bf90169e369e
BLAKE2b-256 41a229e230226ec2a31f13f8a832fbafe366e263f3b090553ebe49bb4581a7bd

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 027ce4fabfeff5af5b9869d5524770877f9061d118bc36b85703ae3faf5aad8e
MD5 23d3bc65e56faa7df8907ec536a19099
BLAKE2b-256 0f8f5be4344e542aa8d349a03d05486c59d9ca26f69c749d11e114bf34b84d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9bfdeff778d3f7ff449ca5922ab773899e7d31e26a576028b06a5e9cf0ed8c34
MD5 cc388beb52e41916246a344ef0918462
BLAKE2b-256 4df5ae10fff82d0f291e90c41bf10a5d6543a96aae00cccede01bf2b6f7e178d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ee37fe8cf081b72dea72f96a0ee604f492ec02252eb77dc26ff6eec3f997b580
MD5 9c6c4785312a348ed4faed381136cf94
BLAKE2b-256 dbacf520dc0066a62a15aa920c7dd0a2028c213f4862d5f901409ae92ee5d785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ffa7ba2e2da1f806f3181b9730b3e87ba9dbfec884806725d4584055ba3faa6
MD5 10b152b062f7e1f52bc51ac61c62d470
BLAKE2b-256 c9f6d687d36a74ce6cf448826cf2e8edfc1eb37cc965308f74eb696aa97c69df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79cd03e7ff550c17758a7520bf437c156d3d4c8bb74214deeafa69cda49c85a4
MD5 1634627fc60cb074b6b1daa876b92c08
BLAKE2b-256 9f76e32c868a2fa23cd82bacaffd38649d938173244a0e717ec1c0c76874dbdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de94b409f49eb6a588ebdd5872e826caec417cd77c17af0fb94f2128427f1a2a
MD5 cf549d6a53183f0bf589ca29677e7b7a
BLAKE2b-256 93aed3752a8f03a1fca43d402389d2a2d234d3db54c4d1f07f26c1041ca3c5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 907f7b5501a534030738f0f27459a612d2266fd0507b007bb8f3e6de08167920
MD5 25ac35b2fb4cfe41f49bb569ff3b0f11
BLAKE2b-256 dd5a94f9a505b2ff5376d4a05fb279b69d89bafa7219dd33f6944026e3e56f80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 80aba5f85d6227faee628ae28d1c3b69c661806a0636548ac56c68782606454f
MD5 ac4b16beb5e51e9602956690cab1c3e7
BLAKE2b-256 ea3306776c641d17881a9031e337e81b3b934c38c2adbb83c85062d6b5f83b72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 21.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e0356561b4a97c83b9ee3de657a41b8d1a1781226853adaf47b550bb988fda6f
MD5 fe15743cfdee9aa61cefede96e77dd6e
BLAKE2b-256 5634053e5ee91d6dc478faac661996d1fd4886c5acb7a1b5ac30e7d3c794bb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee11fd431f83d8a5b29d370b9d79a814d3218d30113bdcd44657e9bdf715fc92
MD5 ab3d61c8ce6455f4e1e18532cde15c55
BLAKE2b-256 b12e3f56e438efc8fc27ed4a3dbad58c0280061466473ec35d8f86c90c841a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ce334915f5d31048f76a42c607bf26687cf045eb1bc852b7340f09729c6a64fc
MD5 ae0ccb20fd2df5356f7315c90d5c155f
BLAKE2b-256 0209f4314cf096552568b5ea785ceb60c424771f4d35a76c410ad39d258f74bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2b6da6e07359107c653a809b3cff2d9ccaeedbafe33c6f16434aef6f53ce4a2b
MD5 6b0035c4da7c94273bf6802d9ed30c14
BLAKE2b-256 f3c21b2dcbe5dc53a46a8cb05bed67d190a7e30bad2ad1f727ebe154dfeededd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ac7697365dbe45109273b34227fee6826b276ead9a4a007e0877e1d3f0fcf21
MD5 029f6725287a8c2b2ef5df430e19f303
BLAKE2b-256 ef9373a77b54ba94e82f76d02563c588d8a062513062675f483a033a43015f2c

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8887bf0f31e4b550bd988c8863b527b6587d200653e9375cd91eea2b944b7424
MD5 04bbc7e5343d9cd70f94230bd9b7da12
BLAKE2b-256 0dbbb5f4f98e44626e2446cd8a52ce6cb1fc1c99786b6e2db3bf09cea97b90cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4106201cd052d9eabe3cb7b5a24b0fe37307792bda4fcb3cf6ddd72f697828e8
MD5 e2a1a5994ea655cd86d2ba38b8f99a48
BLAKE2b-256 d4b8e070a1dbf8a1bbb8814baa0b00836fbe3f10c7af8e11f942cc739c64e062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2afc675b831f7552da41116fffffca4340f387dc03f56d6ec0c7895ab0b59a10
MD5 edfc3d29da40ea8da49932293b8c3a85
BLAKE2b-256 ac9a1ddf9ea236a292963146cbaf6722abeb9d503ca47d821267bb8b3b81c4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d42f3a13290f89191568fc113d95a3d2c8759cdd8c3672f021d8b7436f909e75
MD5 ef7ce8648f5cf761a87f72597c9156a9
BLAKE2b-256 f2c8cd9ab90fec3a301d864d8ab6167aea387add8e2287969d89cbcd45d6b0e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29fe35e3c6fe03204e75c86514f452591957a1e06b05d86e10d795455b71c355
MD5 2b586cb616d01203451c61ede96154d8
BLAKE2b-256 62f2f999854bfaf3bcbee0f797f24706c182ecfaca825f6a582f6281a6aa97e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3724f0e58c6ff76fd683429945491de71324ab1bc0ad943a8d68cb0932d24075
MD5 6733790e0b44470c5c71a9e6b5300757
BLAKE2b-256 22c00be33a29bcd463e6cbb0282515dd4d0cdfe33c30c7afc6d4d8c460e23266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 439f9a5cc8f9519ce208a24cdebfa0440fef26aa682a40ba2c92acb10a53f5e0
MD5 cda743fe9e7760e859db6d8f0bba00ee
BLAKE2b-256 03720450d6b449da58120c5497346eb707738f8f67b9e60c28a8ef90133fc81f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8e56e0d1fe607bfff422633f313aec9191c3859ab99d11ff097e3e6e068000c
MD5 1d9a5a6b90dd2fa61436bd2599f1bf24
BLAKE2b-256 84f9534c2a89b24445a9a9623beb4697fd72b8c8f16286f6f3bda012c7af004a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f915a34fb742e23d0d61573349aa45d6f74037fde9d58a9f340435eff8d62736
MD5 dbc15f7ac76c548c9e0c2f170f721d90
BLAKE2b-256 cd212839d1625095989c116470e2b6841bbe1a2a5509585e82a4f3f5cd47f511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d1434d0bcc1b3ef048bae53f26456405c08aeed9827e65b24094f5f3a6793f1
MD5 1f539884d2e7f16b6cdc9f51f01e70ce
BLAKE2b-256 a2e1fda8325f51d06877e8e92500b15d4aff3855b4c3c91dbd9636a82e4591f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 264ee7e9cb6c30dc78da4ecf71d74cf14ca122817c665d838eda8b4384bce1b0
MD5 96b7509a08ca4eedefe6aecb70887567
BLAKE2b-256 c647e1cdccc559b98e548bcff0868c3938d375663418c0adca465895ee1f72e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 011a9071c3df4885cac7f58a2623feac6c8e2ad30e6ba93c55195af05ce61ff5
MD5 5400abeecefab92dc0237e8836a66b44
BLAKE2b-256 f523abe2476244fd792f5108009ec0ae666eaa5b2165ca19f2e86638d8324ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eddeb9a153795cf6e615f9f3cef66a1d573ff3b6ee16df2b10d1d1c2f2baeaa8
MD5 6d172fd61ebeb3fb3b79d0cdaa0569fb
BLAKE2b-256 0305843005d68403a3805309075efc6638360a3ababa6cb4545163bf80c8e7f7

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52d5641027d6731bc7b5e7d126a5158a99784a9f8c6de3d97ca89aca4969e9f8
MD5 33eb979e5ebc959dd19a03fb0f51f7e1
BLAKE2b-256 7e8c8e03dcbfde8e2ca3f880fce06ad0877b3f098ed5fdfb17cf3b821a32323a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2b96da7e365d6488d2a75266a662cbe3cc14b28c23dd9b0c9aa04b5bc5c20192
MD5 b08cdf5abae59317e7e5a8f5f8abbead
BLAKE2b-256 061475b2deb62a61fc75a41ce1a6a781fe239133bbc88fef404d32a148ad152a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b4fe7f38aa8956fcc1cea270e62601e0e11066aff78e384be70fd283d30293b6
MD5 607fc3baec98b7b22f0bdd7b4a6da8ac
BLAKE2b-256 9406618d509cc454912028f71995f3dd6eb54606f0aa8163ff79c5b7ec1f2bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b46e96b50dad03495447860510daebd2c96fd44ed25ba8ccb03e9f89eaa9d34
MD5 689b0f3dc6a705393c6de1b98e15fead
BLAKE2b-256 fec8a0ddbb9e9c27fcb0022f7b7e93abc75727cb634c6a5273ca5171033dac78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09f5e510f637f2c72d2a79fb3ad05f7b6211e057e367ca5c4f97bb3d8c9d71f4
MD5 22098667255506016f95898f0eee73ea
BLAKE2b-256 6aa46ab925177f289830008dbe1488a9858675e2e234f48c9c1653bd4d0eaddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f19ee7dc1ef8a6497570d91fa4057ba910ad98297a50b8c44ff37589f7c89d17
MD5 4cfc8641fb722e3758c992ad5c35ee29
BLAKE2b-256 9b45198be960a7443d6eb5045751e929480929c0defbca316ce1a47d15187330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 afe3c3863f16704fb5d7c2c6ff56aaf9e054f6d269f7b4c9074c5476178d1aba
MD5 8f97de5cd45217559f070f389aac806d
BLAKE2b-256 d84bc7f4d6d6643622f296395269e24b02c69d4ac72822f052b8cae16fa3af03

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0fac4af8515e6cca74fc701169ae4dc9a71a90e9319c9d21006ec9454b43aa2f
MD5 22ec7e002a3ecee7dbc014271da24384
BLAKE2b-256 e9c639994b9c5646e7bf7d5e92170c07fd5f224ae9f34d95ff202f31845eb94b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 17ec8b524055a88b80d76c177dbbbe475a25c17c5bf4b67bdbdbd0629bcae838
MD5 13ec79474e012b0343afeaff281c6d3d
BLAKE2b-256 47ef5e438d1e058be57cdc1bafc1b1ec8ab43cc890c61447e88f8b878a0e32c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a42c7becd4c9ec4ab5769c754eb61112777bdc6e1c1525e2077389e193b5f5aa
MD5 6a892ad48afcd3b931521619569f3155
BLAKE2b-256 6051b80394db4c74d4cba342fa4208f690a2739c16f1125c2a62ba1701b8e2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a1d190790ee39b8b7adeeb10fc4090dc4859eb4e75ed27bd8108710eef18f358
MD5 0d658dd72d3b86aa4eb12e9ef2e7a922
BLAKE2b-256 53e7f54aaad4559a413ec8b1043a89567a5a1f898426e4091b9af5e0f2120371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 487658e1db83c1ee9fbbac6a43039ea76957767a5987ffb16b590613f9e68297
MD5 c487983053d36201b254ae7be1eafe2b
BLAKE2b-256 c3fbbfc6df29381830c99bfd9e97ed3b6d75d9303866a28c23d51ab8c50f63e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fb6573efa15a29c12c0c0f7170b14e7c1347fe4bb39b6a15b779f46015cc929
MD5 5788c21cc8842a5cc7744b6a88052184
BLAKE2b-256 60a8004349708ad8bf0d188d46049f846d3fe2d4a7a8d0d5a6a8ba024017d8b3

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c25132902d3eff38781e0d54f27a0942ec849e3c07dbdce83c4d92b7e43c8dce
MD5 13f0b4806e8526d536ab2cf1140d31f3
BLAKE2b-256 523a859afe2620666bf6d58eb977870c47d98af4999d473b50528b323918f3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 53148a4e21057541b6d8e493b2ea1b500037ddf34433c391970036f3cbce00e3
MD5 71fc9a82b37092305a5b4b557b0afe66
BLAKE2b-256 870dfc845f06f8203ab76c401d4d2b97f9fb768e644b053a40f441f7dcc71f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4f7e242eab698ad0be5a4b2ec616fa856569c57455cc67c625fd567726290e5f
MD5 2ae9275522fc3e856fa3f2b18f1d4dc0
BLAKE2b-256 1d014e840cd4cb53c28578234708b08fb9ec9e41c2880acc0e269a7264e1b3af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e89dabf436ee79b358fd970dcbed6333a36d91db73f27069ca24a02fb138a404
MD5 f1920efa65df3666a25a9da1dd58b859
BLAKE2b-256 1f54904bc723a95926977764fefd6f0d46067579bac38fffc32b806f3f2c05c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e3754ce60e1b11b0afad9a053481ff184d2ee24bea47099107156d1b84a84aa
MD5 890bf01bf84beb6ca3c0a71fead939a8
BLAKE2b-256 774b35a71d088c6934e162aa81c7e289fa3110a3aca84ab695d88dbd488c74a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2611bfaaadc5e8d43fb7967f9bbf1110c8beaa83aee2f2d812c76f11cfb56c6a
MD5 4b9181046f754ccb2ff8484015bb6cd7
BLAKE2b-256 132fa6017fe1db47cd63a4aefc0dd21dd4dcb0c4e857bfbcfaa27329745f24a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 60543f3b068b16a86e99ed96b7fdae71cdc1d8abdfe9b3f82032a555e52ece7e
MD5 583a4dbd001914c74b3a7e6fd3d1c28a
BLAKE2b-256 b31d1a7d925d886211948ab9cca44221b1d9dd4d3481d015511e98794e37d369

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1f7bceb03a1b934872ffe3942eaeed7c7e09096e67b53f095b81f39c7a819113
MD5 503847c0bbccf0ad61c5bcec8ea3b10f
BLAKE2b-256 df0e5b2a73bea6d18e7ebda7ed73520854cdc176ba70a945bd541bdeeb3f8caa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e0db44cf81e4d7b94f3776b9f89111f74ed6bbdbfd42a22bc4a5ce0644d3e060
MD5 4a4ffb4dbdcdcac9fa3033119ba135c4
BLAKE2b-256 4636cd776ef13b44afbb86c3d63c1a76b09d54cb1b545cce9e26fcd439d69606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a58a58cef0d911b1717154179a9ff47852249c536ea5966bde4370b6b20638ff
MD5 1f96005d2ab9f5ea4f827cdaec30a5ee
BLAKE2b-256 f7081212138ee61e9b72d3f561da60cf6dc15031c10117735938ac258613803f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c24c1460486b6b36083252c2db21a814becf8495ccd0e76b7286623e37239b63
MD5 e2748b50b7dc00a5b36890781900a5e9
BLAKE2b-256 a35e75e0a76e4c9021f9914cfa1de8d98cff4acd0a0eb3344d31f43c02ec9375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 583de2f16528e66081cbdfe510d8488c2de73039dc00aada7d22bd49d73a4a94
MD5 af924d2193ee87a7be797c567091d2e0
BLAKE2b-256 c43785a609a2cf2b6354749bcef8f488c3298976358601cb4906bbaf2eb53944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 156be6a0c736ee145cfe0fb155d0e96cec8d4872cf8b4f76ad6a2ee6ab391d0a
MD5 b02cde4a25e46949040c461a8854c9c3
BLAKE2b-256 e339aa8e41d5f728dfa99f2236c1176a6b348c7577fd68ca9960d20d251d3b29

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad940dc2db545dc978cb41cb9a683e2ff328f3ef581230b9ca40ff6c3d01d542
MD5 47dd497b68d625c4e60efde49c6885ed
BLAKE2b-256 a373413a17d6926c015683a608c148862f1dc7e8ad6f5c205b626607be9b9ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8597c35c9e82f65fd5897c4a2188c65d7daf10607b102960137b23d261cd957b
MD5 6a5eb4d3399b1555f12996ed02f10427
BLAKE2b-256 869a4fafde37b86f70125bcd01e8af5e9f448fc99f4116db6d0e9ad214fc688a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 304481241e081bc26f0778b2c2b99f9c43917e4e724a016dcc9439b7ab12c726
MD5 73aed4c159d9b706529f60c99d45ca30
BLAKE2b-256 76e5e2d75ecc15db51117ebd260fab4059b8a4cbbf74eb89c407c6d437bd6413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03baa381964b8df356d19ec4e3a6ae656044249a87b0def257fe1e08dbaf6094
MD5 275f4525130cc5f16d47b7b13bede045
BLAKE2b-256 d8e08dcd593db6d0e91cd797fafc565995cd28bd9d7ae85807c820b5e245ab82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f316cf2d0558f5027aab19dde7d7e4901c26c21fa95367bc37784e8f547bbf2
MD5 2892ab3c7b433dea0a9a50a55e7d1714
BLAKE2b-256 1be848e5eee6dffb2d5659f437231341bfbf00c53d9fdb5d069ea629f1b2fa96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a2f049c3f3c83e886cd1f53958e2a1ebb369be626bef9e50d8b24d79864f1df6
MD5 db03fd8cc59d6a7bed4effab909db5c5
BLAKE2b-256 50e08bdafc6251aada93c670eb1893335bb248e10faa784f54de6b9384c7d2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 26f899cde0279e4b7d370716ff80320601c2bd93cdf3e774a42bdd44f65b41f8
MD5 ff43220d06269119b7fc686ed0ed195e
BLAKE2b-256 8b71b8e7da87ff0a270e086670da46732ff8e0af2fb4042afe1486846cf44ea7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62cc62284541bb2a86c898c7d5e8388661cade91c184cb862095ed547e80588f
MD5 a352f69a4b577889d21da4bf902a1021
BLAKE2b-256 b0a3bc6f97c215cedd0c15d9cda91358db492767f5257824cc0c7af6a64f1c38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1ebc307a87b099d0877dbd2bdc0bae427258e7ec67f60a951e89027f8dc2568f
MD5 1599ff9f9534cc5cbae44783bd8ac895
BLAKE2b-256 b491f53da281112f469fe8b7eb5999b4c5e5f683b79fee797dbee7e88a697b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a52b24cd710690c4a7e191c7e300136ad2ecb3c68ffe7e95b598e76de166e5e
MD5 15cae9263d7e285d031fe81ceac5ac7a
BLAKE2b-256 1abb0fb0655601cd94db6b2445494528a23915b111d142db6f6d2a7ef741c646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9ebae74ce2b977c2fcb22d6a10aa0acb730022406977b2bcb6ddd6788f5c414a
MD5 b0e65ff616e1519cd4df2ea00b1f3ee4
BLAKE2b-256 b75c9ccc16da757d9be131809a9b33022bbe95a6afcdf9dc9694756b8ebd70e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 002fc0201b9af1cc8960e27cdc501ad1f8cdd6dbadb2091c6ddbd4e5ace6cb77
MD5 a67f7c148ba1a9530014e8faa9e8fa05
BLAKE2b-256 93f9810dce091dcf937e5850f2fb03de18d1cd2f4f75d75a0cdc375c333917d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65f6ac06a9f0c32c254660ec6a9329d81d589e8f5d0a9837a941d5424a6be1ef
MD5 5aa4759ea24e0f3ffbebbeb83b82654e
BLAKE2b-256 1e449aa4933c6dcce96ad6d3a598a742cf4bec383563b20a45a90a5d78dcc10a

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 042e57de8a2cae91e3e7c0af32960ea2c5107b2f27f68a740295861e68780a8a
MD5 c3af3e590855efbbd4921cba981de258
BLAKE2b-256 b4c6b54c15a80c6192c0f7b518b2cbdc0c0b713c02428ba3099cba5dc2023e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c8139e9011117822391c5bcfd674c5948fb1e4b8cb9adf6f13d9890859ee3a1a
MD5 60ed03d4b5ac9d8c3a069ac57ccaf91e
BLAKE2b-256 91553d111ba2843d1d35786508bdfe0ce348fbe54ad3b3553ae70d22cd02a4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 81a1669b6631976b1dc9d3d58ed1ab3333e9f52feb91a2a1fb8241101ac3b665
MD5 fe84a037b31f935564a06f08e3b9e8f4
BLAKE2b-256 febfb49485c0c4fc088875dc45cb7b86e5e703e0daebbd726f872d4c275fab0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0caf3fc8af0767794b335753781c3fa35f2a3e975c098edbc8f733d35d6a95e4
MD5 62787eb3ffb8b3ee82ab17f20efff20c
BLAKE2b-256 e8ac1327de61e27e42ff11d3956690be9fa59899d8112a132a213f1350fe2ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1d68c6980d4690a4550bd3db6c03146f7be68ef5d08d38bb1fb68b3e9c32fe3
MD5 f8f3ddda0a3697c266cfa589deecfdfd
BLAKE2b-256 1013433c4dada704c7f1b1b8261e713483b4cdfa462b1fced1a910ca173c1832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e2e1024f0a021777740cb7c633a0efb2c4a4bc570f508223a8dcbcf79f99ef9
MD5 53ae4cd54056056f1f462a149995e567
BLAKE2b-256 807688edf234200e9592c19f0de7d7af37092151524553b9c29a029f81fe7c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f525734382a47f9828c9d6a1501522c78d5935466d8e2be1a41ba40ca5bb922b
MD5 72953e3bdba30dff1b9152ed6b902552
BLAKE2b-256 36d0fe8d86b94a9c70100c4a9402d301422515aec4055b982b8c189f0c94a677

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 318f772dd321404075d406825266e574ee0f4751be1831424c2ebd5722609398
MD5 2a45cc2462140b89a2140ebd2300b20f
BLAKE2b-256 f6f3fa1dff6119492dcd026a313694d83be4a38518a4d5f430306fc06084f29d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 48ff424f8aa36aacd9fdaa68efeb27d2e8771f293af4305bdb15d92194ca6631
MD5 c8b6ca33557147cc9a9bbc480bd1c49a
BLAKE2b-256 80bab2f05373b041d833e98b4a719771eace8d271ac391ba24e652945f881ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3df9447f9209f9aa0434ca74050e9509670c1ad99398fe5807abb90e5f3a014
MD5 756203fa2ebf4087752f22464155f217
BLAKE2b-256 2cb886dd2ffd465f05c5cf0cdfbd16b95fd55cbb7d71c5845faab1f29183cb88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d14229beaa76e66c3a25f9477d973336441ca820df853679a98796256813316f
MD5 222d657cba98833a09a9e9aa28e3e8b0
BLAKE2b-256 4f70299082f0404d88079242ff8b718e589af2ea117a19e2553cde3bf86a6ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 40ae8a7041fcb328a6bc7202d8c4e6e0d38d434b2e3880b1ee8ed754f17cd836
MD5 001c7221a4992b35c66708445c233a75
BLAKE2b-256 edb0f41af95909abe964e221d04639b85c7642a425670c4fc83adbf6591dc067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e55d90b431b0c6b64ae5a624208d4aea318566d31872e595ee723c0f5b9a79f
MD5 a325caae2cb41c205a14649c05e6e48e
BLAKE2b-256 b0a7964ca58042d743662f0c0385335567cc75d2dd39036d436a474b96ab9fb6

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db46baf157feefd88724e6a7f145fe996a5990a8604ed9292b45d563360e513b
MD5 f597f09256322ae6cba95121b44f7c1c
BLAKE2b-256 bea6bf5b156fdb96ef5f1c345d3428395e419b7c1eaed65dee90b0640dcdce54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 01cf82a514bc4fd145b99333c28523e61b7a9ad051a245804323ebf4e7b1c6a6
MD5 a5ccae08b33f3eaed2ea1d477599c87a
BLAKE2b-256 eac709c6766c617c0cee2c868bf1659368aaddf8fa7ee6fb57b17a7db6991f2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f1c1b2e8f00b71e6214234d313f655a3a27cd4384b054126ce04073c1d47045
MD5 bfb6fc027851fd31d267fc7c966aa062
BLAKE2b-256 a60517c8efcc6f3e1363aead3016a53c647b8e8a4b8d96bf6472ab11e222b58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c74bd9926954e7e575f9cd9890f63defd90cd8f812dfbf8e1efb72acc9355456
MD5 108000249abbb0e45855213986f45db6
BLAKE2b-256 0ea97819a1480e62c695c7b52d6b313c8e5dcdf4f2ad15903d12ec8f180d57bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8650158217b469d8b6087f490929211b0493a9121154c4efaafd1dec9e19319e
MD5 68d66c1f8165d41559bd854b145bfe82
BLAKE2b-256 e07a63bd724cc25983fc3b9a09da1ced17de30b643fb322c7250e4ad2e29c12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b37df4b10cb15dedfc203f69312d8eedd617b941c21df58c13af59496c53ad0f
MD5 4bce80b73ff5798eb3eec82956a7684c
BLAKE2b-256 185c44f0d3e761b4d8dfbe54898ecad65c3d2cf2707ba23a8de0975db6ce5608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 743b85bd6902856cac457ddd8cd7dd48c89c47d641b6016ff5e4d015bfbd4799
MD5 f951ad10843c90c52b8e92e9f96bc4ed
BLAKE2b-256 a281181b13ac03cddeccf5028cd519fb3ad2882913577d78513285b426a0a717

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b1e3b9f4bf9a4120510ba77a77b2fb674893cd6795653545152bb11a79eecfcb
MD5 105b7add28671322baf029c6aefddf97
BLAKE2b-256 c93169a690e79767495ae51f7a3620bd29f878ae6f95f066ee49c91d3c0ab5d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f2f94355affd51088f57f8674b0e294704c3c7c3d7d3b1545310f5b135d4843b
MD5 841f3a74e4ed50da807aa1f7fe04446a
BLAKE2b-256 dc86d54334f78afb849ebc6afdb97f1a2027113de7d922c37d8ef482f44687aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 137c14905ea6f2933967200bc7b2a0c8ec9387888b273fd0004f25b994fd0343
MD5 aed9a467cace9cec3be692b5e029d045
BLAKE2b-256 d27d3bf599289eee8a316474a39b9746eee5ca90078d693097e98502c017b559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 77c5d2bebbc9d06691abb512a31d0f54e1562af0b872891463a67a949b5278ef
MD5 b72e06f67bd79f26a7482a49995104f0
BLAKE2b-256 82394a69adeabca0c3e56d9780b7e3d3a46a376a9bf8d6f763e4dc7a3b1b039c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e31e92b61d56244047ad600812e16f7587a6172f74810fd919ff993af12b9149
MD5 973f779ced07abc0b273cc1a5040be82
BLAKE2b-256 22168110722dff57a4c4075e0018b98ed810f2ad618d7849ff1b109692846ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 113e098e4a6b3cc5500e05e7cb1548ba9e83de5fe755941b11f6020a76e6c03a
MD5 0dec32d8646ba9140af23adc1e5d13dd
BLAKE2b-256 4a8a56389002263f5c56f58da3d0633e7170da932c9fd0ecb3ebbc9afcc7eec2

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09d41a3a965f7c261223d516ebda607aee4d8440dd7637f01af9a4c05872f0c4
MD5 7fd9b9eb5ef600a2332d3641ae046efd
BLAKE2b-256 d012d65eefa461e95e9f0cd8ea11b8f8703c22687af69eb5ffa284abdac2a676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 65c05b79cb8366c123357b354a16f9fc3f7187159422f143638d1c26b7240ed4
MD5 60ff5d2372c4b3b3c3a71642db1ce992
BLAKE2b-256 270a718f0d7d81e5c94d4acc242d53a085ce5dfcdb9826c3c277cf6bbb5f664a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b2390ad81c03d93ef1d5afd18ffcf5935de827f1a2b96b2c829437968bdabccb
MD5 8c5d3a5674ab599e44c20de547a925e4
BLAKE2b-256 2626464581da1bd07e08353f140149bb97ebd6370f7dfe845361ee773c192055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4479e36d263251dba8ab8ea81adf07e7f1163603c7102c5de1e130b83b4fad3b
MD5 0bf0349e08ab6313297a8f80fbe9b7a3
BLAKE2b-256 7874f7382875ec42024447e135c3d183c29d8cbb752ca5b86a5c1e955ca72b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90d6b9f2652303aefd2c5a26a5e14cb74a3a63d10faa642c08d790e99442a088
MD5 96a2da7256e1ea183ec212010509cb41
BLAKE2b-256 2c6ff4a12974abd3e0d2f5aa5b3cea518fcf10c90231ff591049ecce10036ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 526db52e5234a9463520e960a509d6c1bd5128d1ab1b569cbf459fe39189e8ab
MD5 9faa2ce55c95127bd47c948b55cb442a
BLAKE2b-256 143b2547f9173eb11dc4c57dbdd35d4843d147431213d76f9c478b0e68a7441c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.1-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a3af4e9f277d6b8acd369dc44a723a055752fca9d045094383af39f90a3e3729
MD5 d6ca5c6fd7bf1c72a6a8df575a79a95a
BLAKE2b-256 5f8b61621f71bbb7f19432f7873e179ef42bc49a51c2a22267e40f2d12ee77a2

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