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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

hiredis-2.1.0-pp39-pypy39_pp73-win_amd64.whl (19.2 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.1.0-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.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.1.0-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.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (23.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-2.1.0-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.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.1.0-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.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (23.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-2.1.0-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.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (27.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.1.0-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.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (23.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hiredis-2.1.0-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.0-cp311-cp311-musllinux_1_1_s390x.whl (89.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

hiredis-2.1.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl (26.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hiredis-2.1.0-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.0-cp310-cp310-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hiredis-2.1.0-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.0-cp310-cp310-musllinux_1_1_s390x.whl (86.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hiredis-2.1.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

hiredis-2.1.0-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.0-cp39-cp39-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hiredis-2.1.0-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.0-cp39-cp39-musllinux_1_1_s390x.whl (86.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hiredis-2.1.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

hiredis-2.1.0-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.0-cp38-cp38-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hiredis-2.1.0-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.0-cp38-cp38-musllinux_1_1_s390x.whl (86.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.8musllinux: musl 1.1+ i686

hiredis-2.1.0-cp38-cp38-musllinux_1_1_aarch64.whl (87.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hiredis-2.1.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (24.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

hiredis-2.1.0-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.0-cp37-cp37m-win_amd64.whl (19.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

hiredis-2.1.0-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.0-cp37-cp37m-musllinux_1_1_s390x.whl (85.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

hiredis-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl (85.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hiredis-2.1.0-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.0-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.0-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.0-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.0-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.0-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.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for hiredis-2.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e057d5545189d4c9e22ae0f7dc283ea0a225f56999511022c062cce7f9589d69
MD5 28b01cd62ff7c837b32ebc0e69b68dc7
BLAKE2b-256 77dbe56abc5b0c5c2920577493fb4d7f06e291673df8438f12b79b81fed9e924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c763eb9a1414c4d665945c70ae2ef74a843600667b0069fe90e2aabc78e5411
MD5 91f8fe3acd67d8f7b8a1e1159692bb03
BLAKE2b-256 a2e285880cd506b486eddc3a2aeaf840c1a071841ac34f3af47c713bb84d2f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11fad16beb9d623ea423c9129bab0e392ea4c84363d61c125f679be3d029442f
MD5 a43153ecb7932c7c40020db76ff2184d
BLAKE2b-256 2e68c89cd5f4dcbde41fdab0d1f9fc9575ea571433ec7f8e964f991d727707c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 edb7f156a8f8a1999574f27bda67dd2bff2d5b180bb6aed996a1792cafbcc668
MD5 d1ac7dd8153c14b9edd07502256a8d02
BLAKE2b-256 4bddba6dea12fb3615c9eb3c9da93982c0ac2a2d803006d3dc2eaf0ee22309e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f34eefaf164bf43b29ccc809c168248eb95001837ed0e9e3279891f57ae2fab
MD5 279798b78e90de5ab89f3ec8a161f6ab
BLAKE2b-256 a345125a7d266ec582dd8b57eb060d03fb3662b99eb0e20c5293b79cfe60a7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8ecebeff966b412138b0cd105d7572f8d5e65e96355af699863890f8370707e6
MD5 225fc27ff50d833fef3432de9b5466a1
BLAKE2b-256 a640bd0c8036267bb090a3834db3f97c7a1ffb2693c891b54dc616ca244ff95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3195e13a700f6ff35894c4920fcce8f6c2b01cdbc01f76fe567753c495849e9b
MD5 2511ef2741a2a4cfbfe0e8c4028d603a
BLAKE2b-256 46396f4e48e6aa8d82ddd703bd98ba2e7b1a9183130aafbddb3e2bae42ed64eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03b6bef7eb50415aca87200a511d66a2fd69f1fcc75cfe1408e1201cbe28ddfb
MD5 e0db4d308050ba97654e8626b45e4515
BLAKE2b-256 29b233455ba28ecf31eb5d71c0cd0f62dccfa721a1048655949bf27a5ad077ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 19f724405c808a89db422ed1010caab80a16d3e5b49632356ae7912513b6d58e
MD5 58a38b1054893102035fd6d34a795034
BLAKE2b-256 a5521c7adb901db3066621fd04e2a9014d9a79791d3655a171e2896d5f44ef00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4cfb61fe642f30a22789055847004393bc65b5686988c64191e379ea4ccd069
MD5 f78bb09e256e4ba4e6a7c0693115b62b
BLAKE2b-256 bd14f10dce94ab3c63de2e713193bbe3f0d4d59a7a0e5bf61c42c72a73a421b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 778f6de73c3abd67d447a3442f89e7d43a8de1eb5093f416af14dddc1d5c9cb5
MD5 afff7e0b6955d9ac58037ad3324d6594
BLAKE2b-256 f87b9923a65e3d164fb26780d8b787b33662ec818c531490ffc98f18b9154a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f2a98b835c2088998a47da51b1b3661b587b2d4b3305d03fc9893888cc2aa54
MD5 3fee83e4151a157fe1eb27731c54f1de
BLAKE2b-256 d7abd7329145e60fe646dad63d4bce5a038af338ff2ccaa9c773e5530c88e416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 654949cfc0bc76a5292b6ac111113b2eafb0739e0496495368981ea2e80bf4ec
MD5 ae129b4628d15aa947b73a3379732732
BLAKE2b-256 a4079f737e3733c69a80077bc45949bbb263ef294615ab29ad527187fdbb29ca

See more details on using hashes here.

File details

Details for the file hiredis-2.1.0-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.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7222bd9243387d778245619d0ac62d35cf72ee746ec0efb7b9b230ae3e0c3a39
MD5 0901ee3c8c6f721a5e7ab332c7ae01c2
BLAKE2b-256 384f98d3b58b818addad012f5a0b284f955d09404a462162abe49cd7b24e221c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 648d4648bf6b3dcc418a974df143b2f96627ab8b50bda23a57759c273880ecfb
MD5 1665a45072d306aece16d79844ff9c51
BLAKE2b-256 accbe1d4a63dcfcc84579640499990325baca7dcc51a8225461c8bdf45d90c55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b223668844f26034759a6c24a72f0bb8e4fb64a43b27e2f3e8378639eaac1661
MD5 8df8073a7f819e22a2b283e3e48dde66
BLAKE2b-256 ffedde18e5667bf3117ff55e83a9a5219cb4f63389873e6b87d39944ba9999db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb60f79e8c1eb5971b10fd256764ea0c89c4ad2d55ac4379981f678f349411f2
MD5 6ef2ad6b76094183895e195a21346691
BLAKE2b-256 9fde7352ca7c077d44cb13772178dbde18b0be137f7d6650690cc38e97842ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 24a55169a7f0bd9458935ac644bf8191f127c8aa50cdd70c0b87928cc515cae5
MD5 32dd0ecb68acbd611c86b7badac8134f
BLAKE2b-256 483a37b16bcfb4551d4d76d987c0f5e53b3ece1d733adfc05f2c714d68181e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 40b55fb46fcc78b04190176c0ae28bfa3cc7f418fca9df06c037028af5942b6a
MD5 0d7878b1c5a109268c7f1df234396859
BLAKE2b-256 96d42f97dff8452b83e54a41c7d3ea0a04b6ca261f72d38939422b2f85625cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 21e0017b8f50abd13b4c4c4218c7dfd5a42623e3255b460dfa5f70b45c4e7c3e
MD5 88488407ebe81aca7d3bc08fcb5abfd4
BLAKE2b-256 db327ad5372e86c0b3a93d700554df8e77c5dc4c40d49ea817205c15f7c72257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5000942ffb6b6410ccbc87089c15fde5f48bd205664ee8b3067e6b2fb5689485
MD5 b09590d5fed4a84586b903bd92a05402
BLAKE2b-256 5a41e38b698878b0f4160c9d08c287425b36202c3216a039585ff9a220dfa9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ee8f6d0774cd6179c625688201e961a2d03da212230adaa2193cfb7a04f9169
MD5 4ca40c40a96960df4f42f25602b62d25
BLAKE2b-256 c7d100526c906176d4c427e3364fefb9701ddfb00b4498cff549b2f0b663f33e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f592d1522b5981890b34b0b814f4bfa4a68b23ee90f538aac321d17e8bf859c8
MD5 d00df9240835a7272c195b9c81321ea2
BLAKE2b-256 6b4adacf9e26ea314dd6e49fb9e5fdd847ca65cc184cc57c7800c2f8bbfd8e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98f0db3667fa8abbd37ac66385b460841029033bfc1ba8d7e5b3ff1e01d3346a
MD5 9ccba103cec36720463230ec5d655bae
BLAKE2b-256 47f2122e65e3f8b590617189d634561c6c15fd24728f330a4f1754f21dc7302d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08ec41519a533f5cd1f1f8bd1797929358117c8e4570b679b469f768b45b7dbf
MD5 7f39c6ace0f66891585ea9d1312126c8
BLAKE2b-256 751a7a2c3a229feee830e1a7353dce00003e69f8a150b8705ea3cae82a8703fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c19151e79b36e0d849899a21fc10539aa1903af94b31754bddab1bea876cd508
MD5 2b210c19267e481780ef53a9c490be6e
BLAKE2b-256 31528b22e6923b96ad37bc7fb24be73a4090be83bbf6a044bfe3d6c79e92cbc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dddd2be67de25a62b3bf871f091181c13da3b32186d4be6af49dadbf6fdc266d
MD5 babddd1a6fd8df32b48fcdb32370c829
BLAKE2b-256 06c350b8417b7cb5c0028a45ce490fb7cb41a812f250ee8f7cc1bd0ed0ba8d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c2dbaffd4a9e8df04731a012c8a67b7517abec7e53bb12c3cd749865c63428
MD5 b4bb1ba99059cdd20efa6c16a9f02307
BLAKE2b-256 810c6ae2d8d3e9b16501cc1c5cf88fd5dcdea66565c9cd8806a002bdfbc9c568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0d4b074ff5ebba00933da27a06f3752b8af2448a6aa9dc895d5279f43011530
MD5 df3d119d0ec073c186c8e44ad2e0dcd1
BLAKE2b-256 388b7f039935af1413197f4127c5f6b02d8eefa327771bbad8fecc469a23e114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp311-cp311-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e7bb5cab604fc45b45cee40e84e84d9e30eeb34c571a3784392ae658273bbd23
MD5 3fe7036c4474edeeb9836ef099ff54c3
BLAKE2b-256 55471460cba32f492e460a98c2554f13a43cc6ceea28fe856d79daa2be3275cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a8e796c94b7b8c63c99757d6ec2075069e4c362dfb0f130aaf874422bea3e7d
MD5 167345e166987affcc08b78f8fab6a83
BLAKE2b-256 16d47718721343929a7cc34cd47c45e3c2fd96b38603c565a9604be0a35e22f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bd9d99606008a8cfa6b9e950abaa35f5b87496f03e63b73197d02b0fe7ecb6d3
MD5 e5b44c9872d52effe50920afd942eb2d
BLAKE2b-256 286c614b4c6f9a1066a4edee4d5ce0d717e2c04b08847be0cf3bdf3a9486815c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b85276ed57e0aee8910b48383a38a299851935ba134460bad394988c750985fe
MD5 a03bbd993ebde77b0a5e5a4bdee68d43
BLAKE2b-256 e4061b6be8ed9ed898e80c1fcdeab8e00a3206b1c01b67903e8b3735d9520a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 32f98370efed38088d000df2eb2c8ed43d93d99bbf4a0a740e15eb4a887cc23f
MD5 91bfd8049f07e9561e52227433595ff1
BLAKE2b-256 514b66b58e3f371f9d422adb91ad1970de881f751185583139017c957a769927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e6097e1cef647c665f71cd0e58346389580db98365e804f7a9ad5d96e66b7150
MD5 41d9990f82006d17b09a72a592506354
BLAKE2b-256 4c7b2c50dba65d574079abc050fbe1046a8081cdb393dc2ca37c8ed7ccbdcccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 05aab35210bd7fbd7bd066efb2a42eb5c2878c2c137a9cff597204be2c07475b
MD5 cc13f41009c84b46f9b05eb87f2e0165
BLAKE2b-256 50fcf76d3f9d681fb6eb604da97d95e19addc678bd4c49ca001ba7624a43ce40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c53c36a630a6c6fd9dfe439f4266e564ca58995015a780c1d964567ebf328466
MD5 a42fa61a34e31b0fbd3739cd77cbd23b
BLAKE2b-256 9468b6faaaa7b46b3e0aecd9d91d9fbf62e6e268ad36f2c695b29559e5f4e541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef5ae8c1af82a8000742003cb16a6fa6c57919abb861ab214dcb27db8573ee64
MD5 b5218a6d0397475e3264cfa759732c60
BLAKE2b-256 a5a867bebdd55994d412840fc8f0515593ad433f849032d89b668e7fd6315224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 040f861e4e43daa9287f3a85979542f9c7ee8cfab695fa662f3b6186c6f7d5e8
MD5 60761bdc9355b6e511079a4968cd08aa
BLAKE2b-256 bfd17347b383d2a36a232a576127e231c189cb1977f20d0aebd1de64308976ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8181d73f25943fbdca904154e51b845317103cee08116cfae258f96927ce1e74
MD5 b9f4fd8724e248511e42b030a0e2cbfb
BLAKE2b-256 660ca10807fa4e1afcdd3464a9dd3feb66e7434a864b876ddd42eaf4a74ad15d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6544c7807cbb75bc6ae9ab85773b4413edbcd55342e9e3d7d3f159f677f7428
MD5 78377df6475f8d1747d394012c5a2393
BLAKE2b-256 142c62af961b1bab6954c083d913f6ae1752e701ca68af766c7ba1116f58cb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b9aa1b0ec46dec5b05dcec22e50bbd4af33da121fca83bd2601dc60c79183f9
MD5 940593fb0a156d9a3225047ec743f88b
BLAKE2b-256 4cd7ad04c7d6f6ec47dbcb1e29a584a81b3befada3678af79d8cdaf0d60a437b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92077511d3a62109d5d11bf584e41264a993ae3c77c72de63c1f741b7809bacb
MD5 749ea77145c6b66e74a4014a5b5526bd
BLAKE2b-256 17c2bc0ee2a1a80099d90a533c5ab4172647062b89a38b1e7e03133fc742635d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd82370c2f9f804ec617b95d25edb0fd04882251afb2ecdf08b9ced0c3aa4bcc
MD5 18962cbf59e63246f4b03d372345a6cf
BLAKE2b-256 52db32b9bafe97cb637a38dacced5d222e2f8295599ae21170a426950cb68f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp310-cp310-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7b339a7542a3f6a10b3bbc157e4abc9bae9628e2df7faf5f8a32f730014719ae
MD5 f07aa09d9b3841ce1f159370ab503950
BLAKE2b-256 eabd72e3507480a77ed6f34505c3d67ddf3903108beb52ff22b3824a9efda06f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb818b6e0981e16dfdfc9e507c9842f8d210e6ecaf3edb8ac3039dbd24768839
MD5 0bc82bce746b28c522335d3638f74c35
BLAKE2b-256 30c81f515aecd077271231296e0aa4356400b25778ad32d057b41e36710aeaa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9259f637d77544ffeb97acb0a87fdd192a8aced7a2fbd7439160dbee8341d446
MD5 29e1ccc8a40fdd049f8f4fe1dd31cab3
BLAKE2b-256 ac09853317f9a0d78dda5ba23c05e1f91d12649b2a8170647fe917d9b77c6839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5879d13025b04903ddf71921812db27fe1156a0952ad253014354d72463aaa9
MD5 2bfd1721c8576102b0c4141722c17c6c
BLAKE2b-256 e0ea184013d76911efbb19140775f6eb3dfb2f4cb0389eacf0309890e004af27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c5263c676dc4d55202e7ca0429b949fc6ba7c0dd3a3a2b80538593ab27d82836
MD5 95894f09020358164ef85d7866093692
BLAKE2b-256 07fcec8a0515630ab7272b5f36b3c80d6386efbaa766550cb0566e4c92aeff78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 58a7ceb71f967fcc1878fb64666a12fbc5f243ab00d0653d3752a811941d8261
MD5 bb22cbae745ce7828cd931bea63977c1
BLAKE2b-256 f616494da5d12b22d793fc74e730ac026a7fb50184baf7b14ba40daed52d1d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c1b636b05777536a83b4cced157cbdc2d0012d494a9ec2f7b7e07c54296cd773
MD5 fe2bc342d212ccc2d9e4b30d463c2248
BLAKE2b-256 2408b4d9e9e91f9115c8ba0d774af043aac58295cb69d7d7f561a5b5abc19d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39a1bb45bcd698baf70ad4e9a94af164525bf053caea7df3777172d20d69538a
MD5 da272e5b0f9f4622efc77b6fd18f1a0f
BLAKE2b-256 9b4041c1bbbb3d27b82ed4c1db5181974660c30be181be8121cb447f2825b21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43d3168da0a81fa0a9e4bc6e14316beac8e5f1b439ca5cc5af7f9a558cfba741
MD5 17edfa60db10999d44b82ab4c4a49e78
BLAKE2b-256 52be98ec3744e1fe0517771c81285a52352a455100583c8442b6aefbebee2df1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e2039cdaa2e6656eae4a2e2537ed77e27f29b7487b97ce7ae6a3cb88d01b968
MD5 15398c2659beee00728a56d12a926058
BLAKE2b-256 11b1fffbf500ab4342a6c6a838694b3540d199edb4237919549d8bad8df8b93c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9f8b8daef346ffc0268d7086c213ab24c2a3fcbd4249eacfbb3635602c79d20
MD5 528806000fdbaf8ca0ab0e352c080498
BLAKE2b-256 7cc0937b471bb8ba893ad0a3c893a0220a7347287569b0a52f0266b156b9e74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 964c4f23ff450fb8d73edf06fc7475a4e81a3f9b03a9a04a907ec81c84052fcf
MD5 d67406fac3b0d2212abb7124f8603126
BLAKE2b-256 cd5c8e28fd8f2682b1afaee396e2b337179d89788fb28123bf073603a07f61df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0021ba034b74c5006f62e4cfdd79d04c7c720731eda256ce29d769ac6483adc3
MD5 fe9f8bc420ac17fb739ec801b6e0216b
BLAKE2b-256 8a305ea8d9a3c2b2e8c54bf5ecd9b1639b55018413d0e9f1416917fe4b61dea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab622bcddcf334b4b1fc4b22e163e93160e3afdd7feaedd77ac6f258e0c77b68
MD5 a6c42c0ae30db4c9e306a461a66ded72
BLAKE2b-256 704f052e53604234dcc44cab362aa2c5ff4aa3ead5b97255a67cd027e33d57a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1d5a99de0fd02438f251e50ec64936d22d542c8e5d80bdec236f9713eeef334
MD5 2d818d61302551ef619570a0a2514e18
BLAKE2b-256 8fc86983a33118223bf3a8699c8d34ac0e62f929a7bedb1db1def5d081a0dd9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp39-cp39-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 879668ffab582bdffd9f10f6c8797aac055db183f266e3aa3a6438ff0768bc29
MD5 7b7afde941bb58599539ff695007d65d
BLAKE2b-256 e66e3bd6f9482963038acd83a324c7546470a0a97b60650978a466da29843719

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1f94684b13fbbee1239303018d5ea900d786e486cdb130cde3144d53f4e262e4
MD5 9fca28e98b1e6d83b9ccda1aed52fd3d
BLAKE2b-256 298a921a8fc581d706cc6f90f4c6c1e7bb77a6bf9a4958532cf04f8b9c0f7826

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8bce4c687136bf13df76072072b9baadbd52f7d1b143fbbda96387f50e8ebaeb
MD5 9ebf716f44e67bb1db0109bd89ad069a
BLAKE2b-256 c08e23fa0fdf75970b5535db446a39272796f7a05f5dc11ddd9fac1aa5363dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a51cb4ea466276a845a940931357b4a876f903eabde514ba95e45050e1c2150
MD5 6fcda3d1d104cbb35b1d6e536bd55fcd
BLAKE2b-256 1030da655becbe9f9417b61822a182b3d78dfd30befb3f8de8bafd23f051288d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 dfbe939fdddbc7b90cab4124f3ddd6391099fb964f6dab3386aa8cf56f37b5ba
MD5 fb6c55c58a6fb6fa07a18d6da86d6f5d
BLAKE2b-256 7d256a00da51b6e081e83fcd82b62c2a3367c5c2ff698b45271caff3a6bc1ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a1c9b7d6d7bf35e1e2217b2847710154b11d25bf86b77bb7e190161f8b89917e
MD5 5f029fadf39eb2805c2df6c492a20366
BLAKE2b-256 731b7409058a8668d75c2a406187416b69cd8802e32ad5284679da582ae56ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 53040c3b3488b52f4609775453fc759262f2885b733150ee2e1d88257fdafed8
MD5 fb02f7a8fea169498f886dd3843a7706
BLAKE2b-256 4bf18a97f080ce4b29bb50980926f1aafc596b87698e3a9b07b4561a5ee300c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb858218de60a930a164a991fff001c70b0c3d923d3ae40fef2acf3321126b00
MD5 b1798b7ddf35de5bbeeb238f38d41861
BLAKE2b-256 5030430ebf1de53831a52249b00a499acbc6c8ed003d536c9da6e915ec39bfea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5fe1bb4b1525751f3050337097b3b2bfe445836e59a5a0984928dd0797f9abf
MD5 f9ef58df11d5bfb3700ffb614ab4a6cc
BLAKE2b-256 37886a7142683974c2f46cec6bfc80fa40e3bee046f078378013aeb4c08e4475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2d96be6917ea8f753691a4674f682dd5e145b70edab28c05aa5552ae873e843
MD5 14fc3c126aee054df8fa7b50f3952f07
BLAKE2b-256 4acb394dfbda65cfd4ceaf3daa6225c935a6dbb7f6f49a8d2aac42026c821f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 718589c48e97820bdc2a99e2621b5039884cc23199213756054d10cd309ad56c
MD5 b5258f76bddd199d85a7d7f13fec5303
BLAKE2b-256 4de5defb5db4e1b4dac8906f7c7e546dfd882a1804c148d8b0aff260b67a8120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 835c4cbf8b38c83240b3eb9bd575cd1bfefe5ea5c46cc5ac2bf2d1f47d1fd696
MD5 d1411d4dc67114402899684e24b46b6d
BLAKE2b-256 47280dd8f4a2dce110102b35438b04ae828cdb179cd256a2cf48309a86b02296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91dc73310b92b4aeccffdcd4a762955fe71380f5eaa4e242ee95019e41519101
MD5 aec8789aaa62dfafb484baaa55c7d502
BLAKE2b-256 053b88df421e2375fcc454acfa27133930050fb76442f5ee9f5b14e9827a8a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d7d7078f3b841ad86e35459e9f1a49db6d793b796a25fe866333166196d9fec
MD5 0ba9d2c3d120498187db10fbf364f1d7
BLAKE2b-256 4f2727098f4ad2c9300753a8e56d7c68c4ebcfbcacf524b76e12155ef23c30a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6df0115f8b0766cd3d12416e2e2e914efed5b1a1a27605c9f37bc92de086877a
MD5 16d6f541b857c5087807e6fb435db902
BLAKE2b-256 91bc8e5e950f9b4b3feaaaccf8aa0c4c1a1be05f8de08024ccec8a5222c9d84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp38-cp38-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 41afba30304adcbe1c93fc8272a7169b7fc4e4d3d470ad8babd391678a519d76
MD5 538c46e658ae5d4e15d3f8b3bdf1fa7f
BLAKE2b-256 27ed145ac902a5898d13bac451ef4cc836632cad54975c715c58855b9e96c331

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6766376dc43ef186113422ecacec0ece0d4b12c0e5f4b556669e639b20ccabb1
MD5 920c19d29e0a06c60930806941d857b2
BLAKE2b-256 cd17a116de6fbc6cfe8c569da7385b56400f61910475d9cc1b5e2befc3313037

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.1.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 06cb776d3cd3cbec86010f1bab6895ee16af8036aae8c3594a5e96c24f0f83a5
MD5 4e06229eeb5d316790f8cfe9fdc37bd0
BLAKE2b-256 6459e9b926f50e801ed42571727997c7590c002c7927a5dfd308fe62d76950b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 288d5d0566d3cbcd800e46c7a547428d321842898b8c7de037a7e78b5644e88a
MD5 0cb1220d1b61b943acf5a92a9ccbf003
BLAKE2b-256 ed0930fbe8b4dd81d35e3e5ccd40ca3f33c953054e6b0828e1618f367ccfbb2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 969ffe37a8980a6e5404993ccfe605a40fa6732fa6d7b26a1a718c9121197002
MD5 446577e022135059b28cfe791d030750
BLAKE2b-256 11735d0c5a782d2a41d4c36b86e112931b7e11e26897e4685eb641565bf0766c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d248acc7d7713c1b3d48ed8ea67d6ba43b104aa67d63078846a3590adbab6b73
MD5 a1b267585e64980f3a6a6230965ea558
BLAKE2b-256 0123ef5b22fe3144df4dff6e67f6c3997fef06b95990a9f83858a7444cefd778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d601c27b9599fe52cade3096351f92f665e527d29af8d3e29353a76bfcf5615
MD5 9fc54459cb8002fad1796b782c6e9261
BLAKE2b-256 34ab8f7c57bcd246cb1dd0888b3c9511f3abc226ba75c1d6e0ced8c8b28afe68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 262148f9b616c0cdd0f2c6bda45cd0f1ce6ce2d1974efd296b85b44e5c7567c2
MD5 fe2e17fa117dd64c91e721b40c6ad2da
BLAKE2b-256 c5ed5a6db90382d42a1fab40fbfd9ea557c5704f3a5d8c10f8b4c3f90202f1cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c972385a0647120d4b0fe0e9567257cad7b2577b9f1315815713c571af0e778d
MD5 7c837af0e6e94a9cc39955658af8e307
BLAKE2b-256 379f266b9b979929f1abef959bc936d40994a2b8974dc5d813899f8c6919998c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 023b3b3ac410d6cfdb45ee943b8c528c90379f31419a1fd229888aa2b965732d
MD5 ccf853fe2e345e78262e5c5a05ed442d
BLAKE2b-256 cb987355677bea59c929df99177aa25c6951a87d83640ad97d1c0b09ffde58a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66ffcbfc4db52dd87cdfd53bda45881ab3ab07c80ec43244fd8d70ee69d42c01
MD5 4fecc71b46961a63dee900d35cc6820c
BLAKE2b-256 9bc7514ba49e8022dd3b39e4956ecbf783d332a4dc03915261bb2df99d960298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 531d1d3955244831b69272b993e16f93489ce2dadfdf800ac856dc2d9a43d353
MD5 cd27a597ef9978690b3154f5b165a2cb
BLAKE2b-256 653ec47fa51286906f1a8f032c0490dd0be68d1126b2e073b35fa2a6e591011b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32893825426e73d57b3290b68110dd76229945e6c79b08a37795f536501935c4
MD5 a87f7fc2c486aebb12808c16e4137e81
BLAKE2b-256 85fe07097c2cea2524ae176bea46c74f2be58812f9e499c2ba955f7beb349431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.1.0-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f7e7d91d6533fcb1939d467cf8bfb98640edf715897959f31ae83f5ad29aed3
MD5 d3eddab4aaa834b1690beb95fd6dba39
BLAKE2b-256 bb34c18129470859ef2258032f9bd518cf0390bdccf134292e385a20c70f43a2

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