Skip to main content

Python wrapper for hiredis

Project description

hiredis-py

Build Status License pypi

Python extension that wraps protocol parsing code in hiredis. It primarily speeds up parsing of multi bulk replies.

How do I Redis?

Learn for free at Redis University

Build faster with the Redis Launchpad

Try the Redis Cloud

Dive in developer tutorials

Join the Redis community

Work at Redis

Install

hiredis-py is available on PyPI, and can be installed via:

pip install hiredis

Building and Testing

Building this repository requires a recursive checkout of submodules, and building hiredis. The following example shows how to clone, compile, and run tests. Please note - you will need the gcc installed.

git clone --recurse-submodules https://github.com/redis/hiredis-py
python setup.py build_ext --inplace
python -m pytest

Requirements

hiredis-py requires Python 3.8+.

Make sure Python development headers are available when installing hiredis-py. On Ubuntu/Debian systems, install them with apt-get install python3-dev.

Usage

The hiredis module contains the Reader class. This class is responsible for parsing replies from the stream of data that is read from a Redis connection. It does not contain functionality to handle I/O.

Reply parser

The Reader class has two methods that are used when parsing replies from a stream of data. Reader.feed takes a string argument that is appended to the internal buffer. Reader.gets reads this buffer and returns a reply when the buffer contains a full reply. If a single call to feed contains multiple replies, gets should be called multiple times to extract all replies.

Example:

>>> reader = hiredis.Reader()
>>> reader.feed("$5\r\nhello\r\n")
>>> reader.gets()
b'hello'

When the buffer does not contain a full reply, gets returns False. This means extra data is needed and feed should be called again before calling gets again. Alternatively you could provide custom sentinel object via parameter, which is useful for RESP3 protocol where native boolean types are supported:

Example:

>>> reader.feed("*2\r\n$5\r\nhello\r\n")
>>> reader.gets()
False
>>> reader.feed("$5\r\nworld\r\n")
>>> reader.gets()
[b'hello', b'world']
>>> reader = hiredis.Reader(notEnoughData=Ellipsis)
>>> reader.gets()
Ellipsis

Unicode

hiredis.Reader is able to decode bulk data to any encoding Python supports. To do so, specify the encoding you want to use for decoding replies when initializing it:

>>> reader = hiredis.Reader(encoding="utf-8", errors="strict")
>>> reader.feed(b"$3\r\n\xe2\x98\x83\r\n")
>>> reader.gets()
'☃'

Decoding of bulk data will be attempted using the specified encoding and error handler. If the error handler is 'strict' (the default), a UnicodeDecodeError is raised when data cannot be dedcoded. This is identical to Python's default behavior. Other valid values to errors include 'replace', 'ignore', and 'backslashreplace'. More information on the behavior of these error handlers can be found here.

When the specified encoding cannot be found, a LookupError will be raised when calling gets for the first reply with bulk data.

Error handling

When a protocol error occurs (because of multiple threads using the same socket, or some other condition that causes a corrupt stream), the error hiredis.ProtocolError is raised. Because the buffer is read in a lazy fashion, it will only be raised when gets is called and the first reply in the buffer contains an error. There is no way to recover from a faulty protocol state, so when this happens, the I/O code feeding data to Reader should probably reconnect.

Redis can reply with error replies (-ERR ...). For these replies, the custom error class hiredis.ReplyError is returned, but not raised.

