Skip to main content

Python wrapper for hiredis

Project description

hiredis-py

Build Status License

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

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 --recursse-submodules https://github.com/redis/hiredis-py
python setup.py build_ext --inplace
pytest

Requirements

hiredis-py requires Python 3.7+.

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.1.1.tar.gz (82.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.1.1-pp39-pypy39_pp73-win_amd64.whl (19.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.0 kB view details)

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

hiredis-2.1.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (23.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.1.1-pp38-pypy38_pp73-win_amd64.whl (19.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.1 kB view details)

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

hiredis-2.1.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (23.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.1.1-pp37-pypy37_pp73-win_amd64.whl (19.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.3 kB view details)

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

hiredis-2.1.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (23.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.1.1-cp311-cp311-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-2.1.1-cp311-cp311-win32.whl (17.7 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-2.1.1-cp311-cp311-musllinux_1_1_x86_64.whl (90.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

hiredis-2.1.1-cp311-cp311-musllinux_1_1_s390x.whl (89.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

hiredis-2.1.1-cp311-cp311-musllinux_1_1_ppc64le.whl (95.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

hiredis-2.1.1-cp311-cp311-musllinux_1_1_i686.whl (90.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

hiredis-2.1.1-cp311-cp311-musllinux_1_1_aarch64.whl (90.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

hiredis-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-2.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (83.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-2.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (90.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (83.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-2.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (82.9 kB view details)

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

hiredis-2.1.1-cp311-cp311-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl (26.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hiredis-2.1.1-cp311-cp311-macosx_10_12_universal2.whl (45.6 kB view details)

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

hiredis-2.1.1-cp310-cp310-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-2.1.1-cp310-cp310-win32.whl (17.7 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (87.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

hiredis-2.1.1-cp310-cp310-musllinux_1_1_s390x.whl (86.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

hiredis-2.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl (92.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

hiredis-2.1.1-cp310-cp310-musllinux_1_1_i686.whl (87.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

hiredis-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl (87.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hiredis-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-2.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (82.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-2.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (89.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (83.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (82.1 kB view details)

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

hiredis-2.1.1-cp310-cp310-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-2.1.1-cp310-cp310-macosx_10_12_x86_64.whl (26.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

hiredis-2.1.1-cp310-cp310-macosx_10_12_universal2.whl (45.6 kB view details)

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

hiredis-2.1.1-cp39-cp39-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-2.1.1-cp39-cp39-win32.whl (17.7 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

hiredis-2.1.1-cp39-cp39-musllinux_1_1_s390x.whl (86.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

hiredis-2.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl (92.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

hiredis-2.1.1-cp39-cp39-musllinux_1_1_i686.whl (86.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

hiredis-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl (87.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hiredis-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (83.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-2.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (82.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-2.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (89.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (82.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (81.8 kB view details)

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

hiredis-2.1.1-cp39-cp39-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-2.1.1-cp39-cp39-macosx_10_12_x86_64.whl (26.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

hiredis-2.1.1-cp39-cp39-macosx_10_12_universal2.whl (45.6 kB view details)

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

hiredis-2.1.1-cp38-cp38-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-2.1.1-cp38-cp38-win32.whl (17.7 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl (87.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

hiredis-2.1.1-cp38-cp38-musllinux_1_1_s390x.whl (86.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

hiredis-2.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl (92.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

hiredis-2.1.1-cp38-cp38-musllinux_1_1_i686.whl (87.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

hiredis-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl (87.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hiredis-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (84.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-2.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (84.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-2.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (90.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (84.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (82.7 kB view details)

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

hiredis-2.1.1-cp38-cp38-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-2.1.1-cp38-cp38-macosx_10_12_x86_64.whl (26.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

hiredis-2.1.1-cp38-cp38-macosx_10_12_universal2.whl (45.6 kB view details)

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

hiredis-2.1.1-cp37-cp37m-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-2.1.1-cp37-cp37m-win32.whl (17.7 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

hiredis-2.1.1-cp37-cp37m-musllinux_1_1_s390x.whl (85.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

hiredis-2.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (90.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

hiredis-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl (85.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

hiredis-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl (86.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hiredis-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (82.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

hiredis-2.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (82.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

hiredis-2.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (88.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

hiredis-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (82.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hiredis-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (81.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

hiredis-2.1.1-cp37-cp37m-macosx_10_12_x86_64.whl (26.5 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: hiredis-2.1.1.tar.gz
  • Upload date:
  • Size: 82.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1.tar.gz
Algorithm Hash digest
SHA256 21751e4b7737aaf7261a068758b22f7670155099592b28d8dde340bf6874313d
MD5 c84e0e49565f2b85f32b09886337a9a3
BLAKE2b-256 92d8a6b2d7f5c457180ccbca7a1bc034a8cc834e02af2cecb43d70d614363836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 646f150fa73f9cbc69419e34a1aae318c9f39bd9640760aa46624b2815da0c2d
MD5 a0eabfa64a8ae58dbde21839715defc2
BLAKE2b-256 39e186db44753529f07e12df01892f5c40b324a6b998c8f9530fe85189af4152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db59afa0edf194bea782e4686bfc496fc1cea2e24f310d769641e343d14cc929
MD5 b2d9db143c57ebb76e2091ebe5dab379
BLAKE2b-256 56ccdea0bde6d2e4d0fcdffbe3edbf77704eb06227eb397b945e16d73469878e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 816b9ea96e7cc2496a1ac9c4a76db670827c1e31045cc377c66e64a20bb4b3ff
MD5 eebf8d51aa113ccd7138fe79ab31b68e
BLAKE2b-256 0a38ec82556653087fb11ee192299f51a5fe485d7c64de9badc5537406c5dffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c7a7e4ccec7164cdf2a9bbedc0e7430492eb56d9355a41377f40058c481bccc
MD5 5f2f22ab24f264ea7c4ee2f6b01d9d33
BLAKE2b-256 36f84b670c562309dcff4472475e81eed998896c8861ac63efda81642723ff9b

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1d85dfdf37a8df0e0174fc0c762b485b80a2fc7ce9592ae109aaf4a5d45ba9a
MD5 56d8bff456a9cfb608b5573ff25cecef
BLAKE2b-256 a4d778bb3ef056ab592ab8be16304d938a5f8bd4f7b31e3a0a3b648af11deded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bbf80c686e3f63d40b0ab42d3605d3b6d415c368a5d8a9764a314ebda6138650
MD5 f9b4f4b068c69818e13a9eaf7d88d8dc
BLAKE2b-256 2aad4a5af61b9a0b07dde11bd2e4394f0969687ad09227c364e905d0f5d319c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bd6b934794bea92a15b10ac35889df63b28d2abf9d020a7c87c05dd9c6e1edd
MD5 4288dd83264480f04f7cf5ee42ec94a5
BLAKE2b-256 000cdc17269bba33233a2fd71226b1cfd0c3053953e2cfd1296e6cd42c58291d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8781f5b91d75abef529a33cf3509ba5fe540d2814de0c4602f0f5ba6f1669739
MD5 c65518b4bfb43cf333c4b4079d55e957
BLAKE2b-256 ccc14540aa3c4e60207e6ce2838751c9a0f4fea599c617e87aa52b66f7ed70cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf6d85c1ffb4ec4a859b2f31cd8845e633f91ed971a3cce6f59a722dcc361b8c
MD5 7f32d998a61d01937133992e79e28f87
BLAKE2b-256 89b30d78a814e56c690991e3f0a4be5bd100113243c0df9df8612e132d02dd52

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec060d6db9576f6723b5290448aea67160608556b5506eb947997d9d1ca6f7b7
MD5 ddabfabfbd706abcbb5944fca5b5d6ae
BLAKE2b-256 9b7effbd2f8f2b19d92e48e1d7e175dcc5ac523aa8e9d4a6c9d8bb4a2d46653e

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c2b197e3613c3aef3933b2c6eb095bd4be9c84022aea52057697b709b400c4bc
MD5 8f81c842a4cf821fe461f10e96d04f49
BLAKE2b-256 61139717a3f933ad20650b3007b01a9a68d67b977006884db19f56620627600a

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f14cccf931c859ba3169d766e892a3673a79649ec2ceca7ba95ea376b23fd222
MD5 9c10a1c7583cdb21a710424c88a71f48
BLAKE2b-256 d1c02303781b2a94c7902725277e0e8c16cc3eb54ac0e05ea8645007cb3d36d6

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 653e33f69202c00eca35416ee23091447ad1e9f9a556cc2b715b2befcfc31b3c
MD5 fe01320cfbd8eaf6564a5487d9d2cd92
BLAKE2b-256 e5d4739fee0c07ce2bbe1dcd7a1e8222641cd20b3076a815243c4a02879974cf

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86c56359fd7aca6a9ca41af91636aef15d5ad6d19e631ebd662f233c79f7e100
MD5 e62c93858ab7926d2fe6b4e39815363e
BLAKE2b-256 cbd74e5c516e0e4b0af0617868b72ab1a437715e16e82c5acdf4bacb717eb000

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8de0334c212e069d49952e476e16c6b42ba9677cc1e2d2f4588bd9a39489a3ab
MD5 1250590e771d2bcedd6f863e3793537c
BLAKE2b-256 80534c38e1860daf735431d72cf8c9b5b3d16b50dae4e39f487b48ae1dfda12d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ced076af04e28761d486501c58259247c1882fd19c7f94c18a257d143248eee
MD5 1390630a96612f9c67c69fd355214e7f
BLAKE2b-256 005eb8b6accaa26551404ca5520bf2a71b86489d0d0105ad73c959e9e333a479

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f8b3233c1de155743ef34b0cae494e33befed5e0adba77762f5d8a8e417c5015
MD5 dbae355c3de816aac942bc84986f42a9
BLAKE2b-256 54753864707c23a4d68e9ee7a6d4aa8d6d75b5e845b2953885e4cc012eaa0ac1

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e25dc06e02689a45a49fa5e2f48bdfdbc11c5b52bef792a8cb37e0b82a7b0ae
MD5 17962397d92f514efb72fa12dc9e0e1a
BLAKE2b-256 fdf6dd89fd85fde59d0cdb46099887d169aafcff9e0c31bbdc7e716be37a4501

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4beaac5047317a73b27cf15b4f4e0d2abaafa8378e1a6ed4cf9ff420d8f88aba
MD5 bd810c8994b39a48a04f6a7e8ee229a0
BLAKE2b-256 abf76734e642da9838ed51ecce6fc8ee2f8ee6407109b773d23fec854972c5ba

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 90b4355779970e121c219def3e35533ec2b24773a26fc4aa0f8271dd262fa2f2
MD5 42a8f3dbb439b6c0a87c9d3026dda3c8
BLAKE2b-256 23be37a8c43b6fafe896e7debcefc653862372ba447244bd66971db7dc715c5a

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c7336fddae533cbe786360d7a0316c71fe96313872c06cde20a969765202ab04
MD5 21777607a57ec26152cea8cbcc58c34f
BLAKE2b-256 5a0130a70d2ac9352207a05f294a7ea9e0755d9a1a9915e37ab32834845693e8

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 19843e4505069085301c3126c91b4e48970070fb242d7c617fb6777e83b55541
MD5 938c134689a15700ad1704d528eaff8d
BLAKE2b-256 62f620496596da07da8129a7c64db766097d6ebc9514f1a94fcc270223a49cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79f2acf237428dd61faa5b49247999ff68f45b3552c57303fcfabd2002eab249
MD5 cc7ebbdc80dc651d11f6b8d1acb17030
BLAKE2b-256 62af7d751694f62e56dee0b283934db4048efe1d4f9dbd5c316861ac586b047f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f45f296998043345ecfc4f69a51fa4f3e80ca3659864df80b459095580968a6
MD5 fc43dddeef4ead688b1ca5c7f1ee5d4a
BLAKE2b-256 ee498a61c7818237c83b44d77f1536e5f9cd3d1c002ddec4139e8b8a7b79db7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b901e68f3a6da279388e5dbe8d3bc562dd6dd3ff8a4b90e4f62e94de36461777
MD5 768f94f8194da4651be310ab7a6568a3
BLAKE2b-256 bce3d6381b9c62d259d2526a627fd08d9e4cfe82cf7f660d5ef58eff22b44f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 252d4a254f1566012b94e35cba577a001d3a732fa91e824d2076233222232cf9
MD5 dc892aaa5aad298fab2979f31c7962aa
BLAKE2b-256 413f23fcf2a637384f57d66f1e3b5b94dd5bfe951422f322724ecce11072c36d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82bc6f5b92c9fcd5b5d6506000dd433006b126b193932c52a9bcc10dcc10e4fc
MD5 47f095277c90dc7238b2a660fdece14b
BLAKE2b-256 eed5e3a0a89e3a3d70568cec851509153d67b62a4540984af139b2d25943caee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9632cd480fbc09c14622038a9a5f2f21ef6ce35892e9fa4df8d3308d3f2cedf
MD5 6353e776ec1dc1dfd9a8d6e9b4107f73
BLAKE2b-256 663dc271b6805a74eaba5efce467fda4f0e37c0279aad183dc11faa63b6d0b68

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd43dbaa73322a0c125122114cbc2c37141353b971751d05798f3b9780091e90
MD5 02d83d82d07d38e410187b88d1ffe20a
BLAKE2b-256 00f2fb7a0d7c1cc669fae2779c26f2799a59d361373a2f9cd5b8168ec4058caf

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp311-cp311-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp311-cp311-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 69c20816ac2af11701caf10e5b027fd33c6e8dfe7806ab71bc5191aa2a6d50f9
MD5 0d1e5b83412d7fd839de2e6aabf3a357
BLAKE2b-256 478db7ca864b3583c36d23d49913d0bc6f2c497475bfbf6405c1fe2511769ca5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f60fad285db733b2badba43f7036a1241cb3e19c17260348f3ff702e6eaa4980
MD5 2a3b56ad0e679f00ad33310237d853b2
BLAKE2b-256 b40143cdaff6ac536a63386171e62a7e78b968874c1f8882c160d0b1419395b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a284bbf6503cd6ac1183b3542fe853a8be47fb52a631224f6dda46ba229d572
MD5 6ada031dfab345562371eb9dc5c11bdb
BLAKE2b-256 60c6dcc7bb50f555c32774122f930655a6eb7b8a945daf6b77dd2b71431eb1bb

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f45509b43d720d64837c1211fcdea42acd48e71539b7152d74c16413ceea080
MD5 82477602f02918b0f19bd2e00053c888
BLAKE2b-256 aba2f91f6fea990ad34b02edc7662d55f39c07971e17013125ba78feabba74d2

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d9145d011b74bef972b485a09f391babaa101626dbb54afc2313d5682a746593
MD5 7b02509ea29d5ef861c36775856d9a0a
BLAKE2b-256 ba32e2acb961eeacc051089fdd3f9484d87f9d290089ee16aae63eaf8ffa33a6

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 4b51f5eb47e61c6b82cb044a1815903a77a4f840fa050fd2ff40d617c102d16c
MD5 f9c78c2576366bd5f3136e4396ab41f3
BLAKE2b-256 25699c3b4cf8a8649c94540e10a6f10164f3fef2eef8315399abcce48a6479ba

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2d39193900a03b900a25d474b9f787434f05a282b402f063d4ca02c62d61bdb9
MD5 dec97a6c96551c145b2b0c7c957de1e2
BLAKE2b-256 6ee34944789e908893644dc28fef2ad664c5ada876b76a8285d242f6c291cbe2

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ef2aa0485735c8608a92964e52ab9025ceb6003776184a1eb5d1701742cc910b
MD5 00dbcc13e7a2d95ff18912cc986489de
BLAKE2b-256 df10f6b1a54e100c8530618b020f3441ecd428e2cf281116203bb7376478738f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61fd1c55efb48ba734628f096e7a50baf0df3f18e91183face5c07fba3b4beb7
MD5 f848d60e4a8319b5f5064a85db0545cc
BLAKE2b-256 b0c27658acfeb4fd1d77ca273d46d769f5e2d09f47437f02e1eac51504fa3631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d64b2d90302f0dd9e9ba43e89f8640f35b6d5968668da82ba2d2652b2cc3c3d2
MD5 838091a3adc9fe11231e2ae23828d565
BLAKE2b-256 04596085c3b2f4910d42ae703fb75676c15aaae08e7b9424ef57509230320362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2d6e4caaffaf42faf14cfdf20b1d6fff6b557137b44e9569ea6f1877e6f375d
MD5 056c45670c4c7bf9192ed79b74cd6a02
BLAKE2b-256 ca5f74fd5c302f867d47aec5da9fbc3c940cf888e0e7559d6a0dd9c55eb3d4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 170c2080966721b42c5a8726e91c5fc271300a4ac9ddf8a5b79856cfd47553e1
MD5 0a1074e54a4fac9fb313f4cb24f70b8f
BLAKE2b-256 444dbe674a6d976652407b4db817eecc78f51f9c4ddbc0a9024fe1833bf7236e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfc5e923828714f314737e7f856b3dccf8805e5679fe23f07241b397cd785f6c
MD5 c74e8b47156d6ff2880befa902eb1096
BLAKE2b-256 db4577b24876818cd36d2768c294cd654796e5b4ca6246d280ac73775f9b9ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b61732d75e2222a3b0060b97395df78693d5c3487fe4a5d0b75f6ac1affc68b9
MD5 fd6f8a75905ca8ed874a3f1d483de9a5
BLAKE2b-256 2a7e898142b24b5ad7d3ed0c0208148bc47a1e44367427710885438e74a9476f

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3a437e3af246dd06d116f1615cdf4e620e639dfcc923fe3045e00f6a967fc27
MD5 a093a3dcbc77d28a9affa7433a6c5407
BLAKE2b-256 5e7b513dff115ff6044eded988b065cf449af366852f4e7f86e07872609d680f

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp310-cp310-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp310-cp310-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f15e48545dadf3760220821d2f3c850e0c67bbc66aad2776c9d716e6216b5103
MD5 e90fd1412c281c1ef246055b9bfe9749
BLAKE2b-256 ab744089ffd681f9d022824e54172724ef0d1fb00b19837bbc651f3a1d6233e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5a47c964c58c044a323336a798d8729722e09865d7e087eb3512df6146b39a8
MD5 520831fc6a9f21cb1f6a25bfb05d83ae
BLAKE2b-256 369dffa0a05ea2156dff0bfaf77c893af704edc1d79e1a15dc3649dd641b9799

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0258bb84b4a1e015f14f891d91957042fa88f6f4e86cc0808d735ebbc1e3fc88
MD5 fe0ce123ab6c3fc7d9a46a7bb8474aef
BLAKE2b-256 2fc3aa714fe73180f8d7d339587a1386a1f7acc61af9eee426837b96a92ddcc6

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e51e3fa176fecd19660f898c4238232e8ca0f5709e6451a664c996f9aec1b8e1
MD5 6d1a62929926182d781c6c4da18ac6ab
BLAKE2b-256 e0ca01290947fe350b433bb0ba3769d1654cb903bd78e5c6fe9047a94200e8ba

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0ae718e9db4b622072ff73d38bc9cd7711edfedc8a1e08efe25a6c8170446da4
MD5 4f93930de6ced49422567792cf740d7b
BLAKE2b-256 71c304a79ca204a57afd19f674c213f8060d658f9c2c78be54e0a9c482d3688e

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fbc960cd91e55e2281e1a330e7d1c4970b6a05567dd973c96e412b4d012e17c6
MD5 743f00b67d4f69fae9fb6d08007544b2
BLAKE2b-256 6ccd286874badb6887280194156801eaad16e46a966717bc5834dcdd7030d376

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d3d60e2af4ce93d6e45a50a9b5795156a8725495e411c7987a2f81ab14e99665
MD5 c665a1a74f60ff6e8f245dba9a068248
BLAKE2b-256 61ea82878beecceef12670a7a1ca5ed24d70028d6a31967b51e3ca53962e5f87

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17deb7d218a5ae9f05d2b19d51936231546973303747924fc17a2869aef0029a
MD5 4d4a32b07116f36a11dfebae5ca9b12d
BLAKE2b-256 78252d62d81b49e3c38b2f4e7c4e67ece8a868c8a05cad8ac16cdbfc8f3229e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10c596bce5e9dd379c68c17208716da2767bb6f6f2a71d748f9e4c247ced31e6
MD5 bcec1c79a059693b1c2efd38005eafbf
BLAKE2b-256 a185d5ca713a89fc123be3200236cae3c042cb685c992672a14f0bb368e3abc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d67429ff99231137491d8c3daa097c767a9c273bb03ac412ed8f6acb89e2e52f
MD5 448495eb0016effb9e734157b6296d8c
BLAKE2b-256 c5642d93b98cde1f413b20b1c477c1152a97ac9c0ac6315d4f2f7928748c3334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72cab67bcceb2e998da2f28aad9ec7b1a5ece5888f7ac3d3723cccba62338703
MD5 9582107eac5a1b2df0fac4b03ab63158
BLAKE2b-256 b62915e124a042d0d0569658e295eff58783a86866188c7c2318ed5efc3d2d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65927e75da4265ec88d06cbdab20113a9e69bbac3aea1ec053d4d940f1c88fc8
MD5 d9b3357b6d8f642b691715055e3223b1
BLAKE2b-256 57948d29953aa0a4da796a570cc5016d4809b9cce55768f05623452e96a17465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e0aab2d6e60aa9f9e14c83396b4a58fb4aded712806486c79189bcae4a175ac
MD5 7ab5bbe30941d145bd8fa99e6bb347c8
BLAKE2b-256 409f63222cbd0a67c36be59650af70a67f35d940193325f2c5ef3da6dde2e6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40c34aeecccb9474999839299c9d2d5ff46a62ed47c58645b7965f48944abd74
MD5 f9736a5015e061c1d726935e82d96818
BLAKE2b-256 d8249a4a36e6e7b067a375dfce4bfb363f7b1b3fcf62baa2b84b7e50229e99cc

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea6f0f98e1721741b5bc3167a495a9f16459fe67648054be05365a67e67c29ba
MD5 8b0376082908716e12d20abe06bca10c
BLAKE2b-256 b50c8c77d8041adfcf3976820db32061809de0e36725a788f1cd0336e3b8f309

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp39-cp39-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp39-cp39-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 27e89e7befc785a273cccb105840db54b7f93005adf4e68c516d57b19ea2aac2
MD5 5a07c95aedf988d0c0d6d6b92da4c1f6
BLAKE2b-256 f40427ec0e9558f7068ca9d36b5cce80c27fd91422230902f8ab6c2eccc3fd33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b964d81db8f11a99552621acd24c97381a0fd401a57187ce9f8cb9a53f4b6f4e
MD5 258e8bb96e8e9e4f68e8ef38320b47b7
BLAKE2b-256 99cd77ab1334a18e8f9277432397c3386eb2df2908f5003d2c9c01dca5844377

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 07e86649773e486a21e170d1396217e15833776d9e8f4a7121c28a1d37e032c9
MD5 9ec740f5394536755ce3b2bfe281588d
BLAKE2b-256 856f5bf5354e691a9328c58f17bdd59142e058e4d04a913ef8b7ab51bc533271

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5bd33ac8a572e2aa94b489dec35b0c00ca554b27e56ad19953e0bf2cbcf3ad8
MD5 1d439336fc916d3a66d8d57a49caa468
BLAKE2b-256 684853b8a7908b229df75ab095586302178bbf7a2b7e9ccc02c5f94dabf68bcf

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4732a0bf877bbd69d4d1b38a3db2160252acb31894a48f324fd54f742f6b2123
MD5 24222d5437ff0cd08735ab1afab0f13a
BLAKE2b-256 9e6a0540b7df4383cd7fde7a51e16c6f565af554179e68bc8b0f3f349c4c9b8b

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5560b09304ebaac5323a7402f5090f2a8559843200014f5adf1ff7517dd3805b
MD5 315a17cca671f00672d4d557c5b1f3ef
BLAKE2b-256 f90c68e84605035e0f09a19beb391f2c435bd78ae3ae56f3a1dae3f4c648fb4a

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8a92781e466f2f1f9d38720d8920cb094bc0d59f88219591bc12b1c12c9d471c
MD5 01e12e07c57153c2dac2007b3f35469b
BLAKE2b-256 1f42082b6231f9efefb0c44e72eea54fe8f2531d2f023d1afa2ca11edff443e0

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4d2d0e458c32cdafd9a0f0b0aaeb61b169583d074287721eee740b730b7654bd
MD5 51a2a546c2175dd4227ea79c15661f96
BLAKE2b-256 09c51826efc490780cbca9794b3569d85e98f9325f50853d2b99ec38dfed902f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39b61340ff2dcd99d5ded0ca5fc33c878d89a1426e2f7b6dbc7c7381e330bc8a
MD5 c41dd0b10f45006b801af3d605982ee1
BLAKE2b-256 a84b093efd48f6be07d71242f480cee7553f7f4ffb522965259ffe9227e6c366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 637e563d5cbf79d8b04224f99cfce8001146647e7ce198f0b032e32e62079e3c
MD5 ccd750983bb12975a73d8c107bcf8906
BLAKE2b-256 5fb6da46e3d996dfb2e15a2b2b4360e6a93ffdc4aefa80c67d95b7b5a228cc87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fe297a52a8fc1204eef646bebf616263509d089d472e25742913924b1449099
MD5 c31e6c5730ea2b5cf4feda3fbd7d19a3
BLAKE2b-256 522c06bc743cb623b59f69a6addb66ff6131ff11c3fdb40af105586196ed61cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d304746e2163d3d2cbc4c08925539e00d2bb3edc9e79fce531b5468d4e264d15
MD5 2c2e8f0dc7dc6a455ae9b6510172afc4
BLAKE2b-256 6ea5c6f9096c04d3b9100c3176448e4aaabda6202d67deb59fbc1d42aeb6dd25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66eaf6d5ea5207177ba8ffb9ee479eea743292267caf1d6b89b51cf9d5885d23
MD5 26f8356650ee3ae0389a8a3fac74b45e
BLAKE2b-256 e777fa85fafb81edccdf4952bf35ea41b2948454e4471f4861837a373c16574a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5359811bfdb10fca234cba4629e555a1cde6c8136025395421f486ce43129ae3
MD5 218876d61124227e56cee2a817d537a3
BLAKE2b-256 625917c2d08f8120c941f7e27481c2b1d9480b2eaf777f03d8236680eaeeeccb

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a42e246a03086ae1430f789e37d7192113db347417932745c4700d8999f853a
MD5 2abb551ad3e7ec66c4367054fc82a2e5
BLAKE2b-256 1d461a4baf6ffaeb91d0be3cd66fec5af0453f691e0883555242f532417ddac9

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp38-cp38-macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp38-cp38-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9f068136e5119f2ba939ecd45c47b4e3cf6dd7ca9a65b6078c838029c5c1f564
MD5 2d8db2f8aa4275d264ca7005ba57f7a9
BLAKE2b-256 81e72724a0cac19be831d6e94febd2fa18ea401b8bf4fa6b764c3aff64b2c456

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 19.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8ceb101095f8cce9ac672ed7244b002d83ea97af7f27bb73f2fbe7fe8e8f03c7
MD5 64a8ae422b9b37cfcbf7063ae809ac91
BLAKE2b-256 227f68290f7a698c81e1f7a363c0ccbe6de3f0838419c5f5f1b1bda3c19c9c7f

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: hiredis-2.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 96add2a205efffe5e19a256a50be0ed78fcb5e9503242c65f57928e95cf4c901
MD5 fcf35c6108021ca90da39b3fea72c7e4
BLAKE2b-256 36ce80e9bbb82f67c9127dd174a5842e69026c6dd2fd027c4f4875fa501c6e4d

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6050b519fb3b62d68a28a1941ae9dc5122e8820fef2b8e20a65cb3c1577332a0
MD5 3ac35094b6c351c63396cecca411ce3d
BLAKE2b-256 657cb6d8a36948e43991c8b12e10eea8cc362de8bf5662c4af8ef2c780919665

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 38c1a56a30b953e3543662f950f498cfb17afed214b27f4fc497728fb623e0c9
MD5 866b802b390b63fea038b37b022b9a49
BLAKE2b-256 79ea1277224c4627bd668345624e15b9682d5937eb2f8c67a2308959c8279701

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b8e7415b0952b0dd6df3aa2d37b5191c85e54d6a0ac1449ddb1e9039bbb39fa5
MD5 57d411f9e46a7ce0eba67fff814c221b
BLAKE2b-256 ae46cf7e138bd25e81ac646f451e7fae77549f4ed275ad97be769869a726be7a

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 649c5a1f0952af50f008f0bbec5f0b1e519150220c0a71ef80541a0c128d0c13
MD5 d2cbd97b981931b652409e90ce6d7249
BLAKE2b-256 afd63f1b08781dd782b2c436bf7c6e853c1345456bc9cff170e275ae8661dd78

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f448146b86a8693dda5f02bb4cb2ef65c894db2cf743e7bf351978354ce685e3
MD5 221c291676c0d40bbd1ff17c16e001e5
BLAKE2b-256 e15de36b1f4c5737660bf494eb001c92f211cdd51c6f9db00f1f2cbae48e2e85

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7d8d0ca7b4f6136f8a29845d31cfbc3f562cbe71f26da6fca55aa4977e45a18
MD5 f5bb5dc511d1a3f0ecb8bc71fd7e9e9b
BLAKE2b-256 850badecf57f76bd8beb4903362f0c99c4aa96b13b863a7e39b26aacc1218da8

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11801d9e96f39286ab558c6db940c39fc00150450ae1007d18b35437d2f79ad7
MD5 8ed7940dd9cbe71b36f0037faeacde8f
BLAKE2b-256 6648ed183a79d0c4ae6f74eac7c38b3ff7b52af6362d60454036292fd26da348

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 436dcbbe3104737e8b4e2d63a019a764d107d72d6b6ee3cd107097c1c263fd1e
MD5 fd8cb41b1b22b5794389ec32a2cf0eb5
BLAKE2b-256 64bf1c836756109453fa850a2f514149de3a99e98213cb8228fd93429f4ca364

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b04b6c04fe13e1e30ba6f9340d3d0fb776a7e52611d11809fb59341871e050e5
MD5 68c28478cea94cb605254a7da26cb5be
BLAKE2b-256 ee1b811d094e2624b8ed503bc7cb4b838be37a78b51c2202b243bbea6b6cff23

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c040af9eb9b12602b4b714b90a1c2ac1109e939498d47b0748ec33e7a948747
MD5 871bbef3290f5dad7e40102c84b2f775
BLAKE2b-256 43b75bc621d539e9183029cc67f4d4c7a90b9a052840894ad27969281bd6de36

See more details on using hashes here.

File details

Details for the file hiredis-2.1.1-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4300e063045e11ee79b79a7c9426813ab8d97e340b15843374093225dde407d
MD5 156f359b782286f2aa0ab57bc211c728
BLAKE2b-256 f23e155fc4242b110199efe1913ed654d4136f42ccf3f07a7db0dd3b15f11892

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