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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

hiredis-2.4.0-pp310-pypy310_pp73-win_amd64.whl (21.6 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (37.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-2.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.4.0-pp39-pypy39_pp73-win_amd64.whl (21.6 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (37.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-2.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.4.0-pp38-pypy38_pp73-win_amd64.whl (21.6 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (37.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

hiredis-2.4.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

hiredis-2.4.0-cp312-cp312-win_amd64.whl (21.6 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

hiredis-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hiredis-2.4.0-cp312-cp312-musllinux_1_2_s390x.whl (166.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

hiredis-2.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl (174.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

hiredis-2.4.0-cp312-cp312-musllinux_1_2_i686.whl (161.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

hiredis-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (163.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hiredis-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

hiredis-2.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (169.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

hiredis-2.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (179.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

hiredis-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

hiredis-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (165.4 kB view details)

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

hiredis-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (42.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

hiredis-2.4.0-cp312-cp312-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

hiredis-2.4.0-cp312-cp312-macosx_10_15_universal2.whl (81.4 kB view details)

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

hiredis-2.4.0-cp311-cp311-win_amd64.whl (21.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hiredis-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hiredis-2.4.0-cp311-cp311-musllinux_1_2_s390x.whl (164.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

hiredis-2.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl (172.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

hiredis-2.4.0-cp311-cp311-musllinux_1_2_i686.whl (160.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

hiredis-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (161.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hiredis-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-2.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-2.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (178.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.2 kB view details)

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

hiredis-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (42.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.4.0-cp311-cp311-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

hiredis-2.4.0-cp311-cp311-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-2.4.0-cp310-cp310-win_amd64.whl (21.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hiredis-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (161.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

hiredis-2.4.0-cp310-cp310-musllinux_1_2_s390x.whl (164.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

hiredis-2.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl (171.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

hiredis-2.4.0-cp310-cp310-musllinux_1_2_i686.whl (159.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

hiredis-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (160.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

hiredis-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-2.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-2.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.9 kB view details)

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

hiredis-2.4.0-cp310-cp310-macosx_11_0_arm64.whl (42.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-2.4.0-cp310-cp310-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

hiredis-2.4.0-cp310-cp310-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-2.4.0-cp39-cp39-win_amd64.whl (21.5 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hiredis-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (161.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

hiredis-2.4.0-cp39-cp39-musllinux_1_2_s390x.whl (163.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

hiredis-2.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl (171.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

hiredis-2.4.0-cp39-cp39-musllinux_1_2_i686.whl (159.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

hiredis-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (160.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

hiredis-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-2.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-2.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-2.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.3 kB view details)

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

hiredis-2.4.0-cp39-cp39-macosx_11_0_arm64.whl (42.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-2.4.0-cp39-cp39-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

hiredis-2.4.0-cp39-cp39-macosx_10_15_universal2.whl (81.3 kB view details)

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

hiredis-2.4.0-cp38-cp38-win_amd64.whl (21.6 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hiredis-2.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (161.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

hiredis-2.4.0-cp38-cp38-musllinux_1_2_s390x.whl (164.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

hiredis-2.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl (171.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

hiredis-2.4.0-cp38-cp38-musllinux_1_2_i686.whl (160.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

hiredis-2.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (160.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

hiredis-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-2.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-2.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (178.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (167.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-2.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.3 kB view details)

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

hiredis-2.4.0-cp38-cp38-macosx_11_0_arm64.whl (42.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-2.4.0-cp38-cp38-macosx_10_15_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

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

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

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.4.0.tar.gz
Algorithm Hash digest
SHA256 90d7af678056c7889d86821344d79fec3932a6a1480ebba3d644cb29a3135348
MD5 043f063dfdbf6b6efabfd2c70ff51114
BLAKE2b-256 bcbde1ba6b92634fd0a25d583a0f988c6fae6767adce46756763ada694defd1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d16f5023c1d9971f284231eb7036a25d4d123138a5adc4512c92a73d83b9a77
MD5 ce015df26ae2015fde80e0ecd89b81dc
BLAKE2b-256 0bccd88dfd4cdf5fd9f7ca117e8fa0e609eed702db8d1cb3f3652a51fc3ab250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48baae8fbebf3b11660db6e51a55ff51516ed32edcd44a57f51ea9b373aca330
MD5 23eb40f6ba8f00e7db3e9d70c4a05408
BLAKE2b-256 c36f7786187814df1ff1c017939725d1374ffbb23d973f56e871cfb5a46b51d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9d559775a95aee0ff06c0aaac638691619d6342b7cde85c62ad228804f82829
MD5 0578b21cf8c5c107ae381291a3a0ca98
BLAKE2b-256 65b23c9eb8804073afe5cc4ff40760e6f0b15e5234557a8cab194d447189ecf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d851b7ff732ebc9d823de3c7cc95a5ed4261a0226acd46861a18369ac9568f36
MD5 1bda6a429b35dec56a8212f9c7f68691
BLAKE2b-256 513a85f08eb7f2f0463691cf432cbb4768ee39d556aa2651ce23b20a011178cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4da6d881033a1bcb31bba152ea0925344127f0a98f86a6cf2ceb01cf6ecd29e2
MD5 5ea06b9e74d30152e14b28e65451d1ae
BLAKE2b-256 26214b0abb18e76860b354e77a734c82e18ffbb9153e6f263eaad47d1d154c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aeb60452d5b6150075974bc36e1cc74a46bd4b125cd5e72a86a04f4d6abf4e67
MD5 414b59f3dd43d2930bfe8de75481f17f
BLAKE2b-256 22b62202807078b63c9f7a8f8dcdbe98f1b36bd246b757b261da790728beb1f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ae340c41024b9be566f600f364c8d286217f2975fd765fb3fb4dd6dfbdbec825
MD5 9b27e125d11ec62849d921fc4b7f13d3
BLAKE2b-256 e3ba81a71c8bdfe5e3a700e116bd2d92be252aec5444349005311f9a0ef3cae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b544a1a78e0812134572cc13f5ee330bfb6bfe6dda58d2e26c20557bb0e0cec9
MD5 7c1cb6b0624e6554165702343c1e6c43
BLAKE2b-256 d6e73de2760086dbbbc2a947a499cc8dfbba248698a0b83dca1b43c7efa80d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 339f29542be968153afd6c6495c1222681c4b66b9a5a5573c11512378b7167c9
MD5 f92cdf55ca93d619b18f207d44d67883
BLAKE2b-256 648d0d6e5998182f7d631551e47e95a460db1bfafecaf53335b7e9c2fcd0cf5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e71386f89dc2db805b4c9518dee6d81abddb8e79e4d9313cecdb702c924b8187
MD5 1bd7b1c6a05538f45c9a6f55f21036e5
BLAKE2b-256 d92bdf45d91e8baea8f61e4a1e28de031ffaa225d4b91ce0c2e99a7406d54ecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b50ad622d8a71c8b72582dc84a990f3f079775edc1bcf0f43ed59bb2277fca2f
MD5 3257f67c3914b74e0bdb58fd0854733c
BLAKE2b-256 1e934cb66f716445b250abbacbc1bf017b1f11530b69d879282298dca08634a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b30dcfbc5ab2fc932a723a39c2cb52d4f5c8b1705aa05a0bae23f28f70e06982
MD5 f6191901f1043a199320ba12bd644ea4
BLAKE2b-256 ada01559e5b2a771c1f50c8f91c4dc18e2553610f1547deeae730c425b4d9d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 764032f2222d70a130445fd332cf45d46d8226f4b3a7bf8abc314aa93d5a8212
MD5 ad90397dabe5393bd129e1f412ad1c46
BLAKE2b-256 10da40e523db8d10a1893ccd8b40f76b1175959025662efacc0e7f347e1d9d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cc3c59dd0cd67d0aa0481a43392848a60f1a81d12b38ce8d56d6a5d6c190de8
MD5 7477b1f88fd5b56128943b9c6fd53a46
BLAKE2b-256 0f210431d4bcffc808ffb129df1042fb23b9ddceea8b7d9030e70889c87b330b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 400a42b8d16206e45c8223cdaf5acc35839e10c35383b3fba3f43e7eb315c213
MD5 7160a7d1f3c174e95a8fb11b5317af9f
BLAKE2b-256 08e185550b1948d95b6462b3c406e046dacca03832efa31db143a214df5d4e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2a917ab420cd88b040ec85b5abc1244ab82b34d56461e2ffff58e0c7d018bae
MD5 8cfe6111496b3499abe47c0baa0a9182
BLAKE2b-256 6ccd8d979ed8739bb3d47d5ab881ccd8787fb022383f874dbfdb34f8240b73cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e38f66dd7fd07a9306ed37d6d02bc584b67e5945f2ddc98e5c78420cc66dbac
MD5 90b754061739012bc368d65d8305d23f
BLAKE2b-256 fb073b0680bba21aedb063e6857166a4a550a21da1aaeaec62b6946ba8652263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a56a35e2e0b7eda39957ccd33059b79bb2fc57f54c501a917d1092c895f56d08
MD5 4c6e17b03bbf0b6f552080d189e34251
BLAKE2b-256 164f27f15f7f5fed582db681a117fe7df057707bae79f58b921a78866ff33117

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9aabc6098ef00e158598489db5a8b9e12d57a55ea5a4ec35ba3b527dfb88d16e
MD5 14c85db5760e3c1b241699867019fe3f
BLAKE2b-256 de2c43be81cd76c806bc96ca3dd0fb26cbbb2e11d86e211bb1fc88b6c1de680c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.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.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1bfa50491d3222e3c2297b52c14e835ac52702ac8a91ec3fc1ff5201912623bb
MD5 c7a34d42064b7f51748b98eb7148a418
BLAKE2b-256 9e9a944764cce2a12215b4262c855734bbc34e77857ee761b5e0d71a71883c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1537d13eefe4f48cb979362264851ee90d2bb7a221c8c350e9ceeda9f0392228
MD5 8867e0d48a2765994cbca9b50c54d3e7
BLAKE2b-256 cc0728f88471603a5bfd7844df225b06c50169705b8d383684c2f758efdf1011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2b76a5600047387c73c1b3d950e4ae3feffaefd442b20ba2f5fea773881d9bcd
MD5 356807849da52e19c9985e522c9f3b21
BLAKE2b-256 1bebf7febe81159fc19472c2c2ad698f1dafd71d72cd2ce24ffad6a95949bc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 68e39d2c0beed53e5361caacd0de98f864b3532344edb79e27e62efba2262de5
MD5 48b9efe19f6957975b5413f529edb606
BLAKE2b-256 5df1318c5a99d1c39e2cfe1c563132b18843d0e9f90d82cdb2804e3e860f9316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e45171fd046bbed2ce6ac485071cd0575d18ae98b5bbcf6533356e443ec47ea
MD5 ec007ce7fc5ce143fc491fe6be00a787
BLAKE2b-256 66975f77048ce1e0ee8453cc11be919adf8c2c34474acf970dbeae8aea328eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b0b2463906cc4119187dfaad493c48a7b2e17120946feb3eb7c2328c8cb4bca
MD5 fb61d05aa180c18072e3b1334a0cc1eb
BLAKE2b-256 542526f291cee841b76dbb2f64fb8874033ad3eed246f8969b96cc922ad417aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a40f1d985047fe4654a1afb4702cbe0daeacde3868d52be9e4652615d387e05b
MD5 2718fdeba598a5953960c5f73d435d6c
BLAKE2b-256 dd98160037832cbc702ec92b71a8f94000e3227e427ae7866c44bd8f089be31f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 605fe35ebb482b7c8d5daadcf3d264dc5edd205a352d89ee3a983861ef73cda8
MD5 083d89bc8c06a83c9aec8c1b0dda7d5f
BLAKE2b-256 19d787004b1cb044a1e0736d55a8750514c76fffa4710d2b465486a83010d9c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4f733882b67407d4b667eafd61fce86e8e204b158258cc1d0cb0843f6bb4708
MD5 56b7589e8971cb1e82061fb7fd625006
BLAKE2b-256 1a3f1783b24d1a4b02a63b629c06dfee6463f17144b5f70cac5c97b7b89ab745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5c711c8ca8d5767ed8ecd5fb5602c12eaf8fb256a5f4308ae36f2dc79e6f853
MD5 37f19bc1fe3638fc3847ed0b60c958da
BLAKE2b-256 f45b7e2aa081a03f92b82e1a4e6700ed4e4707d3950f1a9550e8c655e651c1a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc8d3edbc9f32da930da6ea33d43ce0c3239e6b2018a77907fbf4e9836bd6def
MD5 907c17cf1e04a7313fd151077d8b0fab
BLAKE2b-256 ec24c8950993aeaa4af2d7dcaad1966b62cf01bc45633f06e308c9246f7ef58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a459b7ff3d802792254d6fc6a622e53ca9cf9f002ed79db7e4dee536b2e20e5d
MD5 54a871d3b382b5674992a0cd8c3838c6
BLAKE2b-256 ceb0506c37793d81d112318b90e2481b8727bbc3c96a09fecc533768872a30a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fa4842977924209ae653e856238a30b1c68e579ecde5cf1c16c4de471b35cec7
MD5 f1774e69d4e9e905a32527da2c418c9b
BLAKE2b-256 a636b926bcc56113b6cfedfeaabcb97f63d90c6809ed63269628272909c099a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8b88390a5e31572e05e8eab476ed3176cc3d2f9622ccc059398ffdb02aaefec4
MD5 9b3b6d5d38a75971b966b2c818d4fc23
BLAKE2b-256 cc69680b4675f578433e8be026229683293110d66d21a87dcae9bae31d611d96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 21.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a5c3a32af789b0ec413a606c99b55579abbcb6c86220610a5c5041da8688e7ca
MD5 1b430779643334bd5c39cd81cd6dbde6
BLAKE2b-256 a584bfbfeedeb98c49a7977d3995eda554acb0d7a2ed65410f50eac983dd91bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.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.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 469c1a85017abf11d854fb16eca9a4093ebe1f2dacf777fed869d726f02b1389
MD5 b0effe3de5fe9e5607e297699a7cb419
BLAKE2b-256 f426d1c128faa2a51c122c2b7e29545a9e854f8c81a7581c6d89b11caf701b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c77113fbdbd7ca5de72dd3b7d113856609a1b878f6164de09dd95d12e6a51de2
MD5 dc71dd1eb33294599a80c9487d5438c5
BLAKE2b-256 ee5207beb17f0dd6ef1079f0ac9d80481dc5dd96abf2ddbd41ff6fb027bb8c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9b4039cd40335f66e55a8bee314b6a795f169fb02d70215d482023ec74613371
MD5 e88c6b03a22e16eb5f16f3388908edc1
BLAKE2b-256 d6a91c7a25ed0a30d0b2cd8998c96beaabeccad659177fe5e1aa97eec6f54ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0a87a249124666db2b795a0eb77cea5b8af8b148566616a681304826b4405869
MD5 1fe806080f402dfaa36947f52d2bd403
BLAKE2b-256 ad7f382918c9bb3d99ba92effe6e88a47284334ca5b50433834c1dc798c87ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b385fc7fc7b0811c3fcac4b0a35e5606eca693efba0d1446623ef0158a078034
MD5 ff70e0bb64d4b3cd114d17bbea33836b
BLAKE2b-256 26124c56451806c66e1d3616856b414b3e6f5357ab24f643b8a6bbb80f362fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39e1c7212dea1bbed0b075574808bc7c3192b324f54ea5d9ee522f6c35014ce7
MD5 d105dc5cf70912c3b142557e78d1e0ee
BLAKE2b-256 efd6c7f68ca3de4e5194823cb7e18704d83987fb7bcdbe4a8d53d64a4db716ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06815c3b9bf7225c4dcc9dd9dfb5a9fa91b4f680104443ef3fcd78410d7eb027
MD5 5aab63acd05a47a5d6927f4d33cc3441
BLAKE2b-256 29aa32818b9e459281b11758e31290fef367b1a14cc90778413d69a47b711a39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c0e706e0c3d1ec54d8243410e0fd5974b1c7b69db5c54cd9ae6a3a4b64fae33
MD5 586ab860a70c9dc379aae98f79d8e8ca
BLAKE2b-256 eb04e68bb0f8c4538c743e30d274bcca7493e5b599e4547228f714ace63faa5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f76fcf2867d19259b53680c08314435b46f632d20a4d7b9f0ccbb5dd3e925e79
MD5 75afb0197e03183e0e5fab5a69d316c5
BLAKE2b-256 4b090dd0e8f877cf9329de40613f24780b686241097a756be1ef1db2beebb194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6033cc6caaf056969af9ce372282a6ef2838559f2eadffe7ddb73bf65dcb27d6
MD5 4f52edd2a4d727592e3eb3f66980eb0c
BLAKE2b-256 50e278d431c22abdf26d4ad8a68340e20103518c8bcfa0d43843389688d921ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f44715d6a3313d614ff7550e52ecff67a283776909d960f338701b57e6013542
MD5 7df82386add0e79698ce65d7ad4b4dcb
BLAKE2b-256 ba6a3acc8ac22fd3e43cc7417423d247ae220c49948e267b2b28f070d27144ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 668b02556d12046e7ce94ded5bfe0ad9989d26e6977ecc55941b9a1a4a49d7d5
MD5 8a54d2044e40cc0616bf2952c9141eec
BLAKE2b-256 318e329eccbb7c64bca74619fb93037b0d911f99218e0ebc43ae74bac608a172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f74bfa9f1b91718d6664d4708d092f7d44e2f0f825a5fab82819d43d41e0302d
MD5 2be2363e357aaff10784da552dd646bf
BLAKE2b-256 1801d63ea43b6d4991f2b7cc142550b45e951e7588415a8c8c200c878fb01aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ac9d91b4d9c306e66a1abd224524fada07684a57f7da72a675e4b8bee9302b38
MD5 5f5f2cd745bbc651f92ae378c5ef820a
BLAKE2b-256 c178fff35558ed059bfe0e2e2255314538b3f42ee01cb748ad6441ac3426254d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 21.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 168de1672bd73f7f3cdf0097084b4a71651ac35f7d99d0229ea8f223358d3a79
MD5 1c08b7f6048c7e2deff4921ffd5a9982
BLAKE2b-256 5885e30d47313524c3ea6e1a1a199fca0d518ef5cce7b26f45552959915b7ab1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.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.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b0adbe8f33f57f2b6bfa8a2ea18f3e4ed91676503673f70f796bfbd06a1a2214
MD5 a4066b894f4978c042a9044378fdfde2
BLAKE2b-256 9cabac130f162e67ab9350dec362b337ddf224f6567d05b3d95e7dd20ca9849b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a21e2740c33347740dceb106b64b8a384e91da49aac7e8b3f2a25a9b33714b9
MD5 20c6b62aab748b057cce2b0dc42a4871
BLAKE2b-256 246fb020cde8b146f1025549a93ed67b19fe49d6e1cbf7647da3cc0fb9abdcf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 38dd931f1124bd9781d3027a0cd6fb6f5a75b5c4ba4fe5540584105239b1f901
MD5 6f3db53c8e410d5b0ae0de1457fc9da3
BLAKE2b-256 9f7c19d5cbdbcff97b2029e65f453aa5eb4f49e1df36430c3b916a7d36b503cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9fc1a6c78197eff8b4d125bb98410b661e732f3ec563c03264d2d7378cf9e613
MD5 e501678729434d600ff18043d7d51a63
BLAKE2b-256 19d6f3ec8d231b3fcf8e3a883c6b935c72ec1d45c78e955b1c65e3cd1b446723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ae4b19cab270fae77d7f944d56bbb308c9886d9577891b347a8deea75563995
MD5 97c0fe23105e188e02c68deedd5680cd
BLAKE2b-256 1f668be3100839dd367594fa6397e0fd13bc85701c2d9cdaaec9823af888a0fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb62c82a2518b8446be1cc5eb4319e282776bf96fdb2964e81ff2c15d632248b
MD5 8f549bfe7664cbedd07a8d785cc4d66b
BLAKE2b-256 53e5bcb02b046a46b475ca6db822833cabf13f307c3cbbdf0b61ea2a4c458bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87a8ece3e893f45354395c6b9dc0479744c1c8c6ee4471b60945d96c9b5ce6c2
MD5 28ec8078cc569f524f78ade4781a6eec
BLAKE2b-256 426e8adaefff7e3e216b0f7bd6cafce6d5d06798f31c3e2852dc3db6a7d758c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6dac8a5be01d92707409feec61b98721b7b5c3e77fe7e9e5c7cfb9fdd28385af
MD5 83e7e2e3b6a56afddd7df51795d4a542
BLAKE2b-256 a0de78dd25a50c51ace6af9a42665ef0b9439c858493f4c8dd98f55d21780a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8767cae1474f8102ec3d362976f80c8dd4eafd4109c6072adee0a15e37ba919c
MD5 6d2af59da191d551684024f097c3e51d
BLAKE2b-256 d135ad968258e526b05189a3a9cd5359eb5a6d5c049d376c964c0a660728b986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5d2776c7cd6a338cd9338fb50f2a38a7ca3e16250b40ab2d0c41eb1697ebc12
MD5 2e19102f4c3be61f672d7f3f0e06e419
BLAKE2b-256 0c3018b824e556271fb7ffa33c8c24712b440e5c2d4abe053d06e2dfc533394f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c85110f536e59fe19ea4b002d04228f57f55462add1630a0785cd6ec62e70415
MD5 17696cf8ca4a4e47cae580b805040e36
BLAKE2b-256 155be2525aa0141e6b77cd6e5a4969a8a3f7952ce24c017547935614d4ba3445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b027b53adb1df11923753d85587e3ab611fe70bc69596e9eb3269acab809c376
MD5 d7ed3b15217d4a2f03a2993bd0b67e88
BLAKE2b-256 edb726a56a3b991abe7fcf7bcfa8e0a08de3c3766c6caecb1ba46239342792ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76503a0edaf3d1557518127511e69e5d9fa37b6ff15598b0d9d9c2db18b08a41
MD5 4a5f74e928f9821d6b0aa70395350b9c
BLAKE2b-256 d8703f39ebfb3824578c34400df3b037b268abb5af0abaa789b430ffd17dd74e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 aee6c4e8f670ea685345ce4ca01c574a52e0a4318af2b8cdd563de9567731056
MD5 ee927480a83be82b2221551432c57723
BLAKE2b-256 998a3d41b452daba0cc44297680d8268b2d4a99c9f692a6332fefaae2b8777f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 21.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4bf4b8513cea6e04ddee1b578ab306fb8bfa84b2f7e92ee3dbaf65652abb07d1
MD5 7436c014cc46c3709e973e25ea1cd4fc
BLAKE2b-256 b7e48ef4fdd9f3270af369bf9596cdc78c434f7a9cd3b300d820cd6e5d010213

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.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.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 beb0f7f8371d933072e9bdc00c6df7eb5fdf76b93f08bfe73094f60c3f011f57
MD5 599551ff85082c6e53eeb9c51a8811d3
BLAKE2b-256 df9246dd48b391e34dd5b5eb97380faf525d3d5cca8a4654ce42e8576bff14f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8472151e6f7ae90d7fd231a1ac16d2e628b93ce20d0f8063da25bd8bfdeb9e5
MD5 275cbb4c3630fbb5efac1cb3da335b60
BLAKE2b-256 02a6027e1e3fa018b378ccb11405f9dc2bccdabf2d9eb851a3e9b55348a7db29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3abc0936c1efc59b510c7eab3799119a6ce8da94cea1f891854a6c3678d711f0
MD5 b9cde575447b449d66e88162fcb3a899
BLAKE2b-256 0fc23e21bc493c1a168fee9d17c5dbee28ae86434012d35248e00b3a5dd3c770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 54409fbefebe26274170c1c54e1852d310d84b85e405258aea6a78bec03b3eba
MD5 bfb2026762bf0755cbe8bfc735ad5f0b
BLAKE2b-256 3f51fca2bfc56e8492fcb07b446107744e710facdb4ad0d6bc27f8ae417c10bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bae7f07731c6c285b87111c7d5c5efa65f8b48016a98bcc57eebc24a3c7d854d
MD5 2394cb2ef7f22c8d7f468fb444274a49
BLAKE2b-256 4695b26bc8bbda78c5ee7d99bf00dc1d6f04570bb165e1428f6d9f4eb1586cfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c3f8e0c3a0744d843e3044ea76db8aa996a6cc7541693111acc2c9c30a05182
MD5 066f40f94b412f88c0a12f2b2e6e8cde
BLAKE2b-256 bb152ff2700f19a1c14fe332d85c7ced4a6a12b7d5ee3129fa6ac4a2da9dfe2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8eee5d25efee64e172ed0d60ebcf6bca92b0b26a7fd048bb946b32fb90dbdc0
MD5 4b87e7247548099691a000a3f1769af1
BLAKE2b-256 58028af10115f498406b0b1679c9692251a9f0a2afb323663905d747ce7a8220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ceaf7c6b593bf62e0567fd16547727f502ed704352392708a57c65bfd2feb73
MD5 4db7599d6aead974309c93d145177cd7
BLAKE2b-256 7421b918ea629c456f418a37b1e2be61db5d5c838f4b913bade48feef08ccf50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6494120d0a0f46a1d7dfc7def55782782856bdd5acb2f6039fb1eafecea2c2c0
MD5 b92ad67d1833074381f765f6419c75e2
BLAKE2b-256 0bf3998d74d2000a581b7649c1c26dbfcee9ef4c8cd02e0689fb773d382cfb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83538638a788b7b4a0b02de0eedcf0e71ae27474b031276e4c8ca88285281a2e
MD5 5b3e278ce1fef61caa4a90a0ca46eee0
BLAKE2b-256 c39282eeedb64a45345394664b9d75e87c1c4a12ec55661f8e398d320ef4ed72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 082ba6a3189d59f44bf75ca2c0467cdbc67c860eacd4bf564b9a927471888603
MD5 3fdf5cddfc4269bc92c39c3dd628adb6
BLAKE2b-256 e5daa598958d5848c9a19ff716d38d182f4058a93f4e3ade72016351e27d79df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b868b7fc24dd8ab4762b59a533bdbd096ebba7eabc853c7f78af8edce46d1390
MD5 a813d5da0782d8a4eb707cb0a88184a7
BLAKE2b-256 f2750c230da516ed1b8d74c47b8b69655b5fcbfb56fc0eb45762bd46257032f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7236b26828e005435fb3013894eed6a40c6f9b1b11a48391a904eee693ded204
MD5 5666ae685840944efcc6680e7e1231da
BLAKE2b-256 a4da68bea02e2570aea4afa5c5c0e61a00c84fca24233d93195902383e57515d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 52d92df0eb5bba7f31f302a08174d628956d7216453da9d96498da9341179288
MD5 6f6287a76ba1e020210312d6444c08b6
BLAKE2b-256 a8f9857381d5a52c00e82e591f094f1f59e635de86344f936b5f448f72e48126

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 21.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e3215b43632a23b5b99165097949ce51dd093ab33d410bcf8aa901cdbc64d9cd
MD5 745fead2bb465b5dd1f46ebbad017895
BLAKE2b-256 935cfa1526f5fda4e4ab84cac771e2741ae3a03f6c7009609cc67efd986e4e7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.4.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.0 CPython/3.12.4

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a816f732f695261798a8a0fc1e0232a3638933b8ddfc574c00f9ef70d9f34cb8
MD5 c6191f906b7b6d3f471568e3a38f17e9
BLAKE2b-256 73920e4bb9d8a6c5417c7c2fabb4b59b76592c8350307bc9e8e4a13d47f0f8eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b90d9861673b0ba04651ade62e0fe568df71bbff8468657406848e9abf3650a
MD5 3eff576c3ee7d6517e297a4e269c786b
BLAKE2b-256 5202109400e6275270f7cb5b1499801791481df24f5bcc956e82d1de7d76426d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b4e5e9d1f84bbc01bf6a32a4704920c72e37d9090b3e0e29bd1574d06b3249f1
MD5 4f3bc653006f7bd19c2fc0c3134d7774
BLAKE2b-256 16c595c8d588e1f0f1f4d4a13e1690557b119a4ce7a07521b17d32764c61b55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 98148ecaa7836f76ed33429e84a23253ac00acbad90c62b8b4ad0f61de31da2b
MD5 635bf3724173c1cf4544af4cba7d04c4
BLAKE2b-256 ca25deefcce971c970dbc5fdb88d006cb7cb91058d0426731b0140e0158c6c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 468efdcbad7349a44aace693aed8324a01de180fcd4ef5513199eedb9b4341c8
MD5 e95b86e422aae789d259fc76bd90c03f
BLAKE2b-256 b747fce717de64d32c94027337405a8775914cc7fb43b3dd74b89d996085c388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 737585b122fca03273bbf1f4e98909254dba6f8cd85f1cb566d6c890d0389277
MD5 8a9e3da3aa7d49b34cba495d7c9ee94a
BLAKE2b-256 bb279307eb6e1c73e749a35603a39b2f393859b50c4b7e613255111f33815ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ced14fbec28fbabda7cb9f9094f2578c154c14f1a820a91c30fc8ee0bea1a0d
MD5 27bc4560fee44e43096db65f588e9f23
BLAKE2b-256 73ca9e087a9baef2ddf90095bd0104fb0d6ab85574c09238165e04a05873ac0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f34b39057956305935c71f51a0860709b6124c92281dc03841587dd45a86322c
MD5 342bd5189a65278432059dc4d6112d9f
BLAKE2b-256 4373387722733bc87a13a6d0a2a473b4b06953fd3a222cd78bcc1fd0003f78a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5598afad9e2f8e4fc9a456d281a9cc80315b0e18f5064437223dbfe67f49bded
MD5 c3bd197f59bf0c6952b22d2fdbc71312
BLAKE2b-256 e3f199791a59ef8af24d1e307f7650a19e70d4151a24e30ced068c073ccf3531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2676e2a934e046200faf0dc26ffa48c4989c3561c9bb97832e79969a41b2afe
MD5 802e0815af15b0e83b431c776da2e0ec
BLAKE2b-256 72d11a2ce1e3b687e5c2ec9511bca3e8c0fcd7a8d19922d3a404218787eec4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9f8827cd7a84f5344779754ebb633bca71c470e028f92ecc959e666ef5c5e3c
MD5 8f708043af361c742ac441be00c1112d
BLAKE2b-256 42da4cac2a51a4c88a8260ab587af11c735e073e3c32833e95f03ec8102634a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 070a0198401bc567709b9edff7f01e94c136dcca69d0ded4747b116bb0b8b577
MD5 f5f67d841ba374efc1eb501cdb9bf1f8
BLAKE2b-256 cc4283309747dc591346962522dd0e08f6531742c2970ead7e13b77aed3570b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5bdb223e7c3b9470f126bb77879ee2593fd79b28e1e8b11ad9edd3f866556109
MD5 2b6dbc0ff4a810f0be2426f1e3958558
BLAKE2b-256 c8f6e0c5d9dc183c859cf4ef72feae696a5d5dd31fcdfc50a7577f94f68a4a1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.4.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2d7715598c9034369cf739475ccc2db53a8ca895ff398fef6b9c597c30960ea8
MD5 579fac530bfb47db03065cf8313ef0da
BLAKE2b-256 9256cf51560e251c06ef9dde4c84f01cc612bdfa76fb080ec872583c9f0e7537

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