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.dev0.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.4.0.dev0-cp314-cp314t-win_arm64.whl (21.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hiredis-3.4.0.dev0-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.4.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (180.6 kB view details)

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

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

hiredis-3.4.0.dev0-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.4.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (181.8 kB view details)

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

hiredis-3.4.0.dev0-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.4.0.dev0-cp310-cp310-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

hiredis-3.4.0.dev0-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.4.0.dev0-cp39-cp39-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.15+ x86-64

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

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

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

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

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

hiredis-3.4.0.dev0-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.4.0.dev0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (168.3 kB view details)

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

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.15+ x86-64

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

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

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0.tar.gz
  • Upload date:
  • Size: 89.1 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.dev0.tar.gz
Algorithm Hash digest
SHA256 444b4037e48fe3cfa90eaad8bd015815e6327b4a7e00dfc66e2e4e42680af2d6
MD5 4bebd35731667af449b3cbc35e37f077
BLAKE2b-256 52af8d4488c465937504fa6503dc9e2fea076e1f1901404395535c9f2fc968b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 30b8b4c1d40ef80abac8162cd54ada852714c525bf659e0d79678925dce62fd8
MD5 525ed65677ef9a41d404a6935926b679
BLAKE2b-256 5d1f5bc1a35b0cfd7b2e9eddc6ac28678404a282e4f45abb52ecb83df20e8c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0f3818826bd837f0d4af753b2e3b5b9414214d532e0653a12ee035203391e2e6
MD5 2965d363cc7e89db783ec048c0f9e681
BLAKE2b-256 a596f6b4a3fdae061fd0590b117949737123ad4e65b37cc011a46bad94442d9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 22.1 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.dev0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9bf185888975eaed33a3ff617bc087c0f243d0a3c3d9e1295e9672a5939766da
MD5 2d135ce51da953588bd4006a2341b66d
BLAKE2b-256 cc136c1aeabde8fe3ed7197358a72e6f4596c7f456df84a92c15d8a09584abe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 185cace840d6e06d732fd3a6c30013158bf771d2a152fbd99b3aa26fc927a6e4
MD5 5adb20e5040e4c1df6443581d0c3e636
BLAKE2b-256 cb5206962f05befe43abe86ef54d065128b504c32578b47e47fbdf7eeb34851d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e57ad7323afa80e4f2b418a4942ba694071e1922bd0ed38158401d663211d5e7
MD5 3b0fdcc30d46fedf169a4017002b3322
BLAKE2b-256 f77f280a45cf0c68914ef8e2f14f41c1b620164c5225019a4331785e5d5fed30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8be9fb46dd1ade1d8c98a3e4559faf2b9446621af7c629626e080b94400660cb
MD5 d44f2980ca632e89dbc31e9826c9fb3b
BLAKE2b-256 ffbb1f40b2a63bbe8019ced08a7703845b386def8fae12adde40a47d3811ca33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c35e7fe16136dbccf56e798474665ea3bf040d7600cea4ef87396a82b2f5795
MD5 2cb55d1b7460396d06d261c51510542f
BLAKE2b-256 74a8ffc415cf6dbf42b2cafe18fe861e3c3cdb7d866299ed197f78bdb95ccca6

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa520ef98068596de505db8d209ac188eb7aa309344f6cb43c1d91111b1cae3d
MD5 6c13abe858157df861a7d2c74cc4058e
BLAKE2b-256 1ec12f05b4b40bf60574b4209c5c359d1f33323383c162d1482cb737b05d79b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d82cae258f05b38612f1c77b79feae32664e95fc7dc7db27c233c59b8aafb68a
MD5 d5474e940df4904267fcf86b37dddfb5
BLAKE2b-256 cc5078a50fdb38283bd9e7cec49277663f389826fb270d14d51bcf198e2f621c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bb1ba127af5d83f9581455a1abb3f1170a2d60c2fde26adc87a59fac8d604967
MD5 71eafec8fb64aed44a241f5d97273aba
BLAKE2b-256 2bcb544c290e6544569cbe7579d3ce506d4d1aa9ffb10d7d3a47e035b5bf06b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c8d1fb954f7ae20b47c35b54b12ab4eac6891973546019fa834ef557127bc90
MD5 c81a119fde6690e0467bbecc7d9b3542
BLAKE2b-256 c668e8da4920cf2a16ce21ae7cf6edc30ee6ffee661a254973af2957e380e173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a6c2a7c14932d595ba70c1fbfe3ad7bcb8e8f4f631e02c93b92c78aac01c661
MD5 dad2ad5abc08d030fe7005d15ba7cf5c
BLAKE2b-256 b2c0bf23446ad7aa2faeef30a7ca6d75b3871bb86fba47f139b04ab4c55b4247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 265351406e17101c815254b62dde7be261b6789adb45c78af03422ae3e670936
MD5 f3a60fca1c18a4038173bd8fafa80e11
BLAKE2b-256 25e61fb9b0c6c1c679f32d67697a62d8bce8267470415ae1592f5daac23b69f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9445aea149c200720e4aa7be22460db0d0c2b5e5b5a37fc6f83ff8aff54d559a
MD5 9fd2406cdb981d529c788f5728be7b95
BLAKE2b-256 3bdd27f21e0ab1b5b5c23aca75fdb98365c208de79a4b9562960b8b5831bca36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 30d34dc9464a1fe9c921a6e82edfdd2137f618500be7e9b6693fc3fb81a09a6f
MD5 151c94dab9aa28c27d87103273f9e14b
BLAKE2b-256 17485d5abfb0db1fc38b3258426ea061bb262575753e11b3eb04218372b1285c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9c8b7de2b6b764f5e6c50caddd52af8e171a9f7ff1e19c61f743e2d4bcb6fed5
MD5 70927cdff7ab4d10808e6ceaed7eb047
BLAKE2b-256 566aac05ab91d5d2664742c98684382a02559dca29540dba515fd3da707126b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-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.12

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6e516a256126e0c5bee6afd95ab0fadf5ee5bde1b787118813c9e697749cad7f
MD5 e04f1ed3b9739191aa95f9730d06d3b2
BLAKE2b-256 f695813e7b05358d750c6f8ef19ae288c82f054d31493d1db65cd19762806f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70909074275f2cc91a39204fb6a9e2ddc3e2cc78aacd53020f3eb43fbd85b6fb
MD5 e12a5bbf1a2111c0aaf3eed3ce05ad89
BLAKE2b-256 b0908921ca6f5d011fa7b2be4834ab133765bd66f346917d51820f36d08d55b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5fa97b49fa100645bdddcc445c06b4b4492c2312824793a5a8d3a673d8a06ce5
MD5 a0e27a1d0a48b089bd5f34ad5013b0c4
BLAKE2b-256 04245ea236049735a046114ac329247017ab38ac2e1a05770728b834e197dcc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 76d6434803c1c0bae7e6485a40d8a6edeaff7c657f84680cc1d1698a86727fa8
MD5 4a1479b9e3ffd1873d3269d154c82fb2
BLAKE2b-256 d1b6094f2430da02ef1c3008e03a3b2dba093992aa5d51952ccef2b4296ca715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84871b0806fb2efd58fe8c7017c6d13079ec3ee87602c729cd1ccb63ea0dca43
MD5 6ba3e6ac1d002ef42aca2e1adac3ef4d
BLAKE2b-256 ad276c68050a08b2bce1940692b13d56bb1055c4b5965b66ce81b559396f753a

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a966a26335bdb6e446ced5df7bea3bfefc2268410f4549d4622bd0fbcfa8a4d
MD5 2ebe9dbe65fd814fba4f37dfcf638fc7
BLAKE2b-256 32112095ee8a5ba018c19a297eb4a58802e3fb3b0bbd9c77b0056986b11fb7c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4b0cd4dfa13aad56ac631093d910b404c4a7e58b50efc853aedee55e6f2d6a9f
MD5 c614c498e6794f2591290e5e08782b50
BLAKE2b-256 bd415d655ee808000f77a816d6dc4fc1a2a96807991befe9fdd8864aebfc6531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 45d5e602cbe17c04b6ca128095524a3233d79645741bc0bc9edb4b54fbba1103
MD5 35a66d5bdc7038c069dc445222cefbd6
BLAKE2b-256 eb60ff694b764f5e043d19301b634b4576db1fa435ccfaa82f44c85f54999936

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cabd2d2939486c64bd1a672d176d75809dd1e89b40221bfac85d36e099fb191
MD5 37f78b345b017214c2d7c5656f4e9fb3
BLAKE2b-256 2071a637eee44140b99cf166dca1610ac3e5e29ea26099213f3a4c47ef78bbbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50492a832f1c45c622745b9048447721962869934768cf5c24ccdd8a09413063
MD5 95384d7f069d62669775043ec8638b8b
BLAKE2b-256 1627a07a0ac5e173b2fe2a0f7df00933b5a743aa9a65ca0f2e37c50401d2f04d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 acae5735331529328306600666271e202faf9982fb242a7fb6459938ae0b28fb
MD5 1d2404e2009f58ea22f3bb7f36bdcd54
BLAKE2b-256 d70f9500f7f9064ce73b34cc9e7c950ef901d330f6ca0f14dde48d2791821506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 93f3fc09c709d2ad08a113d167b386af1be82a71908eccad2bda6af24caf0b21
MD5 ec025d22715fc63955be8265c03c4d7f
BLAKE2b-256 104ef4e5dc17e46d86f5287af08017c4f7ed4b7298933d7aa4aaef756fd08084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bbaaf83d1a6884af25894b52bde75290876655f6a89c6b4a70902bc46ff5508d
MD5 58ad7bbdba536353577f3ddb40a68943
BLAKE2b-256 dd2eb21cc1621ba113cf57bbc18f52a874bdb6cf6cd05b873e6824e290ed92e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0e573b13230e4ffebd6802ba08a197750460ab616500a56a5724097d8aff84f0
MD5 398e6f907cd44d4d3b201a33ebaf73e7
BLAKE2b-256 dea7b81f3b3981747cae33ffff447e73a8846777e5650e5097ecddee5b158b87

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f7426d91feb9bf57e95293ee049f58eb1f59d9c49f58d74cea635e1025db7bfe
MD5 f4e144cc782f2159e6aeb34640bddf3a
BLAKE2b-256 03318c81d1e182b05469cd5ee922831adcd4aecc4f9a5726b56e253790261945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b762e1d24a263039f84ade9bccefeb44b4b066294b0323bbd755de7a46dc0a76
MD5 1d35b959fc36e9d093f1720f36e7f398
BLAKE2b-256 b63dd01dbe6be71b92673147dc92bce6495c653084877e2e5820f736ae84d0c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7946d343f17cd51914e9fc701d01dfab4463b2e8bb64b16fbb1bebaab3bd341a
MD5 a6c3fc055b8697a140050d75a61f49cd
BLAKE2b-256 e175d0f6f0d3e44e5f33f4c0a51fc0694a7d972aa3e6711ab1f5ef9c1cafca9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 868ee04ed5f8d8a9cd2183c2993c8e1fb75eea6085ca10b49b253d5674f5bc0f
MD5 6645a13ad9c735b31be32e252b1ea5cb
BLAKE2b-256 adfd0625a189d3a3e4456b3379c8b9eda23f27a9c5d348e73b16ba0b325166ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7ea7fb55f9562a8d6c02736081a3b32332f93f39d7cc598b4ac1a3bbad336b9
MD5 7a074a35fddc42d28539684ab8dc4d29
BLAKE2b-256 53c34839c28b018bf448bfa673289f9294424adf915b161e53853057a25c8aca

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fc33c4d04fc8fae00729143846408200b3e99eac209b952b6f805db996f9653
MD5 5980a066cb02d47ee3c29080d8f45d2a
BLAKE2b-256 3e1fe2282c24c2c057eab0ae9e482795c3cc5f5fba42cf1afe38dcb427f430cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c5071256d4dfd4100516b7e6ce1539305f28c23ce2b7f9403bd0df495282683b
MD5 29e2a954b581326daeb023ee02ca397e
BLAKE2b-256 7e4e9891b6484a9f3a20ca85c8630d51e0b3f187ea9ea4f43a0037757f97396c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c582964985cbafc3f1eefffdf7ff194df9eb0a63da9bb0dbe6b47b30f2c92984
MD5 11d0ef9bb85b2efc0b8d3ad8bc83344c
BLAKE2b-256 9656bbcab020a1316282a948f2a831220c22a9c6f14269ce20f0e0ac2cf5bdd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da2259fc95873a1e4d1b966048fabed3fe4bf1736943268685a5d494d3d55fa8
MD5 82e0346cb9efdb5f95fcccc0d0eeff7c
BLAKE2b-256 d4e726b2021ae1459b79379db2f9b37811dfb5440a808410a5000df80ccd904d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a45d61c995a368451e958e8b91214f7def329bb5bc24890768d5b28a15ea231b
MD5 e968aabbe6bae6dba1d1d6ec10748971
BLAKE2b-256 b41e851a8d54006e96bdd8eb5141528394f134714f3e3c626715e3b456c1fd8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 046e3c2afa492b5563c042fbadf1eec5e65adc53facff0ae83a1f95d4071afd1
MD5 baec02cfef7ae5f485a76ebc80bae355
BLAKE2b-256 d492db327671320da4c2a0c8922a6802e2056284e2af1b2af8b2c0ed4bcd4deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8fe692060a8c2673756157c4f283feb5b5b6745c87ae44a527c7aef41c5184ae
MD5 4182544c661e84a8233fe52ef46d2798
BLAKE2b-256 3938f4feee170ef0eac4cd4fe432041237c3e88550f0d5402a1b447af2a1b063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c08f7f2189fc8fef9c9fd8a8d8b142c5b80954ddb443eda4660206c83ec8000d
MD5 6754f4135376787b91bb75d2ed409290
BLAKE2b-256 ffca9044d42eb3fe9da15710b1b03b771d4ab1fb4c3b087fad679e840714761a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5c35952b92f99a083c99ae5068da1d5e398d8eac86622b78f341931b751d2585
MD5 6cad456b7b1da207023da53889306458
BLAKE2b-256 adbc43ab3355a38a2908bb0dc1927993c5e81a3c6c059fdb043a738f7f79cd0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a1654dc743dbecac5a5f81e830e6ba3ebad9f82469bc95023d4fdb9223922cb9
MD5 ce4bea93e197568aee36baae69696286
BLAKE2b-256 aa926171ffe4a7a8ddb8d8e060f54d6a76f2054b931ee1d9e072a39d4ea3493f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a97f231e48b6337bae2d88bfb6f583696b6ab0c1c1bd347f883853f9c05cc350
MD5 76c3cd037bb17d9f87f29e1834671620
BLAKE2b-256 b2b44b03be74e4c3abc31cfe5c31c672aee7637722ce918d70febfb603765c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 353a7aff5c8d20365090fa7240e2ff279738a0c38e323c5e512d8739745252a1
MD5 b9865c4abbb3fb84d05cfc21b455f88e
BLAKE2b-256 597bb3af50d079d19af723b91943caa1209b8f9fc1905c482f5f0d1beb0c61f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 af4de0859cb037c88cdeb88d8cc6add51f1c782906f70a2d10abf8be42c556a4
MD5 ce837fcf0de3b4907d6f68a053861686
BLAKE2b-256 2924f383fa98c392615c377f7139c67425a1ccc720f923dbeb5d5ac82abaea57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 025c15d7b4fcc47691174aff41e1ac38000a460279ae5671bcbf2440be596a75
MD5 69f3c6e6b3e3ff34fbf7cd16c604cedd
BLAKE2b-256 6d40625604e2b007494a0d8f2c6aa4f28516146e1ef5c811bb5e04d47e937431

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b1092584af7a2091c92335fc00dcbb661c9a5b97f2d84ed9c966185f0dae98f
MD5 d332fdb1ee2b259707cb5eb180f0dc0a
BLAKE2b-256 73266b14c7f84d42664679b6fc49fa94e71a2061c42f3bcf8ce4fc25e4e11cc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f2222f98bdbc0613265dd6311847facad27e67769c2bce3c11c8b478235b700d
MD5 2026fa0ce0ba4cbde4ffa761d2e964a6
BLAKE2b-256 cfd4e2637f1010d2ce53222bdd09a315632048186ac61e651d8715d2b13d39a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 88fc4bf5ef16966f2fba190f5528a35005c6e0ecfd52251592e7348636a6ffcc
MD5 ebbce208b18e87379e40192938ecd845
BLAKE2b-256 0a5348b42dc5999ec31510290656fe1bf72990dccc11c20ab41725fc1a54218b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2d6802f2aa6e7ae399539dc962e604459af22bf7309829f02ba5ccf5917b9ae
MD5 2808aa2eb731394b2a74b6094de46b33
BLAKE2b-256 802c9ff813942bf9a740b8c365ceae7adaa9c03c6a30a9e4ca379afdb33c050f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89e218fef2003d601539627c6dcf6975776f9f7719b525a6c3ceb822938c5740
MD5 5547f93ec5e0a1e7a58acc86defb5a49
BLAKE2b-256 a292ed5dc9a5cc677783144a066ab5bfaa79f1627cf5eb69a7da9707ed0a766c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51717540888bff4d22024a2584b3b459a5899c8ddf898de969a058215bb98427
MD5 d2b35fd47c34c91be145fd8c6fac5e2c
BLAKE2b-256 16d8d58854cc0660bdcc845656b841890430b102a7c61e445baaed854cf1573e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 59faf7bfad8ff309aa79ddd77980b22f0e32b294e85292efdd73adaf7fe61ded
MD5 d0f9f08170791edfbfec8688b1644752
BLAKE2b-256 c2f057683196e6ae324fea72ec99b0c12edd1dc9134760710b7adc091bb67ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3ed024487c3d5020d32b92ae02e556c571417efac1e8bbce79d6a750d0ad2763
MD5 6d4dd1fd478809d254413b8c5ba315c4
BLAKE2b-256 d6da87de733283a37e1214a17481ba7114ee3b5f198d43544f2d170d7fe48039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a7fe63e51c212b037e97a561ae610f74f80d5799f19ada11cede817c89de816b
MD5 ec5d081c6fe7a7ae01d4750a10febc23
BLAKE2b-256 2b41d6638018840bbd3f92e4088068f93b858f346c19e4b22a8187af344beb2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.5 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.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dfcbbbda968b468be93d255fb4d9cd34d96437e87876468d722ba14a83096bea
MD5 85534d5b20718093620f12e605e1d574
BLAKE2b-256 25722d720e4280ba41aee6b23ff40522b004173fccff6101e5e55613f32e4ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7dce93210b2defcccf6035cc39cf1b6a8fd7558f31aa7aea471a8682dfdcb02
MD5 f1f89eaca86592140b66c97dcd4ef726
BLAKE2b-256 888c3cd68e5fd91ed7f5e646af16a5a60df917c7e210c6579366147fc5fcb41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c15513c3a74463b8f19933395dcaffe656b1b2dd4a4c3da48aaa75ade3eadca1
MD5 a6fd976cae57489c78f0577de3001075
BLAKE2b-256 a347af84b5e1845587b8a00587ed3d821033c0fa0c84498b1edaa0076c21431c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3c7738d7f1c9ac7e01bd0990803bba93ef6b555939f00ec827f08e24cf7eb674
MD5 8dfd5ffbb9fe5d64af8b1f486e1d2a5d
BLAKE2b-256 ddc17feba51ed28427801ee45ebc78c70eb516c9b7e4cf4068bbf9c68301335c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d7e62744dfdaae928621817639fada40b6c6917241391cf3776633248f51e96
MD5 73719d9134585c50b1bd1db252beb3bb
BLAKE2b-256 75d5a2bd146deccbaad9a90508e640983496bf0431d80b56d74eb9dfc59801e0

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8305130d1d9df07035bf26240ed4ab0bbc108997d8a20989bde171194996146b
MD5 f44cfe48e6fa5d3a8a5b6e087efb0e8e
BLAKE2b-256 759dcc4c3cc5a2f2a7eca65cec080aef3f09f94f7bc3e2d0558931882aab1384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 efd1beb925d9110f72a865133c5ae3e9199adaf8388b2ba47c850f025e560d14
MD5 86478fd8c6236584adb0bcdd520df7a2
BLAKE2b-256 df8bb77222098aaea010b9f938738424b88ffc932c47c33b4f6031fdb725f937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cabc789ec94cd50d1a27eed3869ebc66d49fa896cefcf6d9430f68357eccb15e
MD5 9c5deca4be8c7091d1561d49cc128e4e
BLAKE2b-256 fa64c48259381aceacaae01776d6c8b77ea49ff661ee1385b2ad294d192352e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b0968e54a09be2bacfed7001eafe0c4273abf7c59b1b2a76be0344ed003d6ab7
MD5 cf1738822d3aa358cfe5048730262a98
BLAKE2b-256 dab283128a1e01a26398b6741df35d1c7084bb80568295eea663a020cc46bd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd2741978f88f49170827e19ba38691961eeddd9d491d31018dce67386aa87cb
MD5 23a48bc5cd07bc4b689d326cda6334c2
BLAKE2b-256 425c0e60e484ab947f7e85c185264c5d85dadffe3eea281253b463bbd5f1c12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ecd379374c21fc8155f123a3530746dfb92c0a7dab69b416a3d3810759e53194
MD5 9fb3a3684b51dc8068944f6b60890bf0
BLAKE2b-256 dc74d337566253063bc60296dd65fef0bad4e4c8d30dec79d9b8f9c74b9f1b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1ae46f655ee6ccd454c89a921f240a4a0c02837f32a4ea64a9902308c872e269
MD5 129bc3ae61fff0e1301644249128ee0d
BLAKE2b-256 9d1c05893e5bae3faa06d077b8dcddc01a15878f268be165e54015e0aa712692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 dd939d44cb4fb468709723cd31bbbdd4875445bd132cecc638ba83094589d2e0
MD5 ee3d3d3500c06402493187a988dd2f47
BLAKE2b-256 f81087d88eecdb4d10283c829e67054e0c2d72c47ebe8a17a29ade32e1d39ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 43518eb0a564e69ddd20cfe128ec9485b454094beefc3e45ab982ef08e07e906
MD5 9e143f87d33c978ccfdafd55f1065166
BLAKE2b-256 5e93a8486786151bd3a3b6976ed37da55cab93b0dd46289582fe861c64cda245

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 20.5 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.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 81bfe7f986cbe3ce1733781118c0e0a832a2365192e74e83f8c42a4988d92c69
MD5 4f597efc526a2e27567613bb80dc267e
BLAKE2b-256 777523ce8a7cdfcadc78928b1afdc2404f57e30c56a2e9a62595c77986083639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f2f8499c9860d4dbb7ad975c5979f2f4e558ac6b761453b8e686b213c7520f
MD5 57fab578c8f4ec05e8f5555c390cb50e
BLAKE2b-256 ba3ba0c1b67433ba0a5885b471ed3c2176099586a25b756dfd3d06387ab857f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1b79097aa21c70778c611b04406b65cc2a78130c01f7b66b12d6579799883f00
MD5 2cb0a2eb22643bab05948ea643c37e19
BLAKE2b-256 4b325aed434101167450bee43d90b86c4955f1f92d90b2b0bf5775c0fc740e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 364fa08507a034324f807c76fde2bee1e4092b216f8d314255b81d1242c30ec6
MD5 e939f6864b2653b3bdae0cd6ce46af4b
BLAKE2b-256 5581ab92fb9468719c5e6e46314f52173a29732c52a0962d212002c0a4692643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a55ec829f0e135e7213e15520252096d572c0ebd40885cf4478193a3495a83ed
MD5 f80ff778d322e028020ac62054863c50
BLAKE2b-256 ec29720be8c99a3cfd555714f03a02138764e548e5479716d84609bc6bf5723d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f7f46c5a3c5b6b904effd85b95b2b1f617f20abf540321d3f1c41faa69b68ef
MD5 7875b6bc5c84ff0d36ac0c7b5bbf41cb
BLAKE2b-256 2a04ef9c83a7ae52a703a310d8f9458154a1aab8a3cfd76beb86a0dacc1d1e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b886e8e2e2098a21ae40d48405d8b3c72aa5c21b882e247346a490864ac31f31
MD5 bb0970a8458e2c3282dcec290cb23406
BLAKE2b-256 de9b1736ff365a64e28970dccd1ce54ef2a9480aea989bcb38e2d94319eca9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fbdcfba5df06468338230d2c5bf97282d2cc99f297fced74908a88bfdbeb2b91
MD5 f7d7ac5c470592ac681ed32d3f173488
BLAKE2b-256 3f34220f862187f731cc2232fc089c1019e155afb179fea8614b8ae6c725579b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c10fadcf46d43f245d40ef40ca30b3b31addfe063a83d284cf8df36cf8f51995
MD5 fc956584f8878d6773287655d56aa32a
BLAKE2b-256 dbc4564b6736fea51100323f7d39a21af2472caa1626cc8fdb309aaac10b0175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54752ab12fbe3e10fe03ef7f786d52a7867881eaec1ef1c27e2d29737bea719e
MD5 7760218d68c917aaec59a10f34db161d
BLAKE2b-256 0e537db6797009d140b132a526e264c89c1b560874c363e328a5c4d8626364f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b0323915d62b5a94da2e0a802310b500db331a6335901c064dd2c0d7519a9c9
MD5 2eef7f3e7f18b73df8591ed4ac09b271
BLAKE2b-256 994af293e30a3aa52bb9833f8eb3c90d5f224b5b4e4a70ff41596ceca2c20da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2fc8062bbc5b54d4dc7a1197553aada7f3a95af9767d8fe621d94620d491051c
MD5 6cc3b6bd0786893fe002936d6f028cf3
BLAKE2b-256 57854c9edcbc611baefce1723b8bb243d500300f5033427608fd69affc86ac43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 20.1 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.dev0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fa86e27026009f789d736925238d9eb30ccd5152496b2d7540020932a9d7c298
MD5 6b5fc80db764466c5be562c4567b6431
BLAKE2b-256 b281f44280e2fdcdbe0dea8b00ed1d0a530e63fea9fd6bcf31f6ac63c176227d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 22.4 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.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 697c7eb67487bb6409c02086776282211314fa880f031549968a0a3837b0a1ab
MD5 a645a9a94513333edf4d978de121cada
BLAKE2b-256 52d0547928135a1a3f700575952781942b27f816bbb7b007c98e6b21911e40a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-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.12

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f449f9c1c766d39e848a28a694f417bb442cdbbc0ec5dfc22aebdf05f2c44f4
MD5 c028c72c1adbd8a05eedba21f1b5e8e6
BLAKE2b-256 90ca1b149c4eebce5d41b5ff1df865a33addb9c06de8fc46eee1eecb0cd60175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc7caea288d8637f909f14fd70cce498d57478ae4fa1e0c7df28ddc75057aa5c
MD5 a9323b30b068ac9649e9198379962213
BLAKE2b-256 3b977f7eca1dd52df852c25054995514dc6b70a92ce12674b23d561e9ee4b48e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 55155bfbaaca8db8c720625d2bd2fa5cf8af8ad601f1af787e753b73ace2ab86
MD5 052646c82ef7d64fcaa8cc16b4b7f5f4
BLAKE2b-256 1bab7ffe82320868700f82d5fac21c627eab1e3126404c2d61928b3220894a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 05728000108ce24a0c8f5df8f7705700f6c295b9f161fa57b1556a7ef68b339a
MD5 559d052bf126583b956edfb6fcfe265d
BLAKE2b-256 fa641f1b0fb76bf82de672dbc881d9add2c38298cffe08358343686c6e698d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ee869c1bf11f2ef712bba5b6501cf647f777f9c3ed21000214a5e2c46befcaf
MD5 e0980ac272c413f9c17635546efa1804
BLAKE2b-256 6d482b3324206270c3425bf95ee87a04ae025889594d5ca6e5c849a5fa0c520d

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 711430f22fa16a445f582f1e020b0d65f50eecdc781359286cfe455b298f7334
MD5 42a8e89078c158a6a463cd2f4b89525c
BLAKE2b-256 8b9f5684f472698b355372ab61ff17f642fab919047d0f0ec65edc09a135270f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 237e239b0ebd3b25ef73940c0dacd64e22135a083b919a8551ef4df6635bc11e
MD5 a366bf9fedaa64385eba36c3b4422521
BLAKE2b-256 3315f3fa1e7ceed798adb8b49eca2ef0a380edbe1ee3a212e8012f6f7221e26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d18996228b643cb0f28c5a1f1dc8096d589b3dd2072b39b5e9bdecdc755d5a6f
MD5 85e9008d68956f03683a03182e93ea43
BLAKE2b-256 9102e5c9b23224735427dced01f04ed5c022999f31defc3d4e16661b0f19644e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64d539b7f04d7c51ff7702e670523f57abb4e80c9dfe9f766c82b279ab780c33
MD5 1260ab7bd91b7d7b7a81b2ba53945011
BLAKE2b-256 fc677bdc417d3f95c8ae19e3043936611f05bea0d598d505fa9ba411733cb155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6d3d9f507b270c9658618ed1ef20d688752ad6e4ede864bc825bc6c360f11c4
MD5 1ad2cb5c1202e74e3fb23b506d5b6978
BLAKE2b-256 4f0584ae52f8aa6840a4432578f723ea1be84fe2465713814a1e799511c2b722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 01257cfd299199fc707e468383bf5c823e1c0de3ca9c14497127f76cb217a53f
MD5 3c54ecc59221be7f4f51a8baecf73196
BLAKE2b-256 f703f5a428a4ad6716571dc0092bd37e73a140f916527119016b57e5ec2d1c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1955f03d669b3af208d8b7718aa4acf03e9c099d515e6b714bab25b36f67d1c3
MD5 b22cdd630146beb857731a69983f0e65
BLAKE2b-256 58c88c33cfdea78bdbf9fdcc8a58738b77c1fb80947bf467832473453477c63e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 22.3 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.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1ea28ad0c74c3cd844c79ff78c8c49db965ba918f7479994a3b62746e25db4de
MD5 99fb15ff0197f5da4d43ab3dd555d97a
BLAKE2b-256 c031c12b19c296f4b308d67ebb5791648183339f8d7768e36399c4b7d4bf01d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.4.0.dev0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 20.4 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.dev0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 84d572d93cebc867c745854ecebf2a1d3e9356ec7db99894a70063da0805de29
MD5 87af62d9388c4f46c1fc45b59fd3a6d5
BLAKE2b-256 b322bbbc8c718965edd02af56f2be4b0f41d83a57311a2250c9ea30620f82ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e113015fd0aa57bc9d8b32c852d4ce3d6417d0f0f6b07715c5388a3e68cc5e2
MD5 1842fed506a9ae5007062a2914ee7a55
BLAKE2b-256 d0216824d768a1e2ccf64db705298919cfa2c7cfd6e7766130fcf3666e4e4390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f5c4a82675b333cdb8de4c6d2df74d9427d506e302b03cd3ec755ac709b3416b
MD5 e72d4b3b53124c7b19ef8589a6074a50
BLAKE2b-256 2908532f2f062bd0214948a519e34b420e5546094d778c06126f36814f78a1aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ea688482c9fb625a73823e15c34fde0a775a272a32d88af95399c1d5c614813
MD5 f7b4e2664d1d071303a5d5e818fb0861
BLAKE2b-256 958549efb7e9f72831cc4ff05c13719ecf119c741d16406f929854717ffa48b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 131608aa9ab2669189f5c5f089e5eab70959d14389e775d92a62632dbe4d7548
MD5 748d6f541baf7284f5e952791148ead8
BLAKE2b-256 5773fde9efb9fd65d6a11324a428673447c818d8d37a4fa23014e1f1b7327b39

See more details on using hashes here.

File details

Details for the file hiredis-3.4.0.dev0-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.dev0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2a63217e5ff4679aef58b650997253314a3a3cf88a238d722da62aeab724f40
MD5 4879967446304fc876b54071827fe474
BLAKE2b-256 bebb5f669e0f81a922bee53cff7fb838762d418f383e1cef66cc81fd44c4aa55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 27c39863b20f2d1d0f809321278d26fe109c0163e8b1910affbf5f09e0822bf0
MD5 efb0d374dc01e10bdccf7c8a12c7360e
BLAKE2b-256 b64973356c36f45d4ab4f367347b7200838a58156b8b1f125a9133c1966952a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 96016ed530e053b9be391cd23c70687eac20dcdb9a37a25a08d158ed171573e1
MD5 0d1de572c3ef26900d8342961a4de912
BLAKE2b-256 733e6eec4f7e53cd9a870c40551da744d21366dc0776b3baf7fc3a656f19a090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61c56da32abffa59d4d9b5fd05d7481651aabc62eeae9b1227e4b37a13c4bdad
MD5 a5c946df8ff0a60a4a54810e90243138
BLAKE2b-256 71f4d5d63717b0e2c29e5c9a7a759d8e49cabcafa5d409272f9f25516fffba56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c7b7b8ce802d0b1a2f7ac33fea528acdbf44a326ef7ccd58c165c5b626eb097
MD5 f84ba7c2002727a7cc23c3b6d56e7369
BLAKE2b-256 6e905fae440e750313253fb8392a92ddf16df85e8eee331927cf984e547cbde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c6c9102532caf227928ead2277e0a797b12789d899b145960b2ff2feb088ae7
MD5 56f10235bf29fd9aee4969a661520969
BLAKE2b-256 ed72c208ea2640420ab040c8a3333d87f7eb2efb796c2f7873e5e454d3c2989e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.4.0.dev0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 438def8f4a24a74ba7cf4649e9ef7dfc970aa9ac87e7088ed9f8cd9bc7a5e479
MD5 3b93b40c0a2570555bef261d6b6897a8
BLAKE2b-256 c57a8cb276ec6eafae293f7d7879dc71eeb9f0a83a23ec3a2fe4445d936d8349

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