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.1.0.tar.gz (87.6 kB view details)

Uploaded Source

Built Distributions

hiredis-3.1.0-pp310-pypy310_pp73-win_amd64.whl (22.0 kB view details)

Uploaded PyPy Windows x86-64

hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (36.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hiredis-3.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (39.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hiredis-3.1.0-pp39-pypy39_pp73-win_amd64.whl (22.0 kB view details)

Uploaded PyPy Windows x86-64

hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (36.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hiredis-3.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (39.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hiredis-3.1.0-pp38-pypy38_pp73-win_amd64.whl (22.0 kB view details)

Uploaded PyPy Windows x86-64

hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (36.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

hiredis-3.1.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (39.6 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

hiredis-3.1.0-cp313-cp313-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

hiredis-3.1.0-cp313-cp313-win32.whl (20.2 kB view details)

Uploaded CPython 3.13 Windows x86

hiredis-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

hiredis-3.1.0-cp313-cp313-musllinux_1_2_s390x.whl (165.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

hiredis-3.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (173.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

hiredis-3.1.0-cp313-cp313-musllinux_1_2_i686.whl (161.4 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

hiredis-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (162.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

hiredis-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

hiredis-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

hiredis-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (168.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (164.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

hiredis-3.1.0-cp313-cp313-macosx_10_15_x86_64.whl (44.5 kB view details)

Uploaded CPython 3.13 macOS 10.15+ x86-64

hiredis-3.1.0-cp313-cp313-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-3.1.0-cp312-cp312-win_amd64.whl (22.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

hiredis-3.1.0-cp312-cp312-win32.whl (20.2 kB view details)

Uploaded CPython 3.12 Windows x86

hiredis-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (163.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

hiredis-3.1.0-cp312-cp312-musllinux_1_2_s390x.whl (165.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

hiredis-3.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (173.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

hiredis-3.1.0-cp312-cp312-musllinux_1_2_i686.whl (161.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

hiredis-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (162.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

hiredis-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

hiredis-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

hiredis-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (168.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (164.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

hiredis-3.1.0-cp312-cp312-macosx_10_15_x86_64.whl (44.6 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

hiredis-3.1.0-cp312-cp312-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-3.1.0-cp311-cp311-win_amd64.whl (21.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

hiredis-3.1.0-cp311-cp311-win32.whl (20.1 kB view details)

Uploaded CPython 3.11 Windows x86

hiredis-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (161.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

hiredis-3.1.0-cp311-cp311-musllinux_1_2_s390x.whl (163.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

hiredis-3.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (171.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

hiredis-3.1.0-cp311-cp311-musllinux_1_2_i686.whl (159.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

hiredis-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (160.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

hiredis-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

hiredis-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

hiredis-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (42.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

hiredis-3.1.0-cp311-cp311-macosx_10_15_x86_64.whl (44.5 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

hiredis-3.1.0-cp311-cp311-macosx_10_15_universal2.whl (81.2 kB view details)

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

hiredis-3.1.0-cp310-cp310-win_amd64.whl (21.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

hiredis-3.1.0-cp310-cp310-win32.whl (20.1 kB view details)

Uploaded CPython 3.10 Windows x86

hiredis-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (160.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

hiredis-3.1.0-cp310-cp310-musllinux_1_2_s390x.whl (163.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

hiredis-3.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (170.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

hiredis-3.1.0-cp310-cp310-musllinux_1_2_i686.whl (159.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

hiredis-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (159.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

hiredis-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

hiredis-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

hiredis-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (42.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

hiredis-3.1.0-cp310-cp310-macosx_10_15_x86_64.whl (44.5 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

hiredis-3.1.0-cp310-cp310-macosx_10_15_universal2.whl (81.2 kB view details)

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

hiredis-3.1.0-cp39-cp39-win_amd64.whl (21.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

hiredis-3.1.0-cp39-cp39-win32.whl (20.1 kB view details)

Uploaded CPython 3.9 Windows x86

hiredis-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (160.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

hiredis-3.1.0-cp39-cp39-musllinux_1_2_s390x.whl (162.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

hiredis-3.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (170.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

hiredis-3.1.0-cp39-cp39-musllinux_1_2_i686.whl (158.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

hiredis-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (159.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

hiredis-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (165.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

hiredis-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

hiredis-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (164.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-cp39-cp39-macosx_11_0_arm64.whl (42.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

hiredis-3.1.0-cp39-cp39-macosx_10_15_x86_64.whl (44.5 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

hiredis-3.1.0-cp39-cp39-macosx_10_15_universal2.whl (81.2 kB view details)

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

hiredis-3.1.0-cp38-cp38-win_amd64.whl (21.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

hiredis-3.1.0-cp38-cp38-win32.whl (20.1 kB view details)

Uploaded CPython 3.8 Windows x86

hiredis-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (161.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

hiredis-3.1.0-cp38-cp38-musllinux_1_2_s390x.whl (163.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

hiredis-3.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl (171.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

hiredis-3.1.0-cp38-cp38-musllinux_1_2_i686.whl (159.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

hiredis-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (160.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

hiredis-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

hiredis-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

hiredis-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

hiredis-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

hiredis-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

hiredis-3.1.0-cp38-cp38-macosx_11_0_arm64.whl (42.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

hiredis-3.1.0-cp38-cp38-macosx_10_15_x86_64.whl (44.5 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

hiredis-3.1.0-cp38-cp38-macosx_10_15_universal2.whl (81.3 kB view details)

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

File details

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

File metadata

  • Download URL: hiredis-3.1.0.tar.gz
  • Upload date:
  • Size: 87.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0.tar.gz
Algorithm Hash digest
SHA256 51d40ac3611091020d7dea6b05ed62cb152bff595fa4f931e7b6479d777acf7c
MD5 56a3997b44753c11a0cdb2dc4aa50352
BLAKE2b-256 38e5789cfa8993ced0061a6ef7ea758302ef5cf3439629bf0d39c85a6ede4641

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4180dc5f646b426e5fa1212e1348c167ee2a864b3a70d56579163d64a847dd1e
MD5 b8efb2248db21ecd2be672f976efbc90
BLAKE2b-256 5dffe1603c3c6926c1fa6ae85595e983d7206def21e455ee6f4578bbf31c479f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f8ca13e2476ffd6d5be4763f5868133506ddcfa5ce54b4dac231ebdc19be6c6
MD5 e35a017db570a2911fa94ce7b203edc2
BLAKE2b-256 e50ae82918ac75213a47d8fbdcf7f6e2d3fd09a1eeb4e253d6babe47c00602f7

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8095ef159896e5999a795b0f80e4d64281301a109e442a8d29cd750ca6bd8303
MD5 8caf6c9449ec159af466c9da47119a2b
BLAKE2b-256 a7a739d9521519b69056365892a51e2614275f3ae1f149e2c5d9885a909586fe

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34d25aa25c10f966d5415795ed271da84605044dbf436c054966cea5442451b3
MD5 26a376974985f532d3126225cde18fa1
BLAKE2b-256 56cf8de09573adcaa0906dd689904e24250561bc792c7f9ae7910f154fbba9b0

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c54a88eb9d8ebc4e5eefaadbe2102a4f7499f9e413654172f40aefd25350959
MD5 1d37785d1833f1c03b1826fde394a07e
BLAKE2b-256 ba3e0938e733ad08b6cabd1c56d973207769278b9d971fe6d5ed6480232a7b37

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07ab990d0835f36bf358dbb84db4541ac0a8f533128ec09af8f80a576eef2e88
MD5 8bfba02709021eb9181eaab75bec6970
BLAKE2b-256 dd1113f2af303ed3891ed459527b0183bb743c43eeffd22b8771e7260a0b0281

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d968dde69e3fe903bf9ef00667669dcf04a3e096e33aaf138775106ead138bc8
MD5 6397694c5b36ab6a4c3f13c715681689
BLAKE2b-256 ebeed21cbad5bf8f1ebaad9492174b5eb624712fc4b83b17fe5bf187c4199320

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 732cf1c5cf1324f7bf3b6086976fe62a2ca98f0bf6316f31063c2c67be8797bc
MD5 8065e2b7938e219cf762bafb77d42eee
BLAKE2b-256 436b649862029bc518d8103c81875633183244af77ba28d4a0166c60bd7b8ff3

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e9445b7f117a9c8c8ccad97cb44daa55ddccff3cbc9079984eac56d982ba01f
MD5 2134713beb00c81130943c92f5aff772
BLAKE2b-256 30c0602207ece39e30bd65f59f51b85f185bf9a70cdb3a2586421eabee377634

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2102a94063d878c40df92f55199637a74f535e3a0b79ceba4a00538853a21be3
MD5 de337f412d40a4fbfacbda66232da66d
BLAKE2b-256 32c6e120df272b4b94bd52d0eff8a5b53afffc8cd2b832704a961b5f077c72f1

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8060fa256862b0c3de64a73ab45bc1ccf381caca464f2647af9075b200828948
MD5 4fb964c0e6b6f798c1ea6698654178e7
BLAKE2b-256 e1b73fa0cd5fada761a0ae0eddf939cabf03b5c38503f2f28313bbe292a0fc5f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4663a319ab7d22c597b9421e5ea384fd583e044f2f1ca9a1b98d4fef8a0fea2f
MD5 78b37078104f2d1998680d247694f9f3
BLAKE2b-256 b5f6d00ce8575a2f7ff1cfb3f8ae49225a061ac7b0a3554bbbad7ef66d4f07b2

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bc51f594c2c0863ded6501642dc96701ca8bbea9ced4fa3af0a1aeda8aa634cb
MD5 ad5ba8daca4c2bf815fe4bf210f20036
BLAKE2b-256 6fdd5707ba0a1d08eac63359b66a192eae47b747bb8bf27874de5217e760c004

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e04c7feb9467e3170cd4d5bee381775783d81bbc45d6147c1c0ce3b50dc04f9
MD5 456704c0f2a1904471932ce1db02e883
BLAKE2b-256 1cb87cfc265b8b86f6c778a1b205c6ef46815a5b757d58337bb6a1ae04fe50cc

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ce71a797b5bc02c51da082428c00251ed6a7a67a03acbda5fbf9e8d028725f6
MD5 0130d74607cc3db26ebffd5fd6f9c27f
BLAKE2b-256 b09834cbaa277d262470f546dece6799fba449d57a758545df1c8db9df41625a

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a31806306a60f3565c04c964d6bee0e9d4a5120e1da589e41976b53972edf635
MD5 9a1024432bef6a3d27c2e53cac03ef67
BLAKE2b-256 3ce1c66ec496266d6ff8445d2bab260de23c475990ef9ccd94ea299e4c4b199c

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcb91ba42903de637b94a1b64477f381f94ad82c0742c264f9245be76a7a3cbc
MD5 08de08bbd05fa586903c89667e5311b3
BLAKE2b-256 2151827d3e2ef723288e3a79a8643704724d8cf1d67f339bb3d693da9ff0b69c

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d92144e0cd6e6e841a6ad343e9d58631626eeb4ac96b0322649379b5d4527447
MD5 90bf0acbf45ba8fc76196bea5fb64f65
BLAKE2b-256 a15903137f2348128fbba1708c2809dbaf9e3d41ce4ce9b2e36bc0bbf57164ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9020fd7e58f489fda6a928c31355add0e665fd6b87b21954e675cf9943eafa32
MD5 ae189e91befd6bc52c25d7ac80359afd
BLAKE2b-256 cc04eaa88433249ddfc282018d3da4198d0b0018e48768e137bfad304aacb1ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 539e5bb725b62b76a5319a4e68fc7085f01349abc2316ef3df608ea0883c51d2
MD5 113a50c1fde93c00602f751a53a07da4
BLAKE2b-256 0b7700b420ad567875e5a4b37a16f1a89fef1a22c6a9e1a12195c77bb5b101dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a45ff7915392a55d9386bb235ea1d1eb9960615f301979f02143fc20036b699
MD5 f20bf90bee5de4a5eb6916839b054e82
BLAKE2b-256 8210bd8f39423b0cb9624ccaf08d5e9c04f72dd46e9e9fc82e95cec42a42428d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d1a6f889514ee2452300c9a06862fceedef22a2891f1c421a27b1ba52ef130b2
MD5 e894226160a74c749c291b10d19b4a41
BLAKE2b-256 3e8250c015dcf04ea85a89c4603684da9d95c7850931b5320c02c6f3d7ddd78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f3982a9c16c1c4bc05a00b65d01ffb8d80ea1a7b6b533be2f1a769d3e989d2c0
MD5 af512fda60859c1cda2c917ae830ce6c
BLAKE2b-256 aa5eb357511490626e9c39b3148612bda945f2cd0c8dcd149f36fd7b9512bff4

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa36688c10a08f626fddcf68c2b1b91b0e90b070c26e550a4151a877f5c2d431
MD5 d427ec77aebc6b457395ce838b8a3062
BLAKE2b-256 ff774a5357b29e4c9f573439246d27cabad470ea4367a60a86f01c2a31c7c63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c89d2dcb271d24c44f02264233b75d5db8c58831190fa92456a90b87fa17b748
MD5 40c4f6f3402bae6dbae1297d7147a46c
BLAKE2b-256 13ddaecfd9f24015b7e892304d6feb888db25b01492f05730f8f45155887de1f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7e06baea05de57e1e7548064f505a6964e992674fe61b8f274afe2ac93b6371
MD5 40176dd37646db26ed1624c08459ec83
BLAKE2b-256 7adae1475f4d51225cbc4b04e3be22ecb6da80a536b747aa4bb263af318d8555

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7acdc68e29a446ad17aadaff19c981a36b3bd8c894c3520412c8a7ab1c3e0de7
MD5 feec3f392b415658e7d57405b8a732e5
BLAKE2b-256 b2aa66933e4101198f2e2ae379c091fb9a8131cd3dce7a1e6d8fa5ff51244239

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a86b9fef256c2beb162244791fdc025aa55f936d6358e86e2020e512fe2e4972
MD5 5d930d62c38b0ba9ff3c9a540eb53eff
BLAKE2b-256 425982a3625dc9fc77f43b38d272eef8c731e359e535a13b29b83ce220d47f5d

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1e8ba6414ac1ae536129e18c069f3eb497df5a74e136e3566471620a4fa5f95
MD5 d29a5e93e0e89112a86012fd8cf4531d
BLAKE2b-256 dda0f9da8e920c1871edf703dfa05dd6781a3c53e5574cd2e4b38a438053a533

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35b5fc061c8a0dbfdb440053280504d6aaa8d9726bd4d1d0e1cfcbbdf0d60b73
MD5 92ab659f426aa8a5a256d2cb9508e70b
BLAKE2b-256 34d752dd39b5abb81eb24726934c3b9138cc9a30231fb93da8a3e2f829e3598c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a018340c073cf88cb635b2bedff96619df2f666018c655e7911f46fa2c1c178
MD5 16dbd30986b3780f87cd6e136a4fe448
BLAKE2b-256 1348b53c5d10d3fd073a2046d096d9d415d61b3564f74b0499ec757ddaf7cddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d302deff8cb63a7feffc1844e4dafc8076e566bbf10c5aaaf0f4fe791b8a6bd0
MD5 1cf36cae9d76b8a3cec4ce5ccc242184
BLAKE2b-256 7985bd6cb6f7645a3803111a4f07fb2b55a23b836725bc8ec74ac7623fe8bef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp313-cp313-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b87cddd8107487863fed6994de51e5594a0be267b0b19e213694e99cdd614623
MD5 bdbbb1a195587d539a4e6bd1147f93a9
BLAKE2b-256 7bb00b4f96f537d259b818e4ee7657616eb6fabc0612eb4150d2253f84e33f8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 37aed4aa9348600145e2d019c7be27855e503ecc4906c6976ff2f3b52e3d5d97
MD5 7aa62b7335791dc68851408e04bd5c3d
BLAKE2b-256 b76746d5a8d44812c6293c8088d642e473b0dd9e12478ef539eb4a77df643450

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd33db977ac7af97e8d035ffadb163b00546be22e5f1297b2123f5f9bf0f8a21
MD5 ee65fa708432f543f5787590d7f35c10
BLAKE2b-256 ddf61ee81c373a2087557c6020bf201b4d27d6aec173c8414c3d06900e91d9bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e665b14ab50aa175cfa306fcb00fffd4e3ff02ceb36ca6a4df00b1246d6a73c4
MD5 27eaea7356b7129ecb06235898c5f88e
BLAKE2b-256 5f4781992b4b27b59152abf7e279c4adba7a5a0e1d99ccbee674a82c6e65b9bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c5c44e9fa6f4462d0330cb5f5d46fa652512fc86b41d4d1974d0356f263e9105
MD5 04a25e5ac0aa3a200e2512c501f3712f
BLAKE2b-256 dc50c49d53832d71e1fdb1fe7c91a99b2d47043655cb0d535437264dccc19e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6c840b9cec086328f2ee2cfee0038b5d6bbb514bac7b5e579da6e346eaac056c
MD5 821f3adcbfd1b797ba9c1be3d181878e
BLAKE2b-256 04af6b6db2d29e2455e97cbf7e19bae0ef1a6e5b61c08d42377a3511ef9cc3bb

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98ebf08c907836b70a8f40e030df8ab6f174dc7f6fa765251d813e89f14069d8
MD5 27241aed95c58aabf013bdda35834953
BLAKE2b-256 70b8fa7e9ae73237999a5c7eb9f59e6c2198ed65eca5cad948b85e2c82c12cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89b83e76eb00ab0464e7b0752a3ffcb02626e742e9509bc141424a9c3202e8dc
MD5 b47f519959d2588a186b7f50ad1013a3
BLAKE2b-256 625dc167de0a8c841cb4ea0e25a8145bbdb7e33b5028eaf905cd0901381f0a83

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b5bd8adfe8742e331a94cccd782bffea251fa70d9a709e71f4510f50794d700
MD5 ce186ee051d6584ddc58229f686d849b
BLAKE2b-256 a14f14aca28a24463b92274464000691610eb41a9afab1e16a7a739be496f274

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aed10d9df1e2fb0011db2713ac64497462e9c2c0208b648c97569da772b959ca
MD5 0401bf78f6287e9822d16d8ff82efec9
BLAKE2b-256 2bb2a1315d474ec36c89e68ac8a3a258431b6f266af7bc4a31265a9527e494df

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 676b3d88674134bfaaf70dac181d1790b0f33b3187bfb9da9221e17e0e624f83
MD5 10c5d1ceee3649a3917704dae7163696
BLAKE2b-256 142933f943cc874d4cc6269d472b2c8ebb7385008fbde192aa5108d617d99504

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc63d698c43aea500a84d8b083f830c03808b6cf3933ae4d35a27f0a3d881652
MD5 1f3f27138dddcd49171bbe5d1197ade0
BLAKE2b-256 9790a709dad5fcfa6a3d0480709fd9e24d1e0ba70cbe4b853a1fe63cf7026207

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fc4e35b4afb0af6da55495dd0742ad32ab88150428a6ecdbb3085cbd60714e8
MD5 f656eefb3b9ae6186e87a3c67ea2a10d
BLAKE2b-256 778de5aa6857a70c0e3ca423973ea27065fa3cf2567d25cc397b649a1d45043e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af46a4be0e82df470f68f35316fa16cd1e134d1c5092fc1082e1aad64cce716d
MD5 52baf7bf76024b41f1e78f6dc593ca15
BLAKE2b-256 a8a0bf584a34a8b8e7194c3386700113cd7380a585c3e37b57b45bcf036a3305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3dbf9163296fa45fbddcfc4c5900f10e9ddadda37117dbfb641e327e536b53e0
MD5 37ed4c3088f99f995b36a8f4f4bd5ff8
BLAKE2b-256 4218f70f8366c4abcbb830480d72968502192e422ebd60b7ca5f7739872e78cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f7c7f89e0bc4246115754e2eda078a111282f6d6ecc6fb458557b724fe6f2aac
MD5 ba624786d5a8122437cc58075dc7b487
BLAKE2b-256 cc649f9c1648853cd34e52b2af04c26cebb7f086cb4cd8ce056fecedd7664be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f1240bde53d3d1676f0aba61b3661560dc9a681cae24d9de33e650864029aa4
MD5 6d6eb4a52f1c6eabd339c1c5833735f9
BLAKE2b-256 b1e1c555f03a189624ed600118d39ab775e5d507e521a61db1a1dfa1c20f3d02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 107b66ce977bb2dff8f2239e68344360a75d05fed3d9fa0570ac4d3020ce2396
MD5 d05d22c0e19236faefb6b05a6ad993a3
BLAKE2b-256 aaca531e287fc5c066d9f39bbc3a6a50ac34c84425c06bf2001af4bd2337037a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f12018e5c5f866a1c3f7017cb2d88e5c6f9440df2281e48865a2b6c40f247f4
MD5 3923122058a7a2b41479275e44c17cd8
BLAKE2b-256 8979e1f0097a53110622c00c51f747f3edec69e24b74539ff23f68085dc547b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d3cfb4089e96f8f8ee9554da93148a9261aa6612ad2cc202c1a494c7b712e31f
MD5 10d5bd769cc4032dd5575d68b07fcacd
BLAKE2b-256 c31ac2afd5ebb556ad06fe8ab99d1917709e3b0c4ee07f503ca31dab8d66ef1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 87c2b3fe7e7c96eba376506a76e11514e07e848f737b254e0973e4b5c3a491e9
MD5 78584673d7ac6a808379aaca6bb50566
BLAKE2b-256 2b5eee606c694ac086ba28753b02d842868118830bcb1fb47e25091484677bec

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d3880f213b6f14e9c69ce52beffd1748eecc8669698c4782761887273b6e1bd
MD5 3947dba961e108139a15a72866291e47
BLAKE2b-256 12072f4be5e827d5c7d59061f2dfc882ceceb60eb9a263e8eebfbc0093b9c75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c76e751fd1e2f221dec09cdc24040ee486886e943d5d7ffc256e8cf15c75e51
MD5 253df1d78f808d3128d0eab7da99adcc
BLAKE2b-256 f3bd902a6ad2832f6a517bc13b2fe30ee1f45714c4922faa6eb61c0113314dbc

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b390f63191bcccbb6044d4c118acdf4fa55f38e5658ac4cfd5a33a6f0c07659
MD5 44e0326e661f66df7f4f20d7befcb33c
BLAKE2b-256 876f630581e3c62a4651cb914da1619ddeb7b07f182e74748277244df914c107

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1110eae007f30e70a058d743e369c24430327cd01fd97d99519d6794a58dd587
MD5 4e22a28a4a4a1712a91f4e96991bbbdb
BLAKE2b-256 1df4a1d6972feb3be634ae7cdf719a56d5c7a8334f4202a05935b9c1b53d5ef6

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39efab176fca3d5111075f6ba56cd864f18db46d858289d39360c5672e0e5c3e
MD5 21428330df009556b0978ae2dd3daa33
BLAKE2b-256 b9e1c14f3c66c42f5746cd54156584dcf60540a9063f351e101e99fd074e80ae

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea4f5ecf9dbea93c827486f59c606684c3496ea71c7ba9a8131932780696e61a
MD5 32ef6bfab64ca96f2421158edeee9e7b
BLAKE2b-256 203a625227d3c26ee69ef0f5881c2e329f19d1d5fe6a880a0b5f7eaf2a1ae6ab

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72a98ccc7b8ec9ce0100ecf59f45f05d2023606e8e3676b07a316d1c1c364072
MD5 43f985c95db6ac057673ea283ed60600
BLAKE2b-256 fd7bbcf5562fa50cdce19169d48bb3bc25690c27fde321f147b68781140c9d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9acf7f0e7106f631cd618eb60ec9bbd6e43045addd5310f66ba1177209567e59
MD5 66571d57cc353d678f1088c9985e7c7c
BLAKE2b-256 6568b0d0909f86b01bb7be738be306dc536431f2af90a42155a2fafa05d528b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0ffa2552f704a45954627697a378fc2f559004e53055b82f00daf30bd4305330
MD5 e7fe76fc5f3c2ca090f1f47ece25478d
BLAKE2b-256 ad9cc64ddce9768c3a95797db10f85ed80f80389693b558801a0256e7c8ea3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c339ff4b4739b2a40da463763dd566129762f72926bca611ad9a457a9fe64abd
MD5 fa8eabae2366c7da31dbb00f71b7eed8
BLAKE2b-256 7c859f738bab9f446e40a3a29aff0aa7766568b2680407e862667eaa3ec78bfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 802474c18e878b3f9905e160a8b7df87d57885758083eda76c5978265acb41aa
MD5 f57231c9a164e2da100371ae2ebd48a7
BLAKE2b-256 758aa86859e5bdef1cab3299bdaeb3facaead074f246383312305a62aa877e97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0322d70f3328b97da14b6e98b18f0090a12ed8a8bf7ae20932e2eb9d1bb0aa2c
MD5 ed87110f16591451782164988fafee78
BLAKE2b-256 35f6fee28cf6eb54ce5c3bd21e1f157c99f451e76e145ac7a9aa04f7df83097d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59a9230f3aa38a33d09d8171400de202f575d7a38869e5ce2947829bca6fe359
MD5 31b269d5cf2f87a688b703d4d3317793
BLAKE2b-256 099de4f886d1db94f7cf0ccfc16e40da9a785fdd37cb6ba4d0b984477ff4d198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9646de31f5994e6218311dcf216e971703dbf804c510fd3f84ddb9813c495824
MD5 3abc993ed582ba2612c2cc9c9f6b6e3a
BLAKE2b-256 12832ba481bb58b99a8e921289b1d57e69a4516b954bfd8aab00dd28749a2ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bad3b1e0c83849910f28c95953417106f539277035a4b515d1425f93947bc28f
MD5 df037efaf4cf7a0150b54b7437856410
BLAKE2b-256 2547f60b4d488bfba93eeaade3c859733f073cde40305c96437ff466b303143a

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b2d6e33601c67c074c367fdccdd6033e642284e7a56adc130f18f724c378ca8
MD5 643064a76a8b1497b36f09401ab23a49
BLAKE2b-256 0646e5539f1db6e88fa4ebcffc6691713ae45d6d764c7ef8600d943da75d6b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5f65e89ce50a94d9490d5442a649c6116f53f216c8c14eb37cf9637956482b2
MD5 68bbd94c31b3dcc0f8af24ff1d61982c
BLAKE2b-256 c430242b5795025ecd89c8c14de0bd8da9057e9e31348e5d3e739b63aac37f3e

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e812a4e656bbd1c1c15c844b28259c49e26bb384837e44e8d2aa55412c91d2f7
MD5 8bb37959adcf8b8022234cae5184029f
BLAKE2b-256 8485c77ff1a95318e12810f529abe08744c06137de84f17114297773b76825b8

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb5316c9a65c4dde80796aa245b76011bab64eb84461a77b0a61c1bf2970bcc9
MD5 50a05dc1d1b10c0867da9b1a10397847
BLAKE2b-256 caaef6fefb942ab27e33416b9734dc06995d4fd6f4daaf6855da520c851417c3

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6b232c43e89755ba332c2745ddab059c0bc1a0f01448a3a14d506f8448b1ce6
MD5 c9041bd71acc001ce69f8a8abed3210d
BLAKE2b-256 e03488c4fafe7c6df13c81c02bc51bda9190830b2e7d0d51e685f054573a2caa

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 072c162260ebb1d892683107da22d0d5da7a1414739eae4e185cac22fe89627f
MD5 a2a43fe5985083a70192ae32c038f08b
BLAKE2b-256 658c95c95a2bd6fb04b549083530c08bb1004c4a18a870c2eb8ac0e7f5b37879

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93a6c9230e5a5565847130c0e1005c8d3aa5ca681feb0ed542c4651323d32feb
MD5 869ad2c31b0b0cc50a31a6154c30ee84
BLAKE2b-256 8ba2e98faec792f49361f2913d5b537270d180db67ec19be86324aa1610b1371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2af62070aa9433802cae7be7364d5e82f76462c6a2ae34e53008b637aaa9a156
MD5 73ce246537f7558c8b7384ef1adfc7cf
BLAKE2b-256 e51abc12c0e7688f23c33baad05bbd6fd2b944a35c2d3adad59a794ce7e62d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 93cfa6cc25ee2ceb0be81dc61eca9995160b9e16bdb7cca4a00607d57e998918
MD5 a776d0929de92f8f5faed7e32270bc75
BLAKE2b-256 1899af3f3720c769292d159b12684f867641a47331d918bc3b820162c50c1861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2892db9db21f0cf7cc298d09f85d3e1f6dc4c4c24463ab67f79bc7a006d51867
MD5 8fe7da1e33812bede659ac0f3ac70457
BLAKE2b-256 9e13636d4eedc20ac6962439f72b4dc7c2906e68c4f1df88cea5ebf916125cd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c2bc713ee73ab9de4a0d68b0ab0f29612342b63173714742437b977584adb2d8
MD5 04a26d08c7fe1117cd515e6fbbaa90a0
BLAKE2b-256 07b8aaf8b940557c0fc5c07a177de3dfdc40bfe3f32902087b68008f7a7dd829

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0614e16339f1784df3bbd2800322e20b4127d3f3a3509f00a5562efddb2521aa
MD5 50c85e5838799cd881e690c291efd0ac
BLAKE2b-256 bfbfcbe289fa2964487e24f22d22129617dc82943e95439c05b99c73452f1ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c22fa74ddd063396b19fe8445a1ae8b4190eff755d5750dda48e860a45b2ee7
MD5 78af37b799b1241f659529bc7aa85cfb
BLAKE2b-256 18557dee03709eed445382017ee8bd6b61441eca914f7bc42551ce34a1e888c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b885695dce7a39b1fd9a609ed9c4cf312e53df2ec028d5a78af7a891b5fbea4d
MD5 38fdb98627052cbd357e1e012c3d521f
BLAKE2b-256 51d915cdcf8c4d581b388e6e5a06b5cea4627dca722a06b621579c66d5f0bc62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7acf35cfa7ec9e1e7559c04e7095628f7d06049b5f24dcb58c1a55ef6dc689f8
MD5 779a9648b63d745b958bb67afc272d5c
BLAKE2b-256 c3e17ad062b10aefe156981ed00f449f09eeceb96a83dcf7145d0f22d8726d09

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf6844035abf47d52a1c3f4257255af3bf3b0f14d559b08eaa45885418c6c55d
MD5 08aeffb7c7ded1094b43950ffbae5435
BLAKE2b-256 d699f43db5f95e8591054efcb3c583175deebda5013bd1703ceb587e7e51efbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9ea0678806c53d96758e74c6a898f9d506a2e3367a344757f768bef9e069366
MD5 f0008cf91f14cb25c1a5591a108751d5
BLAKE2b-256 459b6b37534856f90e0f5c298200db327313558290086419c1fd667662c6952e

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93811d60b0f73d0f049c86f4373a3833b4a38fce374ab151074d929553eb4304
MD5 6f1044146860a0f5f0fa1429c50e9dec
BLAKE2b-256 e3a3416029981647c08ae56d58d900e0a1b47f344ba05bbf087522656eba2044

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf3d2299b054e57a9f97ca08704c2843e44f29b57dc69b76a2592ecd212efe1a
MD5 79833cdbc055f112be064cd19687f0db
BLAKE2b-256 9d832603691a8b6fdc29030c9954b9dcf934ab78d2f8152be88d7ee19c75bdaa

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ef5ad8b91530e4d10a68562b0a380ea22705a60e88cecee086d7c63a38564ce
MD5 4e3be1c688871095a4768fbb805ed720
BLAKE2b-256 925d077cdf38c979c15bfd1e44c0104bd719ab3e217da3f13f01e7f7ed37d280

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e38d7a56b1a79ed0bbb9e6fe376d82e3f4dcc646ae47472f2c858e19a597c112
MD5 296111fcc1d01ad5696605ee4e62c53a
BLAKE2b-256 6872d7d96ae7cd5a6a5abc057c6596ee8b76621b6d49d40668f418658b404555

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18e703ff860c1d83abbcf57012b309ead02b56b60e85150c6c3bfb37cbb16ebf
MD5 a0fa1c75f54e769bcc5e7cf032288618
BLAKE2b-256 b34925499af7bfb5a736910a131ab0f7592cab72bebd5f3d85057bc527dd5eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6d1c9e1fce5e0a94072667ae2bf0142b89ebbb1917d3531184e060a43f3ee11
MD5 6082f20a4bd1ded25dcec75da9d70798
BLAKE2b-256 089f9cf4b72ae9567d65746574250a558445b667531b6716688815f05e4aa09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f50763cd819d4a52a47b5966d4bb47dee34b637c5fa6402509800eee6ecb61e6
MD5 49907b3588ee65e85e0d7483f3d145b8
BLAKE2b-256 503be016ed691f24059aca9eab3a9c03bc72b8dcbe5f128b710124efcc4a8a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 a26fa888025badb5563f283cc19594c215a413e905729e59a5f7cf3f46d66c32
MD5 261e611e8ae8d356cbe387afcacaf44f
BLAKE2b-256 f15d12ce85507c025ed685f583dade7ed1aee90d451de098b463441e4f76da89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 34f3f5f0354db2d6797a6fb08d2c036a50af62a1d919d122c1c784304ef49347
MD5 0843d39c7deb83f77c57a11c68a3e1c7
BLAKE2b-256 178bf9bfb0891acf717bca1d62e63713ec45360db1b13a5fb86577f0b36e2c94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-3.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 20.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bc117a04bcb461d3bb1b2c5b417aee3442e1e8aa33ebc800481431f4c09fe0c5
MD5 7d0305b6cfd58cb39810197141ca6c1c
BLAKE2b-256 710ceff8b203374bcb9cc62eee9768cefa53ba700c21cf2f48bdf39eb5ab74e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9b4da8162cf289781732d6a5ba01d820c42c05943fcdb7de307d03639961db3
MD5 b5c90415fcac925e305979f4ca72c162
BLAKE2b-256 1d32293991296ee11af983fde7c5856f2bd1d1cce3f20154cdf37b2812890ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 570cbf31413c77fe5e7c157f2943ca4400493ddd9cf2184731cfcafc753becd7
MD5 2dc9017a8ca6fdf1aa8a628ba81d8e36
BLAKE2b-256 631ac58d6c40282fe5726b2a6e930dfb5be162011414e8baaee26eaaa0833e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 09e89e7d34cfe5ca8f7a869fca827d1af0afe8aaddb26b38c01058730edb79ad
MD5 95d41915588fce6b04282980eb2addd7
BLAKE2b-256 00c84d5a898adc4d72bce2884bdf100edd9e91cc4a5f918792f2702e66b8fee7

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5cd20804e3cb0d31e7d899d8dd091f569c33fe40d4bade670a067ab7d31c2ac
MD5 1e97e906b31ecd64f5a84fc2c9f0053a
BLAKE2b-256 ee1cf2035856ae9061d2ee65e7c083d7698724ec1779da75dec440522a996bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 511e36a6fa41d3efab3cd5cd70ac388ed825993b9e66fa3b0e47cf27a2f5ffee
MD5 380d0dada31d31ad84c57af1a12576e2
BLAKE2b-256 9345042b9c6a027849d8e7293f5b50816319a3c198a6684a8382e2fa90bbfdce

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 230dd0e77cb0f525f58a1306a7b4aaf078037fc5229110922332ca46f90821bb
MD5 fdd2b44e720de623e32b18338f0d4647
BLAKE2b-256 e50e15d55ce5ab78ecd0bb273f09380a20763e864ccb8e9e471104d33ead722f

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13f5b16f97d0bbd1c04ce367c49097d1214d60e11f9fee7ef2a9b54e0a6645c8
MD5 15231cafbc96649acb33b33e1be4dfa2
BLAKE2b-256 c9a1598f6e2cd14d75c7697c5d3b65cc5f0fe149944e357f0fa57bf390d6e6d1

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3004ef7436feb7bfa61c0b36d422b8fb8c29aaa1a514c9405f0fdee5e9694dd3
MD5 dfedbe1648f0e47d3c5523b1be77047f
BLAKE2b-256 c67287a7477a003d7dbf3d40114b2fb3c980e69dfc21d098d869727089aa5433

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e38d8a325f9a6afac1b1c72d996d1add9e1b99696ce9410538ba5e9aa8fdba02
MD5 3ee8d6203f2fe12722e7bfbf75af33ea
BLAKE2b-256 5f5b3be0789129c2b093bd074436dc5f66cbe34348ba2d59837bf5036786db78

See more details on using hashes here.

File details

Details for the file hiredis-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d968116caddd19d63120d1298e62b1bbc694db3360ed0d5df8c3a97edbc12552
MD5 7a92c9731e894d500c7ed07779040706
BLAKE2b-256 652a104a3f90fb669ea2bc6678026f38f0aa18d3500ec90bd7176b121bbac09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c156156798729eadc9ab76ffee96c88b93cc1c3b493f4dd0a4341f53939194ee
MD5 53ee1a4c0fd72f2b5622b7edb0f83450
BLAKE2b-256 8255897f2893897a2733411b3cf2bbc02999e24e233601095615f5716ac154c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 363e21fba55e1a26349dc9ca7da6b14332123879b6359bcee4a9acecb40ca33b
MD5 c200e3a1f5b6584ecf81d3729ec16ca4
BLAKE2b-256 6bcd112b38c3e15436b91ad987959934db885b7c8d506c14d3d676cdd2f19ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-3.1.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b621a89fc29b3f4b01be6640ec81a6a94b5382bc78fecb876408d57a071e45aa
MD5 6136c25ead21d6cd5805b5dc33c8c26f
BLAKE2b-256 a8795fbcca252f7c1abec5542a30b7368938823c19ef8571ee11b5ce92181ecf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page