When other error types should be used (so existing code doesn't have to change its except clauses), Reader can be initialized with the protocolError and replyError keywords. These keywords should contain a class that is a subclass of Exception. When not provided, Reader will use the default error types.

Benchmarks

The repository contains a benchmarking script in the benchmark directory, which uses gevent to have non-blocking I/O and redis-py to handle connections. These benchmarks are done with a patched version of redis-py that uses hiredis-py when it is available.

All benchmarks are done with 10 concurrent connections.

  • SET key value + GET key
    • redis-py: 11.76 Kops
    • redis-py with hiredis-py: 13.40 Kops
    • improvement: 1.1x

List entries in the following tests are 5 bytes.

  • LRANGE list 0 9:
    • redis-py: 4.78 Kops
    • redis-py with hiredis-py: 12.94 Kops
    • improvement: 2.7x
  • LRANGE list 0 99:
    • redis-py: 0.73 Kops
    • redis-py with hiredis-py: 11.90 Kops
    • improvement: 16.3x
  • LRANGE list 0 999:
    • redis-py: 0.07 Kops
    • redis-py with hiredis-py: 5.83 Kops
    • improvement: 83.2x

Throughput improvement for simple SET/GET is minimal, but the larger multi bulk replies get, the larger the performance improvement is.

License

This code is released under the BSD license, after the license of hiredis.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hiredis-3.3.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.3.0.dev0-cp314-cp314t-win_amd64.whl (23.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

hiredis-3.3.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.3.0.dev0-cp314-cp314t-musllinux_1_2_s390x.whl (179.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hiredis-3.3.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.3.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.3.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.3.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.3.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp314-cp314-win_amd64.whl (23.1 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

hiredis-3.3.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.3.0.dev0-cp314-cp314-musllinux_1_2_s390x.whl (170.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hiredis-3.3.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.3.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.3.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.3.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.3.0.dev0-cp314-cp314-macosx_11_0_arm64.whl (42.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp313-cp313-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

hiredis-3.3.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.3.0.dev0-cp313-cp313-musllinux_1_2_s390x.whl (170.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hiredis-3.3.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.3.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.3.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.3.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.3.0.dev0-cp313-cp313-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp312-cp312-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

hiredis-3.3.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.3.0.dev0-cp312-cp312-musllinux_1_2_s390x.whl (170.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-3.3.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.3.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.3.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.3.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.3.0.dev0-cp312-cp312-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp311-cp311-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hiredis-3.3.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.3.0.dev0-cp311-cp311-musllinux_1_2_s390x.whl (167.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-3.3.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.3.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.3.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.3.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.3.0.dev0-cp311-cp311-macosx_11_0_arm64.whl (41.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp310-cp310-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hiredis-3.3.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.3.0.dev0-cp310-cp310-musllinux_1_2_s390x.whl (167.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp39-cp39-win_amd64.whl (22.4 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hiredis-3.3.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.3.0.dev0-cp39-cp39-musllinux_1_2_s390x.whl (166.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0-cp38-cp38-win_amd64.whl (22.3 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hiredis-3.3.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.3.0.dev0-cp38-cp38-musllinux_1_2_s390x.whl (167.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-3.3.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.3.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.3.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.3.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.3.0.dev0-cp38-cp38-macosx_11_0_arm64.whl (41.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-3.3.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.3.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.3.0.dev0.tar.gz.

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0.tar.gz
Algorithm Hash digest
SHA256 c93b4f818e70536046480305e88c7a48f986bcc42ea29e5aa43cba4ad80dd0a1
MD5 d726c2bfd84a6427ff7c8b81d436e50f
BLAKE2b-256 579ffa144146c1b00ca1312bd339fa5bca7317e644caa22724d35e69c23234e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3effcd72fc133541f76ba7d083add1c025d940147c377acbefd993a807d4f523
MD5 33c51e26732f32e0f5d7669eafe8e6e9
BLAKE2b-256 7461ca72f66e6e5d3821792e799f34a21208000576469add001e9ad833a4046f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0877329cc54b900dcadefd3b89a896c5f80904713970432800d8aa932d3683d2
MD5 2019b96ccd75f916797d981a56234665
BLAKE2b-256 59dac3f86b3508f51d76c7d2aaeca74bbc30fe99b266039e354c49e7cd401193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1aacd2776e4b1ed950f41723ee12694aa807548b65d302ee53b9ee5bd2670232
MD5 24e572702caf666dbbf097b9e44b7e84
BLAKE2b-256 2f3398c054505bfb3cbc2fe6394eaf8983513cc40f348851188efe4de6561c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 01d6bc2a41283f3544630b609d1297c1c40f0f5048f2865741445041505ba029
MD5 9763d71eb21dac761b691559075468e0
BLAKE2b-256 806c43651c494a721016480a1fff43f0dd868ac06111df69ba52aad8f48dc6aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b43f671b9a3fe75e515f3f782237a1e2d59fca22d1295c1b2e200f805c370ba
MD5 34772ab260ec2860bfe72ebf13d4d259
BLAKE2b-256 22ee72a72d867b2d8671992b66c2204cbcbc826aee6943f034ee8b8a588216e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bae4e52877e5a4ff5e3d616c9f1a8fc23ccb9683a7d0cfc0d8fc8485459f61d6
MD5 3071aeb48c81660372638e5185a095c7
BLAKE2b-256 5dc93446b971239ec08cfa69212d7ab77bb9a9cb0214a2874d48e26cd84c4117

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ff3a89930075e96140df7f3184e78eda54c117b5c7c93c897ac34b755466a5a
MD5 1c547ef28422b9bcf08c8f056c12fe82
BLAKE2b-256 1acbb9f7f984a069c4f6554976768a120e31f9b2f52810ecf62d4e12b3ff6d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cc50a8fff53a7eadfb9ef886e82025d3417c3c2eb68d7cb77116b8cd7421914e
MD5 46866b0bbcc2dba133d7fdda929d55e1
BLAKE2b-256 cfde17d657397f6a6c1c4562fd1ffc6bcb1755049c58da0fea8c97d724a80256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 22cceec8d4d00c1a8796e8046557222be3fa6b18799f9959fa5728533c968236
MD5 58c6d92ccccce40f366939536718ebce
BLAKE2b-256 cd1a0ee8f0b6a95eb5b866afe883b44b15345907332d1a8964220b6123d46b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e81a67cf9d562fae5689ed919872030e77a9310fd7978954ae2337418a325cbd
MD5 26c8b1ae3e40b2610a27393ecc99f59d
BLAKE2b-256 52a46b6782f16aa7507a9627bf15eacd2a0d9f6772c27a23ca0788fcd5b3f86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1c0111aafd66967885978f1d56515f9c974ff28ea0f26d220faa2d77bc548ab
MD5 41895f1b51d91f07699e23441d874bc0
BLAKE2b-256 b5bda81c047dd538e790ecd3057b85c1b8036b92f12eb0d003c06302de5b06da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9b6bff05100221546415c4efd5f614272f243eedd8128edba5637b691a151c95
MD5 99ef8e55e4a64b64b0bf0a86d1a0a03f
BLAKE2b-256 060225ce6850faea1eff9d4337c6521fa4cc9ebbacc0c5605db896f95c72e423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a40b6948c486f21f03ba3e26930d25e72092e654250255da250d48d069900a3b
MD5 1651bf73260632072bb20b3cd8f5558c
BLAKE2b-256 bbc7c1fa5f478500b596646b62bc23932b41ea8e46b560911d92d85f6302cbf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7acb565ea5a6dcb5af66aa4002f9b9dccc0f265eedd08288b94f8cd22e747e18
MD5 f9736e50a56dc050272f40813fb261a6
BLAKE2b-256 3ea87656b122a1664781337cafb016dee0e2267bda761ecf319e8eb927ef3594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8acd31e62cbd12d2b142488f3a393551188c3f5a30f22cb7880fab4b4299ba2e
MD5 c6851d8ad7a91d9d766b9b15e9c81d8b
BLAKE2b-256 e21a572230d5386306871884f6b18eb8cfe4ffbe3807d7bb660a492d6d911486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18da02a7fa9383e2f81745660ac5cef10b7716572b4cf29381ffe0b20ba354ca
MD5 0c61be7bb1c9e4862636be3ff95b35ab
BLAKE2b-256 9a3b13b1173b01714ffacd70456c3d79d1532d791c071b10d638c4debc32cb7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 736117fea2a2b6cd3f12bdcb95da68ec1ef6a6cad10fa600e3615b365ba988d6
MD5 2d2b95c56970c2ce492c9239ae2b837d
BLAKE2b-256 4676d2abd7b0de123a89339de99c08d869137373e5348d11b39cba07694ec58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bb95aa263b2f700385994d0c621dcec25b1e46fa9edbf37e55eda6ee600d6949
MD5 48bb15eb9366352fdaa044f02d2d63b7
BLAKE2b-256 5f1c9d061d43553f239cf733819b86c91f7d51d8335918c1b0a089ab878dace7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50f0b97580b30113a55684c4e1dd918558f813b4762b8382afcd4f41052c1566
MD5 baeb636101ac5eb0a3de0d3a5187d798
BLAKE2b-256 251b1a6ac433daa138bd2a9f700183608cc97e33915b66a0522793cfb52de88c

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1c6ceacc7c4ad92ee182e5399b02f7964a2f32d91a13860f4012026e921f686
MD5 7f6fbbb1f9b4136652310b4f420d30b2
BLAKE2b-256 6284e7f02cb2c06c4143224ce677d424aee3124ef997d2e8cc123f9cd8bb2e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4e057c4674260ca159641f6bbcbaa0ff93f3f5fcf3801e7223add53cf0293762
MD5 a2f42e8e48fdaabbe399104b32473d69
BLAKE2b-256 b3f3d7d9d65f10b49cf6cf60f17521622423aee8c34cce9b4009a55a7b5308e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 72f742ee2d2c01cdcaa10eb2ad4550854b163bb9d8705bee9dfa252a20d8aab5
MD5 0382f002dfadb605aa8d90cd0b796f98
BLAKE2b-256 b2a0a9f00e46ede9177b7dd865072bd46928758671fd15494e9889ab2066c491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c84fc6e25a352516582940a3229d1aee86ad69b69bde8e8e18e1b62ee20e541f
MD5 3cf78eddc2af853277fb4b43b2997074
BLAKE2b-256 01ee173c047a52af81758591f2f79fb48d152a44317a6aad53b171c68725df27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3c8ff95e00ac4e6ff3272840f3292d5a993e18b305a436ed38a8f1444711362
MD5 de786ef476b06497b891917c2e944fbf
BLAKE2b-256 7a38f0e95a9f8e00230c95aa2fa606222248ec7c05e87c0a5453ee9265526b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3d9df6c8f206073ab44a0c998c012ebf37e910de7ffe7ff940e8b15b79967de0
MD5 8570f82ea70834e38902a3d634817b9c
BLAKE2b-256 34de4e6a4abdcf933190d24095bf8ea3a727404be340c646c26e9290f7aeab2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 fa3cc1f5702141b9bfcf4dfcd88d4519e256e49b0595767df1afe0e2dd3b58d1
MD5 19d5d57a808b1bb810f76a2c24dca635
BLAKE2b-256 df8d9930e30e6d7800f3bb8bad903491064da9a37f490bd3dec4e87a9465b8d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9eeaef4e81a39d2455128ec7a05d714828752b67b30ad64af6a3a72591355a4a
MD5 b674caec4c7ef3cf0a33483a4926d40c
BLAKE2b-256 363554d583758c598c573833811863f453214d3ebc653b5e3bed3bba86cd5b62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5c91b6f55b9f702c4d24a9e3fbda8de608c5538542a885144d9f66aafa8074c1
MD5 11cef2c56bac2e96ec5232ca03ec21f3
BLAKE2b-256 189af9eb055edcdeb9ee682a823de626dd0fb235028cb03c35aaa91d652ac326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9083be0d29abe64ac856877d9509973a7ad48453d8c7665a1e6685b5e0a305e0
MD5 b7fd6f7f1e9012bc478e8c10c00bfc6b
BLAKE2b-256 f151881f22292f4549735f15d8b6d631957a8acda1fd073cddeaff6096659a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 527d0ac4fbad6a6dd93b78f97157868bf43d604ab3f8d23cba450614e0ec897a
MD5 abc2ee78a3d51e0924a1562a61dbcfc9
BLAKE2b-256 9cdafef409d7c2da2ad5fab397c7028a402bcc6d600c1fd6cad28a7949eb41e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7b4b39818f901c5e44689d0ffc3dbec12392e98a01e69485f1ee95adcecb1bba
MD5 f8c120a915fa3fd024448caa2011292e
BLAKE2b-256 b347ee8dd4bff05f0ac269c0c93ebe11f809e79849fde6b1f375ebd04188cf9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb8263d1f1eb3ea3c1608d6e1b88b1d605177a3a9f43e3b84700dbc99a02b2d5
MD5 1db95844b935e38498628f3aff0549c5
BLAKE2b-256 0c696551b412832f2c5db86860d37532cb72702fc47363d488e20769d1413800

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c60ca4b56336c08758343af9096d0323e119135d62d1044f2ec236d9152d787
MD5 b3e277855a78b69339d64027f729edbc
BLAKE2b-256 3f3d4b2ebc44504a209e623f994f84efb95c91cd83f86f9d41f85fd9816d064e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4f04dddefd1c3778d44a60eb22573610bca77200ce79c2c5a73a53849b65fe7d
MD5 3f5310cf2ac336be5c4fe7ee1a67c6e4
BLAKE2b-256 85c36031a37e5c010632ac74af252514b11d0335f983c854bc3b1ba4d89eb016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0bd715cde181dc70540873e0c17d7a65a17e851074aa921f2b93d1f9111781cb
MD5 15456a748e41968aa63610913771b09b
BLAKE2b-256 9cca663e73819aae287f187103eacaa7a4a88928e353d7841ab2effd5b4ace30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da00b17293b63294a7303632de38baa4b9ccd953372a95b89c16a9dfaf804b54
MD5 0376e7897d7dfc9d4136611fdd8ad5b6
BLAKE2b-256 e0a6019afc228f327639871d5143d7811f1136905c75aa30f08d6bace6a06a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15f2241bb1900b648a06b296e1ca946d93cdaac5fe8b06d3f27d39d3bd604b19
MD5 7e5bc59a1152e0affca3e786707216a7
BLAKE2b-256 2e36d93abfddbed9103f66ca495aabd8e4b3a344a14261a0871b8209097f0695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e5b848df833a7ed4bcec86bc0c5e7d32c23222cefec2b1337823ef9471a947e
MD5 a13fe46461c8d9551f2790ace7edec56
BLAKE2b-256 d7f25fedae4fe1404627f6c4540b7dba9fd795c479ce45ed194acc44ece9f28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b39e8363443a55ab037c499c07dbfa30081b8fb680f2edc24bdf8fa4409faf7b
MD5 26f3d7156f5794624f44e81980452063
BLAKE2b-256 3293aa72a247cc2a07f73f97f0f7e5e0e82358ca260e0c929bcbb77f5401ca6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ab8845849a56908adb21bde7f654ff5143c4c235e414ddd1c235d6c853db525b
MD5 c6879c3645b6e4c32aaf852c822ff21e
BLAKE2b-256 3ef2fca608dafabb8f006e7fe7a4c06d3dc204c1db48b7082b84ea4e638b7f47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5aec05b6468bf0b941ec2787e1d4fabc88b6da08e27c75f331e6dca761da43e8
MD5 f79343059e19d1d52000c3d7e06a2546
BLAKE2b-256 9c356428ce89b5ffc558aaa5d881cafb792441f0a655a0669621be4e08984a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a3607f583cbcadac633eb6fd3aadc0c45d40088773ce1f101b5ef8e5b1118c1
MD5 54b12702404354b0620f097a0bac439b
BLAKE2b-256 cd1ca99034ddde8cb8bb58c40e5e03bc083e2e5c6565eea016c57a025c39c117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 766daf39ef44c1289f2780e0983f0b4f97c32eda8ab7cb8baa76e0099662aa5a
MD5 defefb86a61ef1e77db15efac9b102b4
BLAKE2b-256 6b20b86fb4f5f8e0ff1248b058809c10ef33897ef61c22d1e2bdcaceece4e735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a6e5516e5fb5f60a0ccfc0749d3b4ef2193b6276a75aec50407e96899cfbcc07
MD5 dfaab91c253cd995cf337f55f9d34ae9
BLAKE2b-256 ea43353ecfad1abdb5b83354acea5f94d216c78143f3bbc6f48a0dfa4fe6d2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63e3441b857d0ff69613bba66c502e5a133128c6bb3b5ebfb6230910533a3c13
MD5 5b0968a675e6a1d37bde022b382b17fc
BLAKE2b-256 8562d04fbdf62f71f1b0e56f45ee905b7c9ec11305ea0a672f8bb8e39a558947

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db40ce193cb0a54ec7604b883eb2b703723ccaf599f1f5b9c882655d6d642f5e
MD5 20973a98c215e92c1d512f2779b8dd64
BLAKE2b-256 9fee7f1dce64b5071abbb675753afe1496790ca293387242086e19f0de64b1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 69b7d201c8026888d58386731455eb7a8de54dccce9e789a097e3962a198465d
MD5 c1fa85ae307d4ae60fa24c7fd62a9b3a
BLAKE2b-256 ae86f9d10d538359b5690926166b216e76dc021ef23d6e268a4fe0fe0c722147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9bb918bc700880e6d169b2aec5f628276ab85b6481d7d5e33e3300d6e09bbd00
MD5 c63ffe721145beba967722354b84fce9
BLAKE2b-256 0f5618645d4065973bfd243a5108c16f00d85f83635eb7c08ac33426ce1db529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ea14a0a3ae2f0c35ff94619ee27374198e3672ab1a8d370580f24ee1bf44a2e
MD5 111bc169284388defa66ac8c9fb1e695
BLAKE2b-256 d359847b25477f2b342e27ffd16fb919a82181f77ec0714ad523f2d3a8566d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07090223862bee72f82f7c8cd58e634d8928f36abfa829191692eff2a48e11d2
MD5 7576c39732680e57e08e3e8432f90696
BLAKE2b-256 e5d4709bdae99a0752a6a1e5271e31ade85f5f7cb7118fd22c00c090db0275e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6c06b5e75b667d81bb409a73cf9a65f34a48551c3badf9d67329af65072abe19
MD5 044df09bb24dd99e8bca21bf85420a98
BLAKE2b-256 43789c48f4e158c971e1fbf8e56116c6c5cb408be131b8f82f10c30bfbe233e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b5135fb97fc6431485a1520bd059dbd15a318fa374b0c8dce59f52388ba52c2a
MD5 67575007454ebb96de719d0b28732b87
BLAKE2b-256 c021dd924c5b0d5a5c599e7bd22f04713dadee18f67a35d0acf706e0329ca6ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7a6bfe114a12947fe56c0c044a7d0b28b1d4447a4215990373e8ed76af6db53
MD5 1d975aff10d3496c5a7d3e0b3eebfca2
BLAKE2b-256 9a4deaa5f0cea3588ff53700020f1e7180c1db14adf4f3bc985eaa47428f6d9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 11021207f1fd839408b2f7a236174b780478d50904d1b3effffc18763e2b88b7
MD5 b18a60966aaa67bc438848a2491bf079
BLAKE2b-256 0f3ee49e40e52ccb36902c31078357d06d6a87053ba841fd86766e18eb5591b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 590d177cbc253519b904d65a488e9d6a19edcff94f4d82f78712e72014b86d94
MD5 ac65b9f3847d4f93a037272245bfeb54
BLAKE2b-256 32d49ec9b23c5665604470027332e1b902741b6fdc89e246c864ec7dd053698e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 66ce23c4f7e44ddd95d879c062e301cf50d11958eae3449f089a2adcc09ec0af
MD5 7df392163ffd7e87da60dffb430d14a2
BLAKE2b-256 b1bf667d14972b43d643307ca37b76f53b54e38359dafa811834ee3f22556fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a7d299c11cd62ab9a425266f37051ef7cee86163c0318d896951d68d023870eb
MD5 d96a9359bf382c703408e7c97833895e
BLAKE2b-256 e7c4fde2f0b44be69f7c5c31ce306a660bf72ac4e3c3dafdd22a715df64ac8ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 321b75ed0931526ed0a49d763c4f3a1d2dc7c4029a8c0b50d1cff12aba4df0fc
MD5 2e8bde650a7d338ef002857586c40354
BLAKE2b-256 2f79660efc114b444e368297b92bca2e216446b0b8ddef0904a1b19355327557

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5412e8b3a9eeec86c0b08429b7e083f50b8a8c74a8bd50744349f815a15ba5c
MD5 a8c9f135ee19bf0a4c83c9769bd1a46f
BLAKE2b-256 73e75630941ce710f9ad58b37f556b0ed5b8ed3c96aad529131827b8d0d2e7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 23d30fb11ea23808f717da0599f2ea0ea0de60e27f9cebfc31744f7490e6f934
MD5 a23f1e123307813a57e9bb6c21ef2a14
BLAKE2b-256 c625c17fb385443d28436f1b3affe94f2077ace6a21f2eb07ea0836f1b6e3a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 81199efb61337dc7affb774a742da4fcc615befbd4bd35a8bd66dfbfbc76539a
MD5 b9f6afd8a62ecf26d1eb71cf7a6b1373
BLAKE2b-256 8c9574dd3eea2bff8ad1ddf4a4edce06d7336378e0d124e8f9050ba55f580b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a52c133569f3b46510844d189f9239da1f5b5a71c9ecd684df44dea4b8cf59a
MD5 7d6c0909f68151a967ec1d0bc8567a33
BLAKE2b-256 4dc613ac8d5ff2d43eadb729f4d2d9b38d2ade4e4f49b71c2853467fb86d1102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d63b5ff11a33d4f8efce5f9773a0f4b572ae4f90bf734438dbbdd401e7977c8e
MD5 10e87fc8ed410cd648598f5cf26241b4
BLAKE2b-256 0f4971e84d88625e3154a154628f34b64ed9568ce80433739a0dd6a44a65a850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef77b8985338956de1aec71359077e87a51b3c6aa4f7945924349d19cc8a8088
MD5 c9868717e18397348b65848568127b13
BLAKE2b-256 f811f00df872e006aeff0ed8490e8dbbff6da0ba0f38bfaa55efaa94c368c266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c44a1f01a811ae56f0fe2b4b44c8d11b5928fd0a09d2f96c6d62c915221793b6
MD5 fc7f55262d3257f1d729fb8798f37864
BLAKE2b-256 a4d97db8c1145fd229ce7397bec485ae5c06d470bd5f0e39e3634b21e25ca49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6bba57271e94dd229d6d31dbf4d54546f1fcb171a10eda1b1e1fe6f489595619
MD5 473b6fde863f37a2475aa2c8ca26f6f9
BLAKE2b-256 074550ed31fbd28d5bed25c3d08c4ee6d632ab2682c8a4fbd56752fe19cc7436

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 952dc17b063c29ee8b7023eaa3e39a7a7d85f8847909fd7b6f7b4669197d0c53
MD5 4c9557d44c370d96efce595f4d8422f4
BLAKE2b-256 d01d108b89395bb9694cecd724f482ee6bba34d12e219bd568cec69abe3cbc25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79806f85e0531a6a6d36580c4b5ccc8b7efa758b2bbc4e67e07ecf98022df4f1
MD5 a9485095b3e1a072dc1b7c6db80c3388
BLAKE2b-256 ac8d5b4c546d87256c5507c8ac61258695bc442c053387c47aca1f2d3c2c5ae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f0c68c27e1bc9c00ed385beb3a64ad4eda3af76fcd2c26690b0f5066b515945b
MD5 b8da3b89367a09e613ae7c3a72442478
BLAKE2b-256 ceddfed9ee97d2d28a2af0bfc7345b1f8372d8775420778eb10a90c56e6cbd34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 87a00ce1c11b027f56f36355d726ccc0061a178539326ceca5df25a2ff81ac4d
MD5 4746330edaa2d600ccd6981815f1ef6c
BLAKE2b-256 3c04d10a6b9cd6afd93e8c65a113f8b066ef79d75da6e38157893f6dbc442de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78ed1b567de303c93d32385826541a0f4891dac7bbbcbad62bae7f4886576620
MD5 52353026dff5b9f9ac4eaa50cd4c8b35
BLAKE2b-256 f3a37d367f93e79dc69baa0821063c467977217517295c1ccc20e59262bdcb2d

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39b658fc1cd9dc1111adbd3b912e4b3f785c6ff55e1b23726692184d9f01271d
MD5 8fb2a6b338143b2627da0bcca4297fef
BLAKE2b-256 5ee02e606c86223a064549f7d7afaf2267b94ca8b85b2aaa4fdb88ea5b92c0a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c8c7984b6ea4cdac9305b66432b5deab9027c0e9f101dd87e56ea81898b5c62c
MD5 cf1f58922827aa13f1583fc76109b64b
BLAKE2b-256 23949cb896b2c391571dc1af7d3d70fee6126a059707573637b47024fb31baa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 37eb0537dbfe42ab94dc4faef0801896c3d0ba096a5c18af72e874449a8da2ff
MD5 036e9be42cf47aaf576b725306ea0458
BLAKE2b-256 6a24241b33563ea70e8c14b0bca85d604b468fd50cd9dda0a8366f257ef447b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fdb69395461833f894d61ce2b0e7b368615033662b8e46f15fdab7818778b34
MD5 664fd34f814b855fc7d08999e0db2f6e
BLAKE2b-256 4ca69a8152113c63c489f656271c5bb95cea042b69912d14d972b666f8ecd20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff67f0f1ad6d58fa8c3bcdc2b0ab1e0ecab1583400fcb51b09f2061437b449f0
MD5 ae729cc50c829cb8148394619be6697a
BLAKE2b-256 19b13cf224cea41136f3f59034a2737a56b50e32f7ca23516ebae1409a620d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6801ec4862898d463667268594ba1d0cfc51c198c1de174046502cb0d8e5dabf
MD5 73428ace4ef604b9fba78366d312f028
BLAKE2b-256 94b7c97d081f8ae6b696968f9ed83013917c07eaaaf42c52bee67e0be24a0077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9b04cb820fec215cebf4d7767d3790f35fa68815ccfde9d94d8325c8e8922ed0
MD5 463a517bf98dac031869633e4090346e
BLAKE2b-256 f44953eb7ec4eedf33d91c399b50fcaecfbc0af70f63f099e52778e9a3da5c66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 70c470a51d6f8a4cd1e8abf89544cbaad41d2aab026b83ca99942f08414872f1
MD5 0dc3a18c5372b88160908755f1a6d6e3
BLAKE2b-256 141709f80d8d1482f9d44e54ba703c37129c8f215f6da088fc1f455b5aa0ace5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5e9f4ab90318de528f46e396f87c701b05cf5a1418a20367662eae56e71e068b
MD5 62e13b7806d2e071c4a8abd78f5f6f7f
BLAKE2b-256 fdc4a85d065e515aab75bd4ade9ee1e778a2b2242d698bb5acfe8b8af11e7385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 651411884d655d960040012ae964a99e20bd2110a7be5fbb459a04b9070085b1
MD5 918489e353a2bb86f3b16b96000e0424
BLAKE2b-256 039ae808ed25270e5aa9cceb1650a7903598d776e20135b3b27b73e40c358296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8497e1f1dcaf63cdcbebfaa7fad1cd22d52c7eb961aab4c8f6d540d8f7b8d5c0
MD5 f7a494392ba469a20a73912e1e2d8a10
BLAKE2b-256 f0d89f06f27ee0f5913ad3cd5c4fffc4b5dc96fc84a22ee2ebefd6cc8f0cf208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c1426ae996af328026cfaf757d0cfb8ca1e4a136b43b1fd7b2626248837f627
MD5 87f940ec4a2898388b6e4388be3da212
BLAKE2b-256 0654d25003ed4d3756a0a405ba1dcf8591f59b34ca252af8fcdb29c192809709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64067452b7c4e1d6c7e111fb0cd6d635be0d70d181a1caa8b719bda0781ff7fe
MD5 998deee66a298a224e36a0225c256087
BLAKE2b-256 f273756eda43a5977a544dc69c0d77ac754d40bb5092a5948eba6d9c5e400388

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 233b339fb77fb8d911419dc8b44b1ddf166e6310923f0d8cb1c690ed58a3e55f
MD5 95046beea64d1d427c4968b8b31916f6
BLAKE2b-256 9448c8da7495f4e816674982cf805e055542ec9f262e0823e723b323b446d70c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 527444d16ed2d7e6354f1a3a90eed11e919fe0206cce223363a92cbdde2b91d9
MD5 9256de2cd2c5c2ffd41f9e7c472a0443
BLAKE2b-256 83c43d6b21281f6f1dc14047f66fb06f43e000f75e7bd4fc85963f1c44e38fc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b37f0324285d816d3cee8701bedbd111501478d959afadddae93f0ae77d07262
MD5 2297ad87e03f3660b94e8a43631e1506
BLAKE2b-256 b42c63668660145063a1ec30a0ced9560465242c53175cb158505f3873ac27b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 853ca14e9a729f8a44a87dba7765e609947458832ce0daa4742dd110f88347f8
MD5 320f3405ab0fa3339f1c1c15808e6660
BLAKE2b-256 e0767682f1a31c1ac8573fbb6d2bbee0821569b8f5c35e6b12bcd9d9232b9bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b73dc945b0aa77cb902b68458abf8774600b7ca798fc38814f6f9acf55d4afa5
MD5 45567188a3301ec47ba97048d1dceda6
BLAKE2b-256 ed5b8f4dbacbda29a57b5fb6a9526a57a89f108977a55ffa5e712e65ba402368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e8ffeafcf591c471f53c898fdf9eb98894715772a0b04bc0487365629f8f38b1
MD5 f8b1062ce450fb18841ad8751f3033fd
BLAKE2b-256 3a4fd52942cfad2ded9ec326bcf882c3875d1157f52678758b3f89b259406c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 908addf372ebb06c1cf1775c8c764222e799ec6fd72cd4cdc5c22ca5593531d1
MD5 a96d8068aa22723de534f6c05cadc583
BLAKE2b-256 27bd6c11188ba3a7fea374df713360a72e356b5fa73f1eef77860bc860814b25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d503ba5365899121dcb0f05259f2ac796d352731532b2d26c8c41992ef57f3fe
MD5 c8ccd4dd76d985c98ae36e0574b035ed
BLAKE2b-256 f3e1c0677404d1e68c62f18692ca4a24db953634ce774509377f2874a63a5e70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.3.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.7

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3e94f54e23de4efc314718503e804d3325db7876303f6a3c87f860600b897eb5
MD5 dbec2cef97f7bc3eb7ae843e9902122c
BLAKE2b-256 b87386762788c9feed168b8b0b6f4adcde5f5ffeca622a2812889f4e73229fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc476324ea94a9753f9d33465876cc46bc46f4a5a22199aaed18ef11a6c7f28a
MD5 411c3115e1b666c7aa2d8c85a0b8c6e4
BLAKE2b-256 e4cf5d8db44094479bf8775bdd18e3dc65e2f09a41a8a1dde0156ac5080c9f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4ea30adf885c618d11a452240af32e461b3b0ac11db7208fad51028e1fff4db2
MD5 afd6a8f637529219b11e1d05c93f7ce8
BLAKE2b-256 e26c66189702af6fc44dd50b680f2147a5f2054d51c05599c73521ec731592d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a064f718cff74cd33acffae7ea0f3844186b9613521dceade41b50f7d66859ba
MD5 14c17f27f3c3bd10a2380edaef41c3dc
BLAKE2b-256 9693fc5c5da644a8dcc0461aefe63ef925890dd65759f1c338e266485c3605e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f551bccb4241932dab465e7957608a8a5b74fa5966c2c44d12163e89837bd08
MD5 a1d09315d9d84ce9c8d37bde557a33ce
BLAKE2b-256 8f4262d28d5093c34bc04216cf54f84652faa713544f5f6e79f5276023c8192f

See more details on using hashes here.

File details

Details for the file hiredis-3.3.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.3.0.dev0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 723e08ddf330d08facdcf01cd7d8470b8dfbb81d6498959538469a3f0a2697fb
MD5 a1fca0166c2a05474e4b0560c71c5509
BLAKE2b-256 b207957a877a426861e8ea9a6eb3b1b5127cf65a502b2566d3cc1b5b29d83c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ae61d2e0605d2ec3bf1f9b5a46e769a60fd6f90430b6b2a9d54044057d72b654
MD5 7e2500c915c0eaed8941ef9c47f19911
BLAKE2b-256 3728fb31225f9607da8b6032b117288077b8b5f61ee19ac67ba38e298afad1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2a5ce48d769c59aeac9d0b7f95312b36bec534de0892ab298af83eefc2417c09
MD5 acf11ce5ddd0a38ca240e3c18163265d
BLAKE2b-256 d320ed9771a5cf4301ba27f679ae8f2cd7ee414296a16d76e281df3f0c669a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8baad70f2b70d0191fb5eaa44749577a4f8d509bf4a9ac99519925b9ee27da7
MD5 b85bd67884238d18bf5362a6456c8a53
BLAKE2b-256 06d763b4caa8ed7f93a24616a0cc74f8ad90a80bdf594a538e9a4b4299feaa1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3419026606ed586b4c3b67f1020fae2508ee15a61ff1849b5f84a9cb93b00d8
MD5 9f40132835eff2dd589be4a4770b166f
BLAKE2b-256 d0ff18738605a8437e66d43b0692de907e19ed0f2162129522f40a0ff4951556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ffbbf9a763af502b0fe88dd1d2c310304e66d8807c49845fa7f1e79ba38150c0
MD5 c664f290b8a1390cc384deead5ef84ce
BLAKE2b-256 4b6d0d2f56a5767d07a69247089075fe270eb57522a7661ff047d2d9b437ac99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.3.0.dev0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8057ba3ae38321bc8acf2b5acc116f7d7ce095ef0baa872b03a449328353f509
MD5 5a78e51dd040986c24b8ea517b0d5cbc
BLAKE2b-256 66f2fbc1cf2bd8b9b865448b4875e2610dd59d8d28f96a9704a9fd579c27a0f7

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