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

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

Uploaded CPython 3.14tWindows ARM64

hiredis-3.4.0-cp314-cp314t-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

hiredis-3.4.0-cp314-cp314t-win32.whl (40.5 kB view details)

Uploaded CPython 3.14tWindows x86

hiredis-3.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (320.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp314-cp314t-musllinux_1_2_s390x.whl (341.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

hiredis-3.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (339.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (309.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (321.4 kB view details)

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

hiredis-3.4.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (359.9 kB view details)

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

hiredis-3.4.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (348.1 kB view details)

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

hiredis-3.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (315.6 kB view details)

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

hiredis-3.4.0-cp314-cp314t-macosx_11_0_arm64.whl (70.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hiredis-3.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (75.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

hiredis-3.4.0-cp314-cp314t-macosx_10_15_universal2.whl (139.8 kB view details)

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

hiredis-3.4.0-cp314-cp314-win_arm64.whl (37.5 kB view details)

Uploaded CPython 3.14Windows ARM64

hiredis-3.4.0-cp314-cp314-win_amd64.whl (40.7 kB view details)

Uploaded CPython 3.14Windows x86-64

hiredis-3.4.0-cp314-cp314-win32.whl (39.7 kB view details)

Uploaded CPython 3.14Windows x86

hiredis-3.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (311.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp314-cp314-musllinux_1_2_s390x.whl (333.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl (331.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (300.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (313.1 kB view details)

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

hiredis-3.4.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (351.4 kB view details)

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

hiredis-3.4.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (339.8 kB view details)

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

hiredis-3.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.6 kB view details)

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

hiredis-3.4.0-cp314-cp314-macosx_11_0_arm64.whl (70.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hiredis-3.4.0-cp314-cp314-macosx_10_15_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

hiredis-3.4.0-cp314-cp314-macosx_10_15_universal2.whl (138.8 kB view details)

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

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

Uploaded CPython 3.13Windows ARM64

hiredis-3.4.0-cp313-cp313-win_amd64.whl (40.1 kB view details)

Uploaded CPython 3.13Windows x86-64

hiredis-3.4.0-cp313-cp313-win32.whl (38.9 kB view details)

Uploaded CPython 3.13Windows x86

hiredis-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (311.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl (333.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl (331.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (300.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (313.0 kB view details)

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

hiredis-3.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (351.5 kB view details)

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

hiredis-3.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (339.5 kB view details)

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

hiredis-3.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.4 kB view details)

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

hiredis-3.4.0-cp313-cp313-macosx_11_0_arm64.whl (70.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hiredis-3.4.0-cp313-cp313-macosx_10_15_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

hiredis-3.4.0-cp313-cp313-macosx_10_15_universal2.whl (138.7 kB view details)

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

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

Uploaded CPython 3.12Windows ARM64

hiredis-3.4.0-cp312-cp312-win_amd64.whl (40.1 kB view details)

Uploaded CPython 3.12Windows x86-64

hiredis-3.4.0-cp312-cp312-win32.whl (38.9 kB view details)

Uploaded CPython 3.12Windows x86

hiredis-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (311.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl (333.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl (331.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (300.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (313.1 kB view details)

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

hiredis-3.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (351.5 kB view details)

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

hiredis-3.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (339.6 kB view details)

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

hiredis-3.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.5 kB view details)

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

hiredis-3.4.0-cp312-cp312-macosx_11_0_arm64.whl (70.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-3.4.0-cp312-cp312-macosx_10_15_x86_64.whl (74.7 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-3.4.0-cp312-cp312-macosx_10_15_universal2.whl (138.7 kB view details)

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

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

Uploaded CPython 3.11Windows ARM64

hiredis-3.4.0-cp311-cp311-win_amd64.whl (40.0 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-3.4.0-cp311-cp311-win32.whl (38.8 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (309.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl (330.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl (329.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (299.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (310.7 kB view details)

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

hiredis-3.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (348.3 kB view details)

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

hiredis-3.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (337.5 kB view details)

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

hiredis-3.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.0 kB view details)

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

hiredis-3.4.0-cp311-cp311-macosx_11_0_arm64.whl (70.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-3.4.0-cp311-cp311-macosx_10_15_x86_64.whl (74.5 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-3.4.0-cp311-cp311-macosx_10_15_universal2.whl (138.5 kB view details)

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

hiredis-3.4.0-cp310-cp310-win_arm64.whl (36.8 kB view details)

Uploaded CPython 3.10Windows ARM64

hiredis-3.4.0-cp310-cp310-win_amd64.whl (40.0 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-3.4.0-cp310-cp310-win32.whl (38.8 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (309.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl (329.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl (328.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (298.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (310.1 kB view details)

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

hiredis-3.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (347.5 kB view details)

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

hiredis-3.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (336.9 kB view details)

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

hiredis-3.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (304.4 kB view details)

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

hiredis-3.4.0-cp310-cp310-macosx_11_0_arm64.whl (70.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-3.4.0-cp310-cp310-macosx_10_15_x86_64.whl (74.5 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-3.4.0-cp310-cp310-macosx_10_15_universal2.whl (138.5 kB view details)

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

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

Uploaded CPython 3.9Windows ARM64

hiredis-3.4.0-cp39-cp39-win_amd64.whl (40.0 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-3.4.0-cp39-cp39-win32.whl (38.8 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (308.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl (329.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl (328.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (298.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (309.5 kB view details)

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

hiredis-3.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (346.7 kB view details)

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

hiredis-3.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (336.0 kB view details)

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

hiredis-3.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (303.6 kB view details)

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

hiredis-3.4.0-cp39-cp39-macosx_11_0_arm64.whl (70.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-3.4.0-cp39-cp39-macosx_10_15_x86_64.whl (74.5 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-3.4.0-cp39-cp39-macosx_10_15_universal2.whl (138.5 kB view details)

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

hiredis-3.4.0-cp38-cp38-win_amd64.whl (40.0 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-3.4.0-cp38-cp38-win32.whl (38.7 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (309.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hiredis-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl (330.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

hiredis-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl (329.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

hiredis-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (299.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.4.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (311.0 kB view details)

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

hiredis-3.4.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (348.7 kB view details)

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

hiredis-3.4.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (338.0 kB view details)

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

hiredis-3.4.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.5 kB view details)

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

hiredis-3.4.0-cp38-cp38-macosx_11_0_arm64.whl (69.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-3.4.0-cp38-cp38-macosx_10_15_x86_64.whl (74.3 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

hiredis-3.4.0-cp38-cp38-macosx_10_15_universal2.whl (138.2 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0.tar.gz
Algorithm Hash digest
SHA256 da19331354433af6a2c54c21f2d70ba084933c0d7d2c43578ec5c5b446674ad5
MD5 0159b6af29c2bf95ca641ca22a9edd27
BLAKE2b-256 1fe21654d65851f39fd94e91a77a5655d09d4b64901fdc594020d8348db697b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-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/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7ff29c9f5d3c91fda948c2fde58f457b3244550781d3bc0891b1b9d93c10f47f
MD5 81fd25eafe3a044c553a7dfc3ccb9192
BLAKE2b-256 435f829287555ce7286be8d6c87c69f93aa1f38fe67c46740806416142231cf3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 05c852c58fec65d4c9fb861372dd7391d8b2ce96c960ba8714145f8cd85cd0ec
MD5 44cb453b242328c98d816183dcbca4d0
BLAKE2b-256 8b18e011a424a9608ff152ebeb7bbae2be3163e5716e92cf75baddcb5a8fc312

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 decc176d86127c620b5d280b3fe5f97a788be58ca945971f3852c3bf54f4d5ad
MD5 bfc894e1723e97035a60c2ac144b1213
BLAKE2b-256 15af3f26324cca720f56ace408883c1c7311ce71b571e82e6434515f7ba4eb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92b570225f6097430615a82543c3eb7974ca354738a6cef38053138f7d983151
MD5 2eb94d8bc083792fa08040bcf4612e14
BLAKE2b-256 fb58ab3a5672e506f282e1dd6dfb1c0c3f7e17f02398280c2a2994f8d7b478ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a7e76904148c229549db7240a4f9963deb8bb328c0c0844fc9f2320aca05b530
MD5 065cd3a918fc4f8c20f75ad8c41bd847
BLAKE2b-256 07b101c18f676d5dea65e894c01ffae8da2f15df1fceed1c69b16877ba57be60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cfe23f8dcf2c0f4e03d107ff68a9ee9707f9d76abeddbe59633e5de1564a650c
MD5 c8634877c285b137e040a2421438d742
BLAKE2b-256 114826b2771d2b2403124c1f97c2a6d45df0ba3fa59f0c2d4d244e90543722fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e7ab4c1c8c4d365b02d9e82cdf25b01a065edf2ededd7b5acb043201ff80203
MD5 069dca3f9977b08d84a48b4f1e6c08fc
BLAKE2b-256 336f0a6e030d96d927000735b39aa8b8fef03b43fafdf4a79c80755be351a0f5

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 393d5e7c8c67cdddf7109a8e925d885e788f3f43e5b1043f84390df40c59944b
MD5 7bdf3b7451405cd96c2482b70641522f
BLAKE2b-256 be5730dab05cf2a70905e5d2807edd4afa30a4747599070faf80f18e61375e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 94f83352295bf3d332678689ecd4ce190a4d233a20ad2f432724efd3ce03e49a
MD5 5a2edec4f1dd6408918dbf4c849a97c4
BLAKE2b-256 99135431ace8330904b2b9d9ce5425c13b7a8fa2b443ff272a92f248c07e6400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 18ff3d9b23ebe6c8248c3debca2402ad209d60c48495e7ed76407c2fe54cb9b4
MD5 4ca58da547dfd1b7c7d6a9387a005f1c
BLAKE2b-256 52fcc8667282e41153bc20930aeba8ba0dff989cbaa9eb7594f8bcac02558dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c2852eaa26c0a73be4a30118cd5ad6a77c095d224ccb5ac38e40cb865747d22
MD5 ad6738550bf4b9f50ed9e2bef882855f
BLAKE2b-256 7f0d3cb03fbbe72f86541f42ee49dba95ff428c87908815152970fbf24bdcf4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2f9a9a591b3eaade523f3e778dfcd8684965ee6e954ae25cd2fd6d8c75e881d
MD5 6222f7531b862c1c46d59e129ace0d0c
BLAKE2b-256 9f09ee568562f36f481395d5cea3ab75fd9350cd77d98d55ee5f9b395f3fc358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 be4a41496a0a48c3abf57ef1bbeb11980060ce9c7a1dd8b92caa028a813a9c59
MD5 605790181ae0f249fde0a421a1114a13
BLAKE2b-256 49858f52b485b9d835e0f8da063a635290d916a6f5ab60c18db5411ecea344d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 3159c54fe560aa30bf1ab76e65c4c23dc45ad79d7cf4aecc25ec9942f5ea4cea
MD5 1949b0f0e5f71121aaaa7bc0b04861cb
BLAKE2b-256 3514caeaa1be1205ebdc1cf6760c5f6882afbdb3b82a6bdf0559d01205b1c857

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 37.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3348ba4e101f3a96c927447ff2edcb3e0026dc6df375ba117485a43edcbb6980
MD5 63ff675ac1d219ac13bc20427986e72f
BLAKE2b-256 4cea3a05247ce4e2afe56f59d24b73ba38e37f2b324dba8290beba56fbd9fd1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 53233656e4fecf9f8ec654f1f4c5d445bf1c2957d7f63ffdedbba2682c9d1584
MD5 b6a321e373b288b1ac52dbd9f2e6f7da
BLAKE2b-256 f2c8cedb336a0386a97271761ace460a362cb2433c6cdf1d1ba760ad99225734

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 05384fcfe5851b5af868bf24265c14ab86f38562679f9c6f712895b67a98163c
MD5 502b8d291f1857f6f70588fc6b61a480
BLAKE2b-256 70aec9eda3c116bef50fcf0dc7e44379e3577f3627caca4ffd7af04675b02d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d77901d058923a09ed25063ea6fb2842c153bbe75060a46e3949e73ad12ce352
MD5 b851f89e14c43f96e6939de731d78c7e
BLAKE2b-256 6f104b104565c936d51b4b02597352ec068937c9d6a73a3c4c9609c08ae3923e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e6e8d5fa63ec2a0738d188488e828818cbe4cb4d37c0c706836cf3888d82c53d
MD5 0e9f7d965f3cab18294e0ead132d215f
BLAKE2b-256 fbdf11b1de2ac85dfd7a8713d72a6ed7ac0f1a6e28d906bd362e0df3a27f5c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 73dd607b47863633d8070f1eb3bab1b3b097ee747783fe69c0dd0f93ec673d8b
MD5 b3ae792a3fd02d9aef59463ed7e4f666
BLAKE2b-256 3e0fe1e2295ee863efc7ce8c88ec10bcc4b1504352373998cb493f10e900dbe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88396e6a24b80c86f4dc180964d9cc467ba3aa3c886af6532fe077c5a5dc0c3c
MD5 28423a718d36f99f6b84008571234327
BLAKE2b-256 bb23bccfa0fb7b1b529cff35c8725cfd99a2d18fa4123f52f52bf03e84210855

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54b6267918c66d8ba4a3cf519db1235a4bd56d2a0969ca5b2ae3c6b6b7d9ed79
MD5 d1846682272a6efc2ae0248ed360ded2
BLAKE2b-256 70b732110aa458690722a1069c7349b8ebe374a6ba0bdf9ef8925a9f37a74978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 db13f8039ad8229f77f0e242be14e53bd67e8f3aadeb16f3af30944287cca092
MD5 7d1a5fe76d9376a9f990cee18fd16479
BLAKE2b-256 59f3c6fb383854237891039a4d94d3e66dc5eec8a2993fed6020c983d63c5393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0b82cab9ad7a1574ab273a78942f780c1b1496101eb342b630c46c3e918ca21b
MD5 ad1d67af830fb770508e01b7a967ac4c
BLAKE2b-256 e8103746b028d9c43fab1fa4126fe69c6967df89ab9819140092930322b0550c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a45822bc8487da8151fe67c788de74b834582b1d510c67b888fcda64bf6ba4bb
MD5 abecefa6a4190e615d5bb7bb2e92dc6a
BLAKE2b-256 db93c86f0a7ae2cd10b72e30476f87aafd1af22992e080feb4b5d2ec1cbdf4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a68b0e48509e6e66f4c212e53d98f29178addf83b0701a71bf0fce792954419
MD5 d2ecbbd5c2809bc4b1bab7e3aec05e55
BLAKE2b-256 5ad15fe5b6d05e59116d78f9d228d9cc0022efbb84d234333c5fbe6a0c6e13fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a70df45cf167b5af99b9fe3e2044716919e30580a869dfa766f2a6467c0c320
MD5 0571e33bc7819250d3398dd411235c2b
BLAKE2b-256 d4e9e004067ffad9f707174cde04d117c985d5f22dd4d9409f0983892738cb44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d3a12ae5685e9621a988af07b5af0ad685c7d19d6a7246ac852e35060178cff4
MD5 bb881f06b5ede57c07b8cf21ec1ebec0
BLAKE2b-256 abeacbc922aeaa5af11f1c1235d8b2b04ff8cdf6e3e95c785a500521f32d8d70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-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/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 975a8e75a10425442037dd9c7abbaae31941c34328d9f01b1ca42d9db44ac31d
MD5 17697f0435ccb954fd8fa16f33ccf120
BLAKE2b-256 20059313dc27ed159512dc22b4ecf8a62a84d0aa5fbd500ffdad955b361cb2a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 306aae11a52e495aaf0a14e3efcd7b51029e632c74b847bc03159e1e1f6db591
MD5 26e04b00b03d79b089f0c1ec5eb254e3
BLAKE2b-256 03e776e68122b1cf680b93b951a82953fff5b5883dc08ec93f63677eb3653591

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 165e6405b48f9bd66ddb4ad52ce28b0c0041a0308654d7a0cb4357a1939134dc
MD5 5db29231cebe55f196aeef56c686bdcb
BLAKE2b-256 d633b5ac3420bd803ca9affd68a4a2a6111812bd26bfb9d6b41a721e009d79d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1ddfe6429f9adc0a8d705afbcd40530fddeafa919873ffbb11f59eda44dbb9
MD5 aec1277d1435e544bb7d697790f33885
BLAKE2b-256 e642d4a2e7be82f2b2db7b67ec622806ba099d8fe09d218568f71197922cbe79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 04e54fc3bcecf8c7cb2846947b84baf7ce1507caba641bd23590c52fefade865
MD5 25ff203d1012bcdf0387d8bd88418694
BLAKE2b-256 9512ed5bdc482d5c98930ffa264dd707dfb04b83118b2f7f760760c5dfbe6782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d5c33eb2da5c9ccd281c396e1c618cfe6a91eb841e957f17d2fa520383b3111d
MD5 3c4647cd57c6833f3aba041ed184faa0
BLAKE2b-256 900bc48e93a1e524198b10ccc26d770368547c0c29d126a992fd4b4aa533f1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afff0876dafad6d3bb446c907da2836954876243f6bb9d5e44915d175e424aa4
MD5 875b861de2ae54da6a9e6afadaa86f18
BLAKE2b-256 b32ac90dff527cb2521ee1687e9e30bdf1156f2f4acfd47833b44dc52fec3ec6

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35ab3653569b9867b8d8a3b4c0684a20dc769fe45d4666bedfe9a3391a61b30b
MD5 b9413a525d1aad5d4b774eb891d057dd
BLAKE2b-256 33b5ff8fe4f812348f09d2943b109cb64c5301af4f601e1cf026518e93a72fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 454236d2a5bd917daf38914ce363e71aeef41240e6800f4799e04ee82689bfd2
MD5 581cf4fd8173ec502e15f9623e8d1a63
BLAKE2b-256 bbeab8147da5c270a2a5b85090c97d0ff7e2fae6e7c5f7749f8c3c2decadd3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 de3e2297a182253dfa4400883a9a4fb46d44946aed3157ea2da873b93e2525c4
MD5 6a2480345997c27114b5d7546489a4b6
BLAKE2b-256 c47ee940eea3c2ee1aa5947f2e6224f03a1dfd38a5813307259a25f580411820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d95b602ab022f3505288ce51feaa48c072a62e57da55d6a7a38ecb8c5ad67d81
MD5 7ade95fa6096ea48922bb032512447ba
BLAKE2b-256 285dc8b9ca711b4d6b7637eae744d6b45ea47f6bded61bac0232bb42ed8c583e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74bcfb26189939daba2a0eb4bad05a6a30773bb2461f3d9967b8ced224bd0de9
MD5 b13385d9c203daad02a16148ed8ff056
BLAKE2b-256 296d692c50d846a0a36578e9ef0c62c6193ce01a48f353f6961de9de88a30b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82860f050aabd08c046f304eb57c105bb3d5a7370f79a4a0b74d2b771767cc13
MD5 d855fdc88155d3d30ebddd32e249ecde
BLAKE2b-256 1e07039bcf7ce8262ed66db736349c121486874826248ccd70c98c2f830ec9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 4f0e3536eea76c03435d411099d165850bc3c9d873efe62843b995027135a763
MD5 ded687bc150a3a0b6e89d35086950d0a
BLAKE2b-256 7be59e47dda8f1d55e77293c6cdf4169182b7f2f55b56913d1fb16a0ddf63a3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-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/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 14524fdc751e3960d78d848872576b5442b40baae3cac14fbab1ba7ac523891f
MD5 8e0bd2d7e8459bd82a89894b40b58baa
BLAKE2b-256 fb1c7333aba1b4b7cef2591b244140aec0f1aad903397bbaa31c1858722b2fe4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee6b4beb79a71df67af15a8451366babc2687fcac674d5c6eacec4197e4ce8c1
MD5 3434483790958ecb5b97858a739049d2
BLAKE2b-256 a7646508236eda66765fbe873d1d0a0722e38059302e96dc9915b162ff17b35a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 696e0a2118e1df5ccacf8ecf8abe528cf0c4f1f1d867f64c34579bef77778cdb
MD5 2a4463e8db9b7a57fe74e785ea2facf0
BLAKE2b-256 045b54a052eccaf901703b57d7c28509e74341fa0da08d770f485345397ea1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03374d663b0e025e4039757ef5fad02e3ff714f7a01e5b34c88de2a9c91359dc
MD5 b88bfa738765d4b43e0fb0847fbf7ca2
BLAKE2b-256 1d52d3d0bb234de8deb4cbd432cdc63d001a6cad1f9c05fe07d2fa652f8cf412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4b8f52844cd260d7805eca55c834e3e06b4c0d5b53a4178143b92242c2517c0d
MD5 b4840b738600ad01ee780e32968b8ac4
BLAKE2b-256 e97b8a4dc0a15e4658c81a9e79b2c167fbfbf750e0c1c7ef13e00e69d4273ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 163d8c43e2706d23490532ea0de8736fc1493cfa52f0ee65f85b0f074f2fe017
MD5 cb12a381da44b00bdac41420a5de5306
BLAKE2b-256 c5bcd112dd9704ae47243a515fb021ec4d0b5a1b8d83a7a3eff3284c0248412d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fb0a139cd52535f3e5a532816b5c36b3aea95817410fbf28ca4a676026347a5
MD5 303de7937911b3c9e1ab8f108f76e8ba
BLAKE2b-256 ecd13d76c4d5c46cd2e7b38641f7c8b325e0cab7d49d565ea573256eb3837d0c

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 452cff764acb30c106d1e33f1bdf03fa9d4a9b0a9c995d722d4d39c998b40582
MD5 0ad844663eb7e16559c20d26f2cfe477
BLAKE2b-256 1e8c440369f727dcb856f3eeda238d6e67781b180feaa831bd28997d8af10c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ccdb63363c82ea9cea2d48126bc8e9241437b8b3b36413e967647a17add59643
MD5 9fe4a086d4e21f0b5d20e5177bd67ee2
BLAKE2b-256 1e3feb6a9632bcc13a3fbefce5de90090052fb1ae1cd3d57faf687f20149d592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3774461209688790734b5db8934400a4456493fc1a172fb5298cc5d72201aceb
MD5 c16c0f8bb48d22f291ede0b6607ef627
BLAKE2b-256 f1be97f349e5bb0dcab0ef28b15523443d9bbe81f8ccbd3dadff56594dfa82fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 258f820cdd6ee6be39ae6a8ea94a76b8856d34113de6604f63bc81327ef06240
MD5 031271661c7ed9fed534ff8776d98788
BLAKE2b-256 989962340215f80e59680c79ae5080c5422311da105870c57bbefc5d87487025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24751054bb11353016d242d09a4a902ecf8f25e3b56fe396cccb6f056fdda016
MD5 537ed7a5eddc8fb17d29c944f66f6185
BLAKE2b-256 a4cf6a0bcf454b1642997c4dd007bd89beada43f38b22781afdf475060e427ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b3f1d03046765c0a83558bf1756811101e3947649c7ca22a71d9dc3c92929d1
MD5 c4519c17569122398b0aeed915a78f7b
BLAKE2b-256 a213399fe51d399b8d4f5717aa68cb1dafcb8c244b19b1b9b0afaaa526c1be94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9e88048a66dfffec7a3f578f2a2a0fd907c75b5bd85b3c9184f76f0149ea399f
MD5 83dcc403f755c3d8e19d28aa107778d2
BLAKE2b-256 d284f74deb132d238a0d5a3eb1618bf7558c65230b279421f909a9753231c516

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-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/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4404c557fd49bcfe24dff41f1209e4221c76d1607df2fb2dfd39474b5b086dcb
MD5 137431ff0175d2b076c6b2963e502d7e
BLAKE2b-256 20e42122980b75a3fa8980540e2265028c757564ecc4d813b40298d29dd876ea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bb44efa4fa3e3ed7779ad0ade3c08ed5d75ca7a6336893e9a4f2722093b4168a
MD5 6c3c4ea83cf2a2fda40672daa0a8e84f
BLAKE2b-256 f0197ea1fdbee1c42cbac140005e66e60a1198548eea04456e17dab5c285e31b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 282c4310af72afbe18b07d416459f4febeaeb805a067a7df790136e0e550fcb2
MD5 5526580a9bd347be4f8469ac8776f3aa
BLAKE2b-256 f236304a0e029cb6e44add3b0d664315de25c483f6e8f8e1d413c68de969a3d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a315009b441a0105a373a9a780ebb1c6f7d9ead88ac6ea5f2a15791353c6f590
MD5 99fa3313625fa5c183d17465831223ef
BLAKE2b-256 8705cdc7e2e07b56c716426db4644b917b260a4f6fdc8d16cc3bbac4b27d0a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44660a91e0fbc803c29b337c1a9194c8d7b4cd3a3868d28f747cbec2df165483
MD5 a22f320dfdbe32ec4795296bd3dbb340
BLAKE2b-256 66a9cdfda214af93eeb9f93a83a099d06f26ae5569f188209ddc8a7c977ed446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5359caad5b57da0bce11d2880f22617ba3710f0866121a924745447848448034
MD5 f16c0cf150b58a0fe907d2d2132c9423
BLAKE2b-256 bca72a12a2f828c2d611b74dcf2229998c4d2570fe6ed6b4903d6a4c3add84af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aaaab18314fd25453b5cf59c8cdca4110e419455bcb4c0737d19d4151513e75
MD5 7c2de70b8d9855689f9fd35cf5fc92b2
BLAKE2b-256 5d03ef3697bdee359b4521101bdc16e8e4965a5ebd8634b605fc7cf9c01b6b82

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43004b0b48abc628dda1ac3ac4871e1326c126f8cd9f11164d61934d827d7a3b
MD5 30370d4de7a840e61883baa7e503e666
BLAKE2b-256 8807716ffeb049377d92da6261c5563e554b82336ce3eafb11eb4510c5558be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bca175f02a2b0150ffe7f5dc8bf49c798f34d2c7024d17ace0ec97a7583560e3
MD5 ab66aec9665a59eee63d793cf0daba87
BLAKE2b-256 ba112df9a12f170e9d61739e7df5f06712141414b2dce2cf385fc1fb6f31a46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f3c67f39b112dc35f68d5b59ee111db6121f037d1a60cf3840ecffbb2ec5686b
MD5 876affbf943dfb04f0db50ba8b5a4b46
BLAKE2b-256 4a3a78ca23fe899f8da7ee2caf9c502ac1a63da15d521f33a3fc617a7adbf2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccc5c660e31d788ca534a20f2ccb7a80b946b960e18ed4e1db950fcac122b405
MD5 ba3368c59bde0b9f6ceee46ab838d904
BLAKE2b-256 04baa16d44b2bd71e72a10673faa94d07cc4e9de90240b65ce2511af0cce065b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3796094f616f72976ff51e4dc1a016e753c0f9af5393b2df96920b6bae1e19b
MD5 b6af6d804f4a57baf17d3074e9e2a941
BLAKE2b-256 aed74f456f36f5c5224bc11a2fad964116a3cc37259d09dd840628aea5fdbf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ed1dba2695f6de009c67d63b39ff978cb43b8a79362f697acedffb7743e50d21
MD5 c04ddfcc3926015fb9df2cce92dd9af4
BLAKE2b-256 ed27c4ebeb0f7ecc8a23d4356efd3ef2b6243ed74d24584d86ff8065fa14a350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7f7fc1535f6e1a190089eae46dee25f0c6b72bb221d377be07092803b8208733
MD5 aba11196ca6e1bc1b2361bc3f17ba28a
BLAKE2b-256 92d109d7323c76d097ff3f6530228d2422c19817b6052716f9a652ecd6e2f68e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 36.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0bcb630add6bc9ea136fce691ddff0c46aa91cb860df4ca789fe44127eb7e90d
MD5 cedbd31f468d3159f3674df009515600
BLAKE2b-256 c9cebdc7602ddc7b60ada44be4c4246c1b4d54a0b444a2b5f17ec936c0ce0faf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2245c46b4ced5f689469e6dcdfc8a0895bf873840a6600f5ea759cdf1b26a8b
MD5 cadf416176bbbc856149987bc988d28c
BLAKE2b-256 249d38b85c7fd3ec49c8b1b089288307f8f17e138439be7b079fab2221e113a8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1bfb9ccfb13be63883e5f2e5ff7f6fc87bf256f8243af594257dfbed9dbc3cf0
MD5 ed2d7c2ded28bb9e76a987569c19c205
BLAKE2b-256 d641ec1dc1c27e8fcbe2dc635d49cc751848972600a7d277569fb9ba77ee501c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7c7596fbb2b5202e943180353958e89014e763c7f25877a92f70bbde6cd7f19
MD5 45e1678218f813007dbfea0e8fa5ebae
BLAKE2b-256 a90dac2d1f1c30eb6d7ab5f099da17f76125f1bb0f9274623178508a6c736acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 45c6c296056641b5df37cedafe7d1553f33bc247e2f81603a4d038b39261879b
MD5 5bd5a3f41162772ed6e1dc80627208e8
BLAKE2b-256 3dfa66fed95ab85d85a4dc87acb8df69e22ff943a3bf7a26e791d5a1ff173577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e29267ecdd08758926f1a9221af2671d90f475480c40aff409921b1f362f1bd5
MD5 7d3d67b867b9f1c7f763c7a4f3f40dba
BLAKE2b-256 0fcd83793cc2fb161ddd5d394adc7122ec023b0e1d9289a294d0f80214d910bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4190bd07dd7879a8a7ddbb2a4f74d402721f3898276e35beb98851b85b5f539c
MD5 55b631bb3fbaeab7b4b05e6e8e097238
BLAKE2b-256 4a71d069db71ba4a5f40bb1390eebaf00e4d161c5c1f48e623880ca22a946618

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4de6869be2b33490569dae0712366bb794b7f5e7a8b674de3e092b3e95712d6d
MD5 e21bfed3e983b7be11fe9ebddd6c4ac8
BLAKE2b-256 26c94e9cd249afc101ac283943295fe3359bdd711a0bb8c667752eb0da80609d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 12ea5facb5b08fa23e4c101ec2151f3a3de8ecec412fec58dbde0a6eebca02c7
MD5 d4bdcb99869298c875b9e5f6a311a30b
BLAKE2b-256 502905a3cf8f605f6cdeec2c6f54d022fa51242e3cf77fe4940e89fe1446b068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 12eca9aea1450d1a85dc15574a985c227e52abbc2b6466f48ad2aa3b82124701
MD5 21aec9b78b2498c014aa9060fd022d54
BLAKE2b-256 fcc846d48dc674d0aacc66cdc8c400261fad3c08b352dd823e6ffa0a0536259d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6774f1fe2723001ca0cd42bf5d8b1235301226273915c581c5c1260d4d114c43
MD5 92152e40e6281ffe70deb706b2a9a5e4
BLAKE2b-256 310621e254be776b6ecd38e7c955c2fe205f2828c091621fbe400406bd2e382e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98e28c10e43d076f50ce9fa9f4017303d5796c3058b1b651f507c2a7d6ef402c
MD5 68370b6a3bbdc7f6218f2cd6afa2921d
BLAKE2b-256 e03d28c61f9c628dfaf1f96bb8b8592cb006eaad3747248c95f9ae7f694abb47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4863b99b1bf739eaa60961798efc709f657864fbf5a142cb9b99d3e36a37208e
MD5 2244e3679250f8b74eb0325386a3635a
BLAKE2b-256 6f752a08a6062228720747570a07ab42e6f5826725f09c9a95d75b7b5b938022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 69d0326f20354ce278cbb86f5ae47cb390e22bb94a66877031038af907c42fa5
MD5 fb9b2dfba478bbcd902f7dc61d8f123c
BLAKE2b-256 4a48b0c0e2826eab7543c08980dfab871b3e7c83c47d7496134b04a94df55a1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0-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/6.1.0 CPython/3.13.12

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 386b556f48fb0f9f09696b9d37f1cae554123fbd9f091d0ca23087f2aca02887
MD5 44f5c59941281819302e088925e8e055
BLAKE2b-256 ae44eb5605382e97326813b3a1156724c2a78f9422d03e9b13baac507acfa2fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a427976ba339da624367613d7eba52a1516e6d5c7f8988dc8fb888fbcf52d8b6
MD5 ff2a768f7c99942c40264221da015def
BLAKE2b-256 5d55447f0402252522ec450ee3728b442f3be0b2f112a7f793ff543a3a6c505a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0731dd9f2bf4d3417947a3cbbca4dd4d9fa6ad7cecfd4e16439c17a4562d6304
MD5 8314a80f7bf9b0b305d36543ff53e84e
BLAKE2b-256 59dede9c8441f1b788adeef28152858db1f991fc5a71e9ffb3dc56802f1b657a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46e041fc7a83eaa989ef5fe09526bc2353a6ba39b4ce5191684eabefc02e17b0
MD5 66a9e42db636b5476aaf46d06f35a103
BLAKE2b-256 10f1671292468ed569737ed71dc68b2c888d51c01b3fdf9bfffdb1acef0801cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 423570ac4d2665c0d55d8707b7859a331e9001da5e437b7b7a23e0acbce770c9
MD5 35e7030c0d2a42c610134f7344eb421b
BLAKE2b-256 188f2007c056fe6b6411e357a4c2aaa172604a1b060c452f023bf7d56059184b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2c432cce38190c3c13b6c28d6840ee85db50765ad510134007f1cfb3844dce73
MD5 b0e51fcc152a3eb3569aaab790b2c920
BLAKE2b-256 37979fed69289cd9a6827ccf3bcdcf3c2e47cde28b94dd0de0cdf7388e69c42d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f2c8569460aa456a294d5e9a3579a382b825dc2e283e3cc398323dcfb6a3dee
MD5 5d36388d3b1dfb06db6eafd111d6ebe2
BLAKE2b-256 e2d01c49a0ef6a799a59bed2acb0fb9bab99e52c8b407b5a405823b6daeee958

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89e95f50ec4d29645ba2da9010e8717861585dc9f3df354a367f43807a6db3c7
MD5 3d83eac282d5c455be176eb0501ecdc4
BLAKE2b-256 bce9feda37a88c6a4cbae5c9c709622510e1f04c8dc557f59c729407c602f7ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 06c163607f163a300cba9ef02fd8a234dd644a208bfafe972614f72e5287b9ba
MD5 015c2ecc9846313e7d0416b9120d8ee3
BLAKE2b-256 00ac0ccf62b077294059d67cf4a365a3e11afc23184e29220edea9a36a6360e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c8c6337e7ad187e8039d06e4b33ee5148dcd73928819d94087e649eb37316a09
MD5 2a68c629afcd2f7f2ec19a63c69c01d2
BLAKE2b-256 738ee2c64b38662604987b521bfa1a2429f5ee4c59030409e335431a2ea3782d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b98f44bf873731d9ce99e6b3eeb6196bf7b27693ad9f6de0fba986b2b0845127
MD5 49eca7abfde2f921f93023d19500317b
BLAKE2b-256 0cbe402191ff89d4edb30de22bd835d41e88ca4898810eb93750941e271df0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85a9abf2d16b4cb112f6cc6c32236d763b34d21c69b00c2f81a4ff3016fcc1d6
MD5 44ec1d638a66ed66e723615280a8a53c
BLAKE2b-256 62f1f7bd4a80c695d2196bb7c3a4a1c25c0a84b8681dee931b85137e301e58d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 64cf54c1dad35830bf1d86b343ad3c55aed443af51c5ccead8afd1b547aca196
MD5 b1f86fef7897f8ccddfe31be2c1d547f
BLAKE2b-256 7e8ba6ac05814a3cdfc1d6e51220ce19f8f8b6ed986ae336fbb7dd9fec5f8a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 7b159315df71a009375227384aa4219f98c2342ccd8eb33e3f4b58654f426376
MD5 439408bc518e74e09d5f157520f2d6d1
BLAKE2b-256 6af914cd6fe994e4b530a84c22153e454e3a12680710aae635b7f5580bc4f075

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ff6217da86a63a6a5ea954d9b9ed67916d9d94a566b44aa98e68ae34b40ebbbf
MD5 9e58312f89333f555e5c4a9d32374b50
BLAKE2b-256 a00d9bcd58f20cc6d42e74a623581ae94624b38696634497a1ea2804062dfe53

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 68c81c04e0d8778c01163dd2bc6f0e0236fc7f650c291526f10d4faccd99e5a0
MD5 19741a492f056084637843212bc7a2ea
BLAKE2b-256 df3ffc58042dbe1ec435ded7f30f1bf8b7a8e6c5561be5af0ba88c72c11d8724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6228afacadb19a858289319d72797023e2cb048f2f930b68b7fe57eaed5fb6b
MD5 ff280794393bfe36d7b4c1af997fdc27
BLAKE2b-256 5fde6c72302c2f6859c362830540a0faa49ec7c1301db542f8cf190917baf2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b32afb576705fc5a02440d416ef476ddbcc827a20ff6c4a9d557882bc6b75135
MD5 31c949d83a5b19649ec1e07698cac4b3
BLAKE2b-256 f956cd3caf75429355b6027110ca19bbee115f73986297d7a8a077b1d1354b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 16a3ea8193c5f4ee6e8daafe0126207cef38eec5a923c97047e6985d9bb1b61f
MD5 d7336de627fff0cd0b716457819916ac
BLAKE2b-256 5c4eb788aeeca5c00ce63e8e13bcb016d9d54eaa6b479aaf10388816a1335e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c9e141b420dae63ea21303a7e8672282326cae67472768e9a3f6e7f0990bd28
MD5 28cb6e9ad5284fa6483124dfdb84a29d
BLAKE2b-256 10f0c29ee0d174aa18b3f6d029a4838c9fc525056a82a040dfa40c3a3c8ecd37

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0-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.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb8b2dd9c00d80ad2870ffbb51ce9af99fb2194c082d7b09f4125d90e21426f6
MD5 e3a0d2111d4b8a9f645d370b5128bd46
BLAKE2b-256 d0d55dfb2dd49af44d5a897156dac451b91ad5611cac79c6ca8c517f2ce361f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1d8c21fb85f2a3de9328cf5bace84b63da00028e771b92335ff4fdc00121dd5a
MD5 663f10693163dc9add80536266d42a88
BLAKE2b-256 fe5bdebfffea82c4c63cdef8315f1e36f05d7ca70e797bc82191aa5e62ecec02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4e5530d7a6c71c1a9c3b850b08bbc8178ffc9556e3aef7f9c808fe9ff91a6f11
MD5 ef48018d1e91f77d5b0c3166633bc3ba
BLAKE2b-256 aace1419e8919b4049c75b3c746b935970d452ce45d45ad8d12d8a40f185844d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02298551060cbfe17b1acb02e9d066eadd51e37357369736f8fc1f5533875255
MD5 22da5eb709f647c6f6928bfc9096cc15
BLAKE2b-256 65c685b9314e75b27643cf69f837a195115e26af039efbe3786daa0b079eb33f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 899d5cea72c9a6c2d9b6e7b223de62c9e9f541f48267cc7135764070548735ce
MD5 782c9fa7b48f0da40f9675d0b2048831
BLAKE2b-256 71b84a23a8981ee5816bf8e46981cc123aadf1dcab243d3b50d95ac841903497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ff28eca77a57751488df90b0f385b472fd78e140a4d45097224648a5737acdf5
MD5 89b580a42792884bb0c0039fb413d965
BLAKE2b-256 24625346fa7e41e8dae18cee180f33a3d7c91f62463b42717d6e421ce0f1e398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b0c29ac4f50fc61a904acfe76e4ce6bc37e16ab5a98089cb411476d466e1bb36
MD5 3bafc75e3dbdee23c4c21f2dd489c408
BLAKE2b-256 5ca92e289b96be3226351dad6868856e11de0202c82f8614a1568175c301928d

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