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

Uploaded Source

Built Distributions

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

hiredis-2.2.1-pp39-pypy39_pp73-win_amd64.whl (21.1 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.3 kB view details)

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

hiredis-2.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (39.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.2.1-pp38-pypy38_pp73-win_amd64.whl (21.1 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.4 kB view details)

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

hiredis-2.2.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.2.1-pp37-pypy37_pp73-win_amd64.whl (21.1 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (48.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (55.9 kB view details)

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

hiredis-2.2.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (39.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.2.1-cp311-cp311-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.11Windows x86-64

hiredis-2.2.1-cp311-cp311-win32.whl (19.4 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (160.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

hiredis-2.2.1-cp311-cp311-musllinux_1_1_s390x.whl (161.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

hiredis-2.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl (168.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

hiredis-2.2.1-cp311-cp311-musllinux_1_1_i686.whl (157.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

hiredis-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl (160.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

hiredis-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (155.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (157.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (164.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (155.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (153.7 kB view details)

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

hiredis-2.2.1-cp311-cp311-macosx_11_0_arm64.whl (39.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl (42.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hiredis-2.2.1-cp311-cp311-macosx_10_12_universal2.whl (76.6 kB view details)

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

hiredis-2.2.1-cp310-cp310-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.10Windows x86-64

hiredis-2.2.1-cp310-cp310-win32.whl (19.4 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (157.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

hiredis-2.2.1-cp310-cp310-musllinux_1_1_s390x.whl (158.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

hiredis-2.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl (165.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

hiredis-2.2.1-cp310-cp310-musllinux_1_1_i686.whl (155.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

hiredis-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl (158.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hiredis-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (155.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (157.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (164.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (155.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (153.7 kB view details)

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

hiredis-2.2.1-cp310-cp310-macosx_11_0_arm64.whl (39.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-2.2.1-cp310-cp310-macosx_10_12_x86_64.whl (42.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

hiredis-2.2.1-cp310-cp310-macosx_10_12_universal2.whl (76.6 kB view details)

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

hiredis-2.2.1-cp39-cp39-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-2.2.1-cp39-cp39-win32.whl (19.4 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (156.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

hiredis-2.2.1-cp39-cp39-musllinux_1_1_s390x.whl (157.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

hiredis-2.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl (164.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

hiredis-2.2.1-cp39-cp39-musllinux_1_1_i686.whl (154.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

hiredis-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl (157.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hiredis-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (156.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (163.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (154.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (153.2 kB view details)

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

hiredis-2.2.1-cp39-cp39-macosx_11_0_arm64.whl (39.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-2.2.1-cp39-cp39-macosx_10_12_x86_64.whl (42.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

hiredis-2.2.1-cp39-cp39-macosx_10_12_universal2.whl (76.6 kB view details)

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

hiredis-2.2.1-cp38-cp38-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-2.2.1-cp38-cp38-win32.whl (19.4 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (157.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

hiredis-2.2.1-cp38-cp38-musllinux_1_1_s390x.whl (158.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

hiredis-2.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl (165.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

hiredis-2.2.1-cp38-cp38-musllinux_1_1_i686.whl (154.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

hiredis-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl (157.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hiredis-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (156.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (157.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (164.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (156.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (154.1 kB view details)

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

hiredis-2.2.1-cp38-cp38-macosx_11_0_arm64.whl (39.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-2.2.1-cp38-cp38-macosx_10_12_x86_64.whl (42.5 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

hiredis-2.2.1-cp38-cp38-macosx_10_12_universal2.whl (76.6 kB view details)

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

hiredis-2.2.1-cp37-cp37m-win_amd64.whl (21.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-2.2.1-cp37-cp37m-win32.whl (19.4 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

hiredis-2.2.1-cp37-cp37m-musllinux_1_1_s390x.whl (157.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

hiredis-2.2.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (163.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

hiredis-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl (153.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

hiredis-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl (156.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hiredis-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (154.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

hiredis-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (155.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

hiredis-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (162.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

hiredis-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (154.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hiredis-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (152.2 kB view details)

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

hiredis-2.2.1-cp37-cp37m-macosx_10_12_x86_64.whl (42.5 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.1.tar.gz
Algorithm Hash digest
SHA256 d9fbef7f9070055a7cc012ac965e3dbabbf2400b395649ea8d6016dc82a7d13a
MD5 0be5e5d8e54a81ef9fe3ae1170766954
BLAKE2b-256 9e5be6c54e527085c58ee978f80243cc28b73df3e6ca2488fa5350e7465c88cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ae6b356ed166a0ec663a46b547c988815d2b0e5f2d0af31ef34a16cf3ce705d0
MD5 3ce4568aba7c6dc8a48631289fe46c5c
BLAKE2b-256 7f49a9988c5dd0ee72a4d0264d20394f9d1ddb16648e9caaf630c3e68045e720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82ad46d1140c5779cd9dfdafc35f47dd09dadff7654d8001c50bb283da82e7c9
MD5 2b7881cd9a9449804097cb18fa9c8aaa
BLAKE2b-256 2ca598d91add9ba41f0f74c2d1b7e935b3228934402e5332f3451120af0f5a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96b079c53b6acd355edb6fe615270613f3f7ddc4159d69837ce15ec518925c40
MD5 d0e1e6251a58ca7cc15a34f516dc6140
BLAKE2b-256 87b948fa82f1f6fd1a988047a75256e4e766fbeaae75a196eab4e7280936fa37

See more details on using hashes here.

File details

Details for the file hiredis-2.2.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.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17e9f363db56a8edb4eff936354cfa273197465bcd970922f3d292032eca87b0
MD5 2d37a11f47559e4654ff2ad884680d26
BLAKE2b-256 5855686a0da8b79c6df527aaa20e4d1f754d00340045c9b7b19cfb280f576cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8fe289556264cb1a2efbcd3d6b3c55e059394ad01b6afa88151264137f85c352
MD5 9c81f29ddcd5bf0b814c0e599e1428a1
BLAKE2b-256 1b6e46b280f673ee4ebf0d54575443962595a984431e482b1a00365ceecddebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2bb682785a37145b209f44f5d5290b0f9f4b56205542fc592d0f1b3d5ffdfcf0
MD5 32a61baa9e09527b29f0c61d607b6fc1
BLAKE2b-256 bd0623a2b6d791f5fd002618a7619d0a5af7bdd409684720d9fbd6563839cea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0ccf6fc116795d76bca72aa301a33874c507f9e77402e857d298c73419b5ea3
MD5 2dab5b2504a00adc5f00df9b041c2f10
BLAKE2b-256 02c84822858d844bfceb29015a861334b74b4e3c7be750e788295f302d93a8fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcad9c9239845b29f149a895e7e99b8307889cecbfc37b69924c2dad1f4ae4e8
MD5 0d71be6d0aabeb7c8bac8a9e551c545e
BLAKE2b-256 6868af3d3ed2b31316e44093ed272d857e35b98815fbfb369f22d5046f32f6f0

See more details on using hashes here.

File details

Details for the file hiredis-2.2.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.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63f941e77c024be2a1451089e2fdbd5ff450ff0965f49948bbeb383aef1799ea
MD5 c0fd1d7495270756386549d9663c6f77
BLAKE2b-256 991a4d1cea29f5a623431352f71538e5417aa0ee17fe7087398c3ff93d6a363e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df6325aade17b1f86c8b87f6a1d9549a4184fda00e27e2fca0e5d2a987130365
MD5 7481b6cbc5e8e8da7d8a4d3a83f4d61d
BLAKE2b-256 3c3b17dfc51e49cb0bf8df0352b9af3b7cd0ad5fead48a86fcf6b5dd93c3319a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a16d81115128e6a9fc6904de051475be195f6c460c9515583dccfd407b16ff78
MD5 ef08a63241f1e4ad2515f596c08b7b85
BLAKE2b-256 cd9d3c178d1574128341c2882cb47b23ac3d66d923af7a45168a6a69cdf3cf77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42504e4058246536a9f477f450ab21275126fc5f094be5d5e5290c6de9d855f9
MD5 c963b315041667045925a74026a2dd37
BLAKE2b-256 db99535a6e64f4c615a643975abd84ede9b3f2766ffd6aa36da2ecb8eb6a0a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04c972593f26f4769e2be7058b7928179337593bcfc6a8b6bda87eea807b7cbf
MD5 2fecc46449de0f537a3a07feb237326f
BLAKE2b-256 ce1afa3f4a18bd720561b2b9a360955884dc87e062ed0811bad832a9343a073a

See more details on using hashes here.

File details

Details for the file hiredis-2.2.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.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 220b6ac9d3fce60d14ccc34f9790e20a50dc56b6fb747fc357600963c0cf6aca
MD5 840eb98d1f43ff928cc89ba0ed5426e7
BLAKE2b-256 8fbeda11e2f354b9c48c4be10b5f345de30a45366bc394c95ca8e3ee3ff73742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c604919bba041e4c4708ecb0fe6c7c8a92a7f1e886b0ae8d2c13c3e4abfc5eda
MD5 7443f216fe2d383b7ea9df717ca2fc59
BLAKE2b-256 22552db5d2512048728c7331399a077d46d5d4039b74e68ac2c44a40aa8c310a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 21.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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1776db8af168b22588ec10c3df674897b20cc6d25f093cd2724b8b26d7dac057
MD5 d3f07c1384c86f64c513a06647ff2753
BLAKE2b-256 b1dcf322d0c6e1a6ce8d338f5eb6e17cb5c74004ff84f3a58bc72b0eea3d6b94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 19.4 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.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 497a8837984ddfbf6f5a4c034c0107f2c5aaaebeebf34e2c6ab591acffce5f12
MD5 cceee953a475bb85c45f0aeed943082d
BLAKE2b-256 461ad7bc15058e9006972bcb1078e38265e19797a1c2db691fda4717f0c8b19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 724aed63871bc386d6f28b5f4d15490d84934709f093e021c4abb785e72db5db
MD5 280c8df633f15cf50b69117f5d112e27
BLAKE2b-256 3fdfeff0435fc4a4383fec88c8536caef34dfa42bf0cb99f609126d9c3a17606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 18135ecf28fc6577e71c0f8d8eb2f31e4783020a7d455571e7e5d2793374ce20
MD5 3c147aea293c0117ebaac8bbf431501b
BLAKE2b-256 f9745a64b60adb2cf6c0dbce5e9137bf14209e2e1c25425589aa7a08b1c3c6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b2b847ea3f9af99e02c4c58b7cc6714e105c8d73705e5ff1132e9a249391f688
MD5 5d4ec035deefd1072797bd99ba3e93d3
BLAKE2b-256 81a8ecfb7f6679d73a66d7d33fab939816d1306e3a5ec656ef53c58fd1bd7860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d77dbc13d55c1d45d6a203da910002fffd13fa310af5e9c5994959587a192789
MD5 89695d8f18bfb2588de9ee9bd58a7c9d
BLAKE2b-256 36c2fe18497492e04fa2c383fbff9438b20dc0261fab5fdcd96f20ce314c8b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d4f6bbe599d255a504ef789c19e23118c654d256343c1ecdf7042fb4b4d0f7fa
MD5 5ea4384faaf38b74f92f125daa654f75
BLAKE2b-256 a78c8e9c860e4fdcc79b8136b3b24ce5bdb3c6b92fffc2d3f3541ddd8b420525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cd590dd7858d0107c37b438aa27bbcaa0ba77c5b8eda6ebab7acff0aa89f7d7
MD5 97c10901013f7e7845d2eafcb8781d83
BLAKE2b-256 44d866f0f649d19fc248c5545a21f6befccdb86fb4e3b8d4ccd6d96e4f17af5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fec7465caac7b0a36551abb37066221cabf59f776d78fdd58ff17669942b4b41
MD5 900f673333c8963d91bfea487a7cd52c
BLAKE2b-256 062ef002154023cf539107deecb443b969eec509e83704c13e4bd45f51038d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a386f00800b1b043b091b93850e02814a8b398952438a9d4895bd70f5c80a821
MD5 7e3100a0f3fbcf0f0c117904ed47ce63
BLAKE2b-256 1e8cebe8f64732849f02ac792be7e81b0bc0436a944699202b065fa3f2b147cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6afbddc82bbb2c4c405d9a49a056ffe6541f8ad3160df49a80573b399f94ba3a
MD5 fb27f50f68c23df5ae3df54963b58e84
BLAKE2b-256 25f9821238627facbdda74256b1bf69a8077355290aed1e4192d307b32343387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1523ec56d711bee863aaaf4325cef4430da3143ec388e60465f47e28818016cd
MD5 145a8b17b277e9182e4ad8d074bd090b
BLAKE2b-256 08e71f89c520e440532e77b3b7df70a06343760b1dfee9e15a15153d7c9c9f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb59a7535e0b8373f694ce87576c573f533438c5fbee450193333a22118f4a98
MD5 f7cc0975d56d4fcfb104c056cfd7260a
BLAKE2b-256 ba286c6efde85282b5a4ee058c41482e361f1cfebb024c1d820e766e8fca380c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ba9f425739a55e1409fda5dafad7fdda91c6dcd2b111ba93bb7b53d90737506
MD5 c178dd463a2a3c0523d8f92e9705d02d
BLAKE2b-256 3a01b44f430f4eaf42bbe1ec4e175818a5144499644f604de5c9877f73dee684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp311-cp311-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 103bde304d558061c4ba1d7ff94351e761da753c28883fd68964f25080152dac
MD5 db02ecc0036808b8e4bbcaaf63edbbae
BLAKE2b-256 1909cfa5fcd207c07a9994c089ec77449ff38fca02788a97315e3e7d20edf133

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 21.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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea011b3bfa37f2746737860c1e5ba198b63c9b4764e40b042aac7bd2c258938f
MD5 b49c13102cf37ef838b165f84097b3a2
BLAKE2b-256 34567824ca52397dbff65d36930d7c9e8871b09e5a0ee3c85868b24f0d624a0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 19.4 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.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 14f67987e1d55b197e46729d1497019228ad8c94427bb63500e6f217aa586ca5
MD5 386ffb1072b9c031876d73d910e4ca6f
BLAKE2b-256 e51847731437074e4de87bad0f2e521073f079253b6d6e0386743ba06d4275f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6fbb1a56d455602bd6c276d5c316ae245111b2dc8158355112f2d905e7471c85
MD5 18ce98184a5c528931710b5ecb64a843
BLAKE2b-256 0b2ced14ca2c5cfe320640753fe5fe847cdff675de22a63a20d358b14a90cf05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 341952a311654c39433c1e0d8d31c2a0c5864b2675ed159ed264ecaa5cfb225b
MD5 4fba4c4853564bc4b3cebf683e4e7115
BLAKE2b-256 de56d594d5955ba64b69b1f693d6ee560e9b8aebf91fd0f3d095aa65ecfcab95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 796b616478a5c1cac83e9e10fcd803e746e5a02461bfa7767aebae8b304e2124
MD5 26edab6eca8d8c61e4e7ffbda5662617
BLAKE2b-256 88a5d08a2f9724f4df938056ff530ed8051cea575776f980b40bb267f7a6698d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 943631a49d7746cd413acaf0b712d030a15f02671af94c54759ba3144351f97a
MD5 fb486b89e65888919bf2c5b833f90d31
BLAKE2b-256 0d13e84753121d33c13f26a273e69267a8277bf145fcc822202c9f299c1aca92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96745c4cdca261a50bd70c01f14c6c352a48c4d6a78e2d422040fba7919eadef
MD5 77770dafa929d154ae15d88847f8a4f4
BLAKE2b-256 ed9b5b2e954445fad8d4f6548e4faf26980dd5f2b8c1b745acd473e163efe7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 812e27a9b20db967f942306267bcd8b1369d7c171831b6f45d22d75576cd01cd
MD5 7b2276164c5c87f0819b90df8603ee85
BLAKE2b-256 4b85424971d74ee3f06c7a28fc55cc3f058d3b303f93031f46b63ff27dffd3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 706995fb1173fab7f12110fbad00bb95dd0453336f7f0b341b4ca7b1b9ff0bc7
MD5 49f9830dc627cb81b0f14e90fdcb7225
BLAKE2b-256 41588a9b63862f5f1ccae45740eccda40763273c58010b644acf4d3428c3b79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58e51d83b42fdcc29780897641b1dcb30c0e4d3c4f6d9d71d79b2cfec99b8eb7
MD5 d1217624a6be96eabaceda6a7b7a3e7a
BLAKE2b-256 00e1d1c4976e18b41d558603f8eca8e74075b4211e8ab48c358dd4c8c631e8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 209b94fa473b39e174b665186cad73206ca849cf6e822900b761e83080f67b06
MD5 23736adb94bfb6e0fe791c974065f1c8
BLAKE2b-256 3883ef3801aa404c04575827e39834d3105194c724bc4ce8e13e4124f4f403dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69c32d54ac1f6708145c77d79af12f7448ca1025a0bf912700ad1f0be511026a
MD5 8f552cb6d45fbc7cdda842bdbda50798
BLAKE2b-256 7f6d784b201bc31406c2fe223dd60609268409941e2075eff1edca716f65abdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a57a4a33a78e94618d026fc68e853d3f71fa4a1d4da7a6e828e927819b001f2d
MD5 66a78c63e73a41b0513c2b3e633293ef
BLAKE2b-256 5cdcfedd2e9617a72aa37b7cbafeebe058d8758c34660e23b8b0964cdd0e15b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70db8f514ebcb6f884497c4eee21d0350bbc4102e63502411f8e100cf3b7921e
MD5 a978e6b8913c8abcd7a45455dbe7693e
BLAKE2b-256 745a3f97095e5be73946ac3d183ef6b4971ae225cd37a4ad1738fe3bcd935902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp310-cp310-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 998ab35070dc81806a23be5de837466a51b25e739fb1a0d5313474d5bb29c829
MD5 9ac2898fc7882fb12bb3e57586c3635c
BLAKE2b-256 fd6827e4933bcd6465400636d8b8749109d389ac9f6832f226715046ce9b5413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 21.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.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c702dd28d52656bb86f7a2a76ea9341ac434810871b51fcd6cd28c6d7490fbdf
MD5 6cc5f89bbb4dbdc4a535b719a50f861d
BLAKE2b-256 8ce5fd002c82d9a90b94afb82e1b0f806781c1c99b0d57ca2f35d6232bae797e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 19.4 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.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 19666eb154b7155d043bf941e50d1640125f92d3294e2746df87639cc44a10e6
MD5 5ead0d6fbacda806b947762cc2442a78
BLAKE2b-256 7bcae26d5946e72f8b2b393e9735593f7a77739bedde2fad37d04ad92cdf6ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7a5dac3ae05bc64b233f950edf37dce9c904aedbc7e18cfc2adfb98edb85da46
MD5 ba915fab6e5611df509dfee383d530cd
BLAKE2b-256 7688f3fa1db260807e91abbc1c3d018011fca4f2276e5a8ad3ce3426677b8b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b90dd0adb1d659f8c94b32556198af1e61e38edd27fc7434d4b3b68ad4e51d37
MD5 baf8c325c368be246da1d1aad2a06a43
BLAKE2b-256 17481ff4ed555fdc1666ab8c87cc1582947d99da7b15f7c7d8825b4fc197b0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0474ab858f5dd15be6b467d89ec14b4c287f53b55ca5455369c3a1a787ef3a24
MD5 6d650fead3276176690cfaf5ba864de5
BLAKE2b-256 cad6f257d610ef0372db7b753a6011e3cebfb666670adfe4460aff2730401526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 954abb363ed1d18dfb7510dbd89402cb7c21106307e04e2ee7bccf35a134f4dd
MD5 6e138919e8a345feb13d6f618addd711
BLAKE2b-256 da703b2b148a59e9040e8717548bd18d8e414029edc458af75f7c9a517635310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0f2607e08dcb1c5d1e925c451facbfc357927acaa336a004552c32a6dd68e050
MD5 d3999df51a43db0c396b1c8b48c35d1f
BLAKE2b-256 23b5878a27b2b3068e76d76ef81beeac43342863cfcded45a4fca7cfbf12fc7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e199868fe78c2d175bbb7b88f5daf2eae4a643a62f03f8d6736f9832f04f88b
MD5 ff68c92bdab0f18c6565c683e36aaee0
BLAKE2b-256 f8d502f6420ac38cbcef3835b2591430a544634d3b79341ed7e3dbe293d1571a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8849bc74473778c10377f82cf9a534e240734e2f9a92c181ef6d51b4e3d3eb2
MD5 a4aca1e9598ba6ab03ae0908bc9b868b
BLAKE2b-256 a91a3a7443ed25a0cdf2df09d4b5edc96fa8d28498727be1981bca81519a93c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a99c0d50d1a31be285c83301eff4b911dca16aac1c3fe1875c7d6f517a1e9fc4
MD5 516c802a15f1cdcf0c6579a5e4231f16
BLAKE2b-256 a2cb661279477ec4e58ae832c6c6e4d5755f390cd45a7260b1e2ebb9ec361728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3afc76a012b907895e679d1e6bcc6394845d0cc91b75264711f8caf53d7b0f37
MD5 8e84cdfc3450885fd4cd9d703f6df935
BLAKE2b-256 66ebf748abb09957f4c43af2a7cb0ed7c51992211aae6106020519dbc55ddfa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0e98106a28fabb672bb014f6c4506cc67491e4cf9ac56d189cbb1e81a9a3e68
MD5 51171b176693a66c29d2fbd18217d2be
BLAKE2b-256 929a29f1491d9a74c57ce9224f67594da340a2042ca1533a3e37d247ad097b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e57dfcd72f036cce9eab77bc533a932444459f7e54d96a555d25acf2501048be
MD5 bb9e0f12445991ba28aae9ce97e55358
BLAKE2b-256 b0057da4ccd16028b6d4abc4ae3b57d6e2987c0245af94898accaa9f7d7f204f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bad6e9a0e31678ee15ac3ef72e77c08177c86df05c37d2423ff3cded95131e51
MD5 4504bc509ccb0ea6aa1276d56892971e
BLAKE2b-256 668af8782472dfc10cf0850890eb8d0fefff50fda0afe66725fb32b0519365e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp39-cp39-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e5945ef29a76ab792973bef1ffa2970d81dd22edb94dfa5d6cba48beb9f51962
MD5 4d377db66bb3a7ceafa0f0793baab136
BLAKE2b-256 3606f19d5725822df5166c9a1bf6d261e1a3f75d029c700498c8f78606f42428

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 21.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.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6f5f469ba5ae613e4c652cdedfc723aa802329fcc2d65df1e9ab0ac0de34ad9e
MD5 ec7fb068e93ec0bc38a2f1bfef221505
BLAKE2b-256 3c51a3477875dc0f90a1295ef7a1e0afef575ef38d8f6e1f05e7bbf6c45a2af6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 19.4 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.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bde0178e7e6c49e408b8d3a8c0ec8e69a23e8dc2ae29f87af2d74b21025385dc
MD5 82cbe55f0f635034a251a2093c52056a
BLAKE2b-256 c94d85d65da5e32d5503b817f6998cfdb41364f7a600a9e85fb66b858929fb74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7fd6394779c9a3b324b65394deadb949311662f3770bd34f904b8c04328082c
MD5 a80b26aa564fcf6dfc8c8b34f1142c9b
BLAKE2b-256 1f7556361136cc2dd7ab266b2aa7c5dbe2c7e0b957fca8845e0c125052d0c918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ed79f65098c4643cb6ec4530b337535f00b58ea02e25180e3df15e9cc9da58dc
MD5 7e12f1c4c08a9282a77539e0dcc6e859
BLAKE2b-256 075f29bc6f3dedf6156494968460c92fbd1c46118abb7663dd4e2e760172b732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 99b5bcadd5e029234f89d244b86bc8d21093be7ac26111068bebd92a4a95dc73
MD5 f07e8836674a595019e413140f0df863
BLAKE2b-256 157e132c31a6ef3b40d7b34bfb5982a2a310ff4b1f3623cda91cff7105c00fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c233199b9f4dd43e2297577e32ba5fcd0378871a47207bc424d5e5344d030a3e
MD5 2a73569dc952de5f764eb68f37e3b4be
BLAKE2b-256 97fd68b4083fb62140f973d102976400b9dc2cdddefe09991a6748b683c84eeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d87f90064106dfd7d2cc7baeb007a8ca289ee985f4bf64bb627c50cdc34208ed
MD5 a7425f4cffe9528290bed7b8f2904848
BLAKE2b-256 a8fe31bd3ba01c2cfa0e2f6fd6e9209c070bac22c80902023420226d418838a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbb3f56d371b560bf39fe45d29c24e3d819ae2399733e2c86394a34e76adab38
MD5 15e13179d95ee6ecea2d9187c77364b8
BLAKE2b-256 131b004a7223b946a70d20081c69c5fbc617e98bfe2ca22419e01f3d93b218a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3af3071d33432960cba88ce4e4932b508ab3e13ce41431c2a1b2dc9a988f7627
MD5 5b3148b3338d62052b8090865b84f706
BLAKE2b-256 76391030cf956f0598c044800cdf3905702137cb25e91c98bec49976467ead81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03c6a1f6bf2f64f40d076c997cdfcb8b3d1c9557dda6cb7bbad2c5c839921726
MD5 67b03626afcd544dc3821b533b6e69a5
BLAKE2b-256 6e840878a07e10c678b11cf7ab35703557b503c3f9b2b321927cf3e18467d000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f4b92df1e69dc48411045d2117d1d27ec6b5f0dd2b6501759cea2f6c68d5618
MD5 553e427ad5412f6d91f5cd5fb61d3489
BLAKE2b-256 27f0c2b0789e7c95db1d11007315b7e154de54685d071d2e4d29063229c2fe83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5da26970c41084a2ac337a4f075301a78cffb0e0f3df5e98c3049fc95e10725c
MD5 28762260b2c290c8bb178df2bd745b45
BLAKE2b-256 f2801b5e5aa38c2b465a1ed6bed00054a5aa36a40db379a5023cc80ee897005c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33624903dfb629d6f7c17ed353b4b415211c29fd447f31e6bf03361865b97e68
MD5 2d7cc92d94dba4fb554d087a7f91b21f
BLAKE2b-256 d4deff61e933138f88cd10b6cd8f4b00b6c77706822fae55e6336c797198e787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a54d2b3328a2305e0dfb257a4545053fdc64df0c64e0635982e191c846cc0456
MD5 3b0ed4b65eb18360916140b3f51e5110
BLAKE2b-256 37fe16ac8d5a9f86f821ec52f1a6225bca4ea0de5e735df5865596c23bc7fa82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp38-cp38-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2f6e80fb7cd4cc61af95ab2875801e4c36941a956c183297c3273cbfbbefa9d3
MD5 dff7998ba9d014c218847f60c0831791
BLAKE2b-256 af0201ea2326f7d5b73d98a8fecfb9950a965b67d8a040e7149c9edf7d2191e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 21.0 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.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c65f38418e35970d44f9b5a59533f0f60f14b9f91b712dba51092d2c74d4dcd1
MD5 557562cea7d758a5ac53cec7388c4b33
BLAKE2b-256 50aad86a8f7ceae4a38336607fbd6f9c4a46953abcb2bfc814ca85185db91d1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 19.4 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.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2ed6c948648798b440a9da74db65cdd2ad22f38cf4687f5212df369031394591
MD5 2b7f65cd1e12c36f6a6d32afda59784b
BLAKE2b-256 fdb41c7508784d58c1364836bb7aa41734d38f85bb58278f4747ee79d81cfa9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 231e5836579fc75b25c6f9bb6213950ea3d39aadcfeb7f880211ca55df968342
MD5 9f91f135ce3b5de29047c0ba813545d4
BLAKE2b-256 0377188ac8083bdb905465a998cdbee02b8e4debe3e2b0ddd90cdc59fcab73be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0a9493bbc477436a3725e99cfcba768f416ab70ab92956e373d1a3b480b1e204
MD5 4ed38a7a9d8935dc415b59835c7750ad
BLAKE2b-256 189a763dcaf98f3e4f45fae0729511d8968501838b7426da50df3c9171c27af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a5e5e51faa7cd02444d4ee1eb59e316c08e974bcfa3a959cb790bc4e9bb616c5
MD5 dc7f48907d2c95d9ea7f67243c2c5fbf
BLAKE2b-256 67a83018ebbe03ec0455c69cb849011eac53eab236edd45945e5ab94870e5747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8ad00a7621de8ef9ae1616cf24a53d48ad1a699b96668637559a8982d109a800
MD5 cebdb2f5d29bdcbd0971f213a967d0d3
BLAKE2b-256 bbe1795605e29c8c3c866e5639d40a894a12c5c4fb3489b5831a4b841cb9b6a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 595474e6c25f1c3c8ec67d587188e7dd47c492829b2c7c5ba1b17ee9e7e9a9ea
MD5 429fbe0ad645456460653366de97d9f2
BLAKE2b-256 6c5c0e4e926847a68551ab36de9bdfcc3ffeb213efb924367ba7c77cf9e9dc72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38270042f40ed9e576966c603d06c984c80364b0d9ec86962a31551dae27b0cd
MD5 3dfcc5820cfdb7bda4719e9933b036f9
BLAKE2b-256 0c7c1be02ca2de7db8bbd68ccb00880cdaa16673ca0757cdaf5f2a21103f0b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e3b8f0eba6d88c2aec63e6d1e38960f8a25c01f9796d32993ffa1cfcf48744c
MD5 4e567c1f2f087d4392876f30a5ae782a
BLAKE2b-256 e1eb7f7c31b9b917f8175b95eca5a545a86ce4dc4d728ba4f359da86224b0ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78f2a53149b116e0088f6eda720574f723fbc75189195aab8a7a2a591ca89cab
MD5 fde123b6d93c902ebac9dd8beed7fc0d
BLAKE2b-256 25c02fcdfee717968fa83d1ec5127b2e25119341a04e95d188a8d63c49a84c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02118dc8545e2371448b9983a0041f12124eea907eb61858f2be8e7c1dfa1e43
MD5 92391497beb77d383d33ffb67b5bb724
BLAKE2b-256 4a93553247c55edf8ea4f97df8311a322b92cbb13817d1259d561679435aefd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a11250dd0521e9f729325b19ce9121df4cbb80ad3468cc21e56803e8380bc4b
MD5 586f0c579cc9a51c03f5fa41c0925733
BLAKE2b-256 689ed83a0eb24e9b854d3f7885d7b64793d52b2aaa71ba4b5a04a92ffd9fa5bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.1-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49a518b456403602775218062a4dd06bed42b26854ff1ff6784cfee2ef6fa347
MD5 646eff9186e1d11adb59077d486eb328
BLAKE2b-256 bc138e0b730762f5e0c64c67aac0d5039a8c4b5223486d56b12f03bea7e2a364

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