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.3.tar.gz (84.2 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.3-pp39-pypy39_pp73-win_amd64.whl (21.1 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.2.3-pp39-pypy39_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.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.3-pp39-pypy39_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.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

hiredis-2.2.3-pp38-pypy38_pp73-win_amd64.whl (21.2 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

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

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-2.2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (48.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

hiredis-2.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.3-pp37-pypy37_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.3-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

hiredis-2.2.3-cp311-cp311-win32.whl (19.5 kB view details)

Uploaded CPython 3.11Windows x86

hiredis-2.2.3-cp311-cp311-musllinux_1_1_x86_64.whl (173.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

hiredis-2.2.3-cp311-cp311-musllinux_1_1_s390x.whl (173.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

hiredis-2.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl (182.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

hiredis-2.2.3-cp311-cp311-musllinux_1_1_i686.whl (169.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

hiredis-2.2.3-cp311-cp311-musllinux_1_1_aarch64.whl (174.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

hiredis-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-2.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (167.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-2.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-2.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-2.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.6 kB view details)

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

hiredis-2.2.3-cp311-cp311-macosx_11_0_arm64.whl (41.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.2.3-cp311-cp311-macosx_10_12_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hiredis-2.2.3-cp311-cp311-macosx_10_12_universal2.whl (80.7 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

hiredis-2.2.3-cp310-cp310-win32.whl (19.5 kB view details)

Uploaded CPython 3.10Windows x86

hiredis-2.2.3-cp310-cp310-musllinux_1_1_x86_64.whl (170.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

hiredis-2.2.3-cp310-cp310-musllinux_1_1_s390x.whl (170.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

hiredis-2.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl (180.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

hiredis-2.2.3-cp310-cp310-musllinux_1_1_i686.whl (167.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

hiredis-2.2.3-cp310-cp310-musllinux_1_1_aarch64.whl (171.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-2.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-2.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.3 kB view details)

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

hiredis-2.2.3-cp310-cp310-macosx_11_0_arm64.whl (41.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-2.2.3-cp310-cp310-macosx_10_12_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

hiredis-2.2.3-cp310-cp310-macosx_10_12_universal2.whl (80.7 kB view details)

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

hiredis-2.2.3-cp39-cp39-win_amd64.whl (21.2 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-2.2.3-cp39-cp39-win32.whl (19.6 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-2.2.3-cp39-cp39-musllinux_1_1_x86_64.whl (168.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

hiredis-2.2.3-cp39-cp39-musllinux_1_1_s390x.whl (168.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

hiredis-2.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl (178.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

hiredis-2.2.3-cp39-cp39-musllinux_1_1_i686.whl (165.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

hiredis-2.2.3-cp39-cp39-musllinux_1_1_aarch64.whl (170.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-2.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (165.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-2.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-2.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.7 kB view details)

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

hiredis-2.2.3-cp39-cp39-macosx_11_0_arm64.whl (41.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-2.2.3-cp39-cp39-macosx_10_12_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

hiredis-2.2.3-cp39-cp39-macosx_10_12_universal2.whl (80.7 kB view details)

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

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

Uploaded CPython 3.8Windows x86-64

hiredis-2.2.3-cp38-cp38-win32.whl (19.6 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-2.2.3-cp38-cp38-musllinux_1_1_x86_64.whl (169.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

hiredis-2.2.3-cp38-cp38-musllinux_1_1_s390x.whl (169.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

hiredis-2.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl (179.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

hiredis-2.2.3-cp38-cp38-musllinux_1_1_i686.whl (166.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

hiredis-2.2.3-cp38-cp38-musllinux_1_1_aarch64.whl (171.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hiredis-2.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-2.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-2.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-2.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.7 kB view details)

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

hiredis-2.2.3-cp38-cp38-macosx_11_0_arm64.whl (41.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-2.2.3-cp38-cp38-macosx_10_12_x86_64.whl (44.9 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

hiredis-2.2.3-cp38-cp38-macosx_10_12_universal2.whl (80.7 kB view details)

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

hiredis-2.2.3-cp37-cp37m-win_amd64.whl (21.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-2.2.3-cp37-cp37m-win32.whl (19.5 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-2.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl (167.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

hiredis-2.2.3-cp37-cp37m-musllinux_1_1_s390x.whl (167.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

hiredis-2.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl (177.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

hiredis-2.2.3-cp37-cp37m-musllinux_1_1_i686.whl (164.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

hiredis-2.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl (168.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hiredis-2.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (164.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

hiredis-2.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (164.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

hiredis-2.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (175.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

hiredis-2.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (164.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hiredis-2.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (160.7 kB view details)

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

hiredis-2.2.3-cp37-cp37m-macosx_10_12_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3.tar.gz
Algorithm Hash digest
SHA256 e75163773a309e56a9b58165cf5a50e0f84b755f6ff863b2c01a38918fe92daa
MD5 670a932c2972cbd88f910c2b29f85c3c
BLAKE2b-256 b004dab6792584fc548803ffa50b5bb2b99f01d3ab04d7c7f64e85f1a22fb847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d194decd9608f11c777946f596f31d5aacad13972a0a87829ae1e6f2d26c1885
MD5 4c30ca88c39a682efc0afee7e38dfec9
BLAKE2b-256 55c58de23caa0110469e5a9252fc370a94185d131072d5943a97be0982856bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f4a65276f6ecdebe75f2a53f578fbc40e8d2860658420d5e0611c56bbf5054c
MD5 a39876e56c52c8190c98569db9a7f784
BLAKE2b-256 802751da774d9fe906604e0a1f60e80ccc740fd0373d6d3c2bf91c18dc9b908a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89a258424158eb8b3ed9f65548d68998da334ef155d09488c5637723eb1cd697
MD5 03ffe3ba41b184788dacab1b75a99dc5
BLAKE2b-256 8fdc7f8a8c54eeff0f7c75bfc2421ad39680891b78b4c251fd6ac803ad6feeed

See more details on using hashes here.

File details

Details for the file hiredis-2.2.3-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.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 334f2738700b20faa04a0d813366fb16ed17287430a6b50584161d5ad31ca6d7
MD5 a207df37880a7da26380b280b7d03581
BLAKE2b-256 0c3b47ca4329dab9b40630fc23e05677a8a3f5ca3150f3e22e01b21872124e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e7bb4dd524f50b71c20ef5a12bd61da9b463f8894b18a06130942fe31509881
MD5 675cd479b459a3a4b220132ea0d42a14
BLAKE2b-256 51f4510b72404034568417448b9530ea4292e7a15c23a15f6c0f7120a7b06c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b9953d87418ac228f508d93898ab572775e4d3b0eeb886a1a7734553bcdaf291
MD5 63127ed5e379e6f7bf32b47bef9a8bbf
BLAKE2b-256 a7fe17b196869a50b25ad604e6a988edcb5b23eaedf34e9817e1fe871c69d396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fa6811a618653164f918b891a0fa07052bd71a799defa5c44d167cac5557b26
MD5 4e33a09b7def8f9acf348b0a98df4533
BLAKE2b-256 6562d697c917817066c2280a22d941bb32aeb74fabeef8d4b4d109218ddc7de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33a94d264e6e12a79d9bb8af333b01dc286b9f39c99072ab5fef94ce1f018e17
MD5 230f18cee6d092026ad6c733f0e4ba5f
BLAKE2b-256 804b4dcc965e621bc28fc5f49cd2e2eb067440bee707f4b48f9c99385949cde0

See more details on using hashes here.

File details

Details for the file hiredis-2.2.3-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.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af33f370be90b48bbaf0dab32decbdcc522b1fa95d109020a963282086518a8e
MD5 a41ddf9cae88dae7d2c0675fbbe42fb9
BLAKE2b-256 78936a9f4084586adb231ecac5e5efb1626358ee68a74cc672162f4930415f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bf4b5bae472630c229518e4a814b1b68f10a3d9b00aeaec45f1a330f03a0251
MD5 31cd305a9f8797e0f267c4212efbe268
BLAKE2b-256 102aa59b7b9561b6ad0c2bb1a581c4c29e0778d12e2311bb9b4b49f7b590d4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4ed68a3b1ccb4313d2a42546fd7e7439ad4745918a48b6c9bcaa61e1e3e42634
MD5 4bcb9d3a09c0c334d7b28bd4113b02cb
BLAKE2b-256 0f374d10369068418661ff4ca236ccc923b1a39989407d3899a0e5c1fea7496b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60c4e3c258eafaab21b174b17270a0cc093718d61cdbde8c03f85ec4bf835343
MD5 23977d6b609bfcae39ab94b8b9677497
BLAKE2b-256 a1c9bb32911c7655fdb883ec098bfd6671b55b02cb403cebcc0980235c6374a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15c2a551f3b8a26f7940d6ee10b837810201754b8d7e6f6b1391655370882c5a
MD5 980267540387c088ed216852402b75eb
BLAKE2b-256 efae8ad171906cfc24531420ea2e6a6fd0c28a6b9f7da940afadaf8d58090624

See more details on using hashes here.

File details

Details for the file hiredis-2.2.3-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.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc36a9dded458d4e37492fe3e619c6c83caae794d26ad925adbce61d592f8428
MD5 ddb19dcf9b12117b681af373de053887
BLAKE2b-256 556969664b23b5d7badd066deb8732587ca5c486b83a2d1abdf610f2429ddab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f280ab4e043b089777b43b4227bdc2035f88da5072ab36588e0ccf77d45d058
MD5 498bcf79449f27f8fcb805a0250b899e
BLAKE2b-256 69bbd23c3d23c18a3209ab2ba970dd81e1a6768b5ab1a1900e8c32a007072dc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.3-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.3

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9a7c987e161e3c58f992c63b7e26fea7fe0777f3b975799d23d65bbb8cb5899
MD5 07eab7cdc2028fff3b3305319ac0aff9
BLAKE2b-256 155166c33f7ae8df6fc95601a71161c71cd8e2b5ccc8de236fd283ac3cc3729d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d1be9e30e675f5bc1cb534633324578f6f0944a1bcffe53242cf632f554f83b6
MD5 39ed555ebf380ea2b658d9b91c57fbcf
BLAKE2b-256 6d753c025f5b12c9c64b1f562cf423c7f1ee3bbff8f67a30a9904e5429bf0505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 071c5814b850574036506a8118034f97c3cbf2fe9947ff45a27b07a48da56240
MD5 bf9c304f06493c06bce9d89f8a347d60
BLAKE2b-256 050a8e5ae10854b1d67f8cd9e1b187e1128bde911f6b44ac6db4ad714514ef27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 126623b03c31cb6ac3e0d138feb6fcc36dd43dd34fc7da7b7a0c38b5d75bc896
MD5 706bf25330501860a64a5523a1078121
BLAKE2b-256 1bcc14789efd9707a1d799c9cb1fbac630044e5cec2764eca4bd28aa60dda80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a7205497d7276a81fe92951a29616ef96562ed2f91a02066f72b6f93cb34b40e
MD5 eacfbf08dbffac4c207fe77754382a8f
BLAKE2b-256 884314d2ab141cc10a30fd8dcb00addfc38c0bb7911165314b0b5dca493c4033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4e43e2b5acaad09cf48c032f7e4926392bb3a3f01854416cf6d82ebff94d5467
MD5 c78e90a1b055ba242fa162911b190cd0
BLAKE2b-256 03f3e34dbb46f8f0d1a0e6c6aecf082c22de7a683df02c2bc29f74f9ce680eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b17baf702c6e5b4bb66e1281a3efbb1d749c9d06cdb92b665ad81e03118f78fc
MD5 0a14c22816e0ff585047b42f53cd6235
BLAKE2b-256 98a56c0297dceb719ff2d9412072ec86673e1eea12c9e23e1215279dc59f4a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d7e459fe7313925f395148d36d9b7f4f8dac65be06e45d7af356b187cef65fc
MD5 c7f9f453e36bc0804c56709bf449b7e4
BLAKE2b-256 a1ce641fdcfc7d6003a1d2ada35dd5741d9aac9b4e94b15515c9ea33db1b32dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fb9300959a0048138791f3d68359d61a788574ec9556bddf1fec07f2dbc5320
MD5 9aeb1480b0044c6b7c635634dffce05b
BLAKE2b-256 12c6cb1f5bccabf3cc05a1ee56978177a2dcc444e19d743ec95adfcfbb2a1405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7df645b6b7800e8b748c217fbd6a4ca8361bcb9a1ae6206cc02377833ec8a1aa
MD5 6f146132dcfd1ea18930a8b7c213ceef
BLAKE2b-256 67b9513511d1ceaf2e519f202a0aecfacc3d3d8eeea8042946e96f8955cbcaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa17a3b22b3726d54d7af20394f65d4a1735a842a4e0f557dc67a90f6965c4bc
MD5 5436e45861617532be461dc1256dbb77
BLAKE2b-256 ea6d4d230772220486fb7fa0991d3d36c8592c3d941f765b1aea8cf1d5468bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8eceffca3941775b646cd585cd19b275d382de43cc3327d22f7c75d7b003d481
MD5 27d7328903c40c43e4bd2102a2299b8d
BLAKE2b-256 76983b99c70981d4e882c65bcfe5a0b3b26afc6da5d4a3c51f964e20ee0b41d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f5446068197b35a11ccc697720c41879c8657e2e761aaa8311783aac84cef20
MD5 05fc60d124cd4277e137af3f8f47e7c1
BLAKE2b-256 29e5b6022797834c9e935ff814dcf96d03abea2b669e8359be69a7ed96e36a57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c3b8be557e08b234774925622e196f0ee36fe4eab66cd19df934d3efd8f3743
MD5 03ce541e14e5311d75ca87b0d4464622
BLAKE2b-256 b180f018c72cf5100da89b47b62ba6f14086bacd0eff58c4e112ee215ce7faeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp311-cp311-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d115790f18daa99b5c11a506e48923b630ef712e9e4b40482af942c3d40638b8
MD5 1f4acc3d6e84f6f19c300550336d60e3
BLAKE2b-256 d77aa8855c545512ea07cae0c859983a6fce9a82e6b321889e5c2e1dcb50eb7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.3-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.3

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dcb0569dd5bfe6004658cd0f229efa699a3169dcb4f77bd72e188adda302063d
MD5 90f7ad6a3adbb2e2f41f93ce96b4e8dc
BLAKE2b-256 578aa6c3727732f462faed6e1696d1f2985904f9dcc1a231f433a9c57b33103d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 77924b0d32fd1f493d3df15d9609ddf9d94c31a364022a6bf6b525ce9da75bea
MD5 b8b3fed80d3626deee371eac0b00a0e8
BLAKE2b-256 9000cdd008081d51fcfa156ca4cfdd5a029c56700bb8d9a10a807ea82680f6bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b7fe075e91b9d9cff40eba4fb6a8eff74964d3979a39be9a9ef58b1b4cb3604
MD5 5192886871c44160d3b9a800c3a80f12
BLAKE2b-256 1322dfa51714ffe6ab179f9c9e71ff3830b51b2cfa8d636902aa0d6de110e827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1d274d5c511dfc03f83f997d3238eaa9b6ee3f982640979f509373cced891e98
MD5 1b62000e2d19a84b88bbfe93dfb3b557
BLAKE2b-256 b8cf4bb335db5b4e61e145701743a3fed383b42d501cf95cfad4fe1749f04f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c6cb613148422c523945cdb8b6bed617856f2602fd8750e33773ede2616e55d5
MD5 ce9d87e6b2665f674fe74bd1129e885f
BLAKE2b-256 993e79cb1ccbd02073f9e19c25a6bd244887f5a6caab04c3feae8bfb6c93cd34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3759f4789ae1913b7df278dfc9e8749205b7a106f888cd2903d19461e24a7697
MD5 f3e12d4943470029b47a4a89a5a70ef9
BLAKE2b-256 48bc5c0fbc08ef6d2510ef9a829066624fd9f4c722fcc895727e061a74f9a656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d27e560eefb57914d742a837f1da98d3b29cb22eff013c8023b7cf52ae6e051d
MD5 f4e857347d099a6cffbdddd07a370546
BLAKE2b-256 be1a7c14cff0f112768b3f64b843c283f1f424f500a5f9d837c1e212ee444b5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61995eb826009d99ed8590747bc0da683a5f4fbb4faa8788166bf3810845cd5c
MD5 d145b08daebd389270de30e2ea40d720
BLAKE2b-256 0fe91fd5d787ab8082112fd57ff92c55ec7ccf2a21892e1832de06de9ce7728f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 227c5b4bcb60f89008c275d596e4a7b6625a6b3c827b8a66ae582eace7051f71
MD5 dd6b2101d5c02447c94413d51d39d231
BLAKE2b-256 e07d9a19e1cee5a5aea4ec6d78dd6a8f0993cb7cbee5b5ab1a23d4072f4898ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33bc4721632ef9708fa44e5df0066053fccc8e65410a2c48573192517a533b48
MD5 701199101a7647b92cec2d74a6d97f04
BLAKE2b-256 a502fa2542e8f79b55a2d6cee2be4f94447f6b8534a426904821e03d4fa0118f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cadb0ac7ba3babfd804e425946bec9717b320564a1390f163a54af9365a720a
MD5 c6b3dcd607c0c73ab42fb739cca344d2
BLAKE2b-256 0bcb4408d98e488ffa28f3c256a30170cfb351d03bb9ca762fbc540a9a8275e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f969edc851efe23010e0f53a64269f2629a9364135e9ec81c842e8b2277d0c1
MD5 8562d196be4fffda43ae58a00ed27098
BLAKE2b-256 0bdc2ec6a943938516a80fbc8605978c268841e354fcac92d68fe10168cb9a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffaf841546905d90ff189de7397aa56413b1ce5e54547f17a98f0ebf3a3b0a3b
MD5 ce3e8098bec5bc1877f36b32d6b0754e
BLAKE2b-256 1d8cd2a87d4ba24a1c58c27dbdd5bd33b2e4610977a64569c1a6045c72a72495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f006c28c885deb99b670a5a66f367a175ab8955b0374029bad7111f5357dcd4
MD5 fe95486939d97e6f0e193856b4c95c5c
BLAKE2b-256 43af400a985502dc1d25072f6ab0b4fb1aa119c34dbb3f1328e3448dcdd4dfa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp310-cp310-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9a1a80a8fa767f2fdc3870316a54b84fe9fc09fa6ab6a2686783de6a228a4604
MD5 e9f61eef516c1996a58a6851835b933a
BLAKE2b-256 48023aad626b8e752d47bf9810a64a55b0ee64089368f649e7cbc8721cfe3cc1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4f674e309cd055ee7a48304ceb8cf43265d859faf4d7d01d270ce45e976ae9d3
MD5 12773335e7981880a9aab45286149c12
BLAKE2b-256 681d90aa46e42f4ba18c7763ba415520b89a50dabea6fa5444e286115295723f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b4f3d06dc16671b88a13ae85d8ca92534c0b637d59e49f0558d040a691246422
MD5 bfd839e4ecea6d44c6d7717fcf113c14
BLAKE2b-256 b9598102abf361a7c91822754bdd3d46c289051c29de76bcdc1bb8c07a54273f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33ee3ea5cad3a8cb339352cd230b411eb437a2e75d7736c4899acab32056ccdb
MD5 69a7037a02d8979eb0a4068025d12f52
BLAKE2b-256 bf8ba56f4a9224d313d8315dffb6a7cf3d2f3245cea299a750903a1771f5724c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6f88cafe46612b6fa68e6dea49e25bebf160598bba00101caa51cc8c1f18d597
MD5 165a0429c4959944b82682e6e3491c2b
BLAKE2b-256 c7169a64e895f16c86b068a1972cff6386413f3312aa4872039353e109440789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3753df5f873d473f055e1f8837bfad0bd3b277c86f3c9bf058c58f14204cd901
MD5 c11b84176d9d49def11a2abdab73fce1
BLAKE2b-256 5ab8910c2a455c1e67996adf79e6ac8e32da6bd0aa4aba06f5bc781676dc51dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 69536b821dd1bc78058a6e7541743f8d82bf2d981b91280b14c4daa6cdc7faba
MD5 d3fcdc8994780e94bbf1ef7ec021d4cf
BLAKE2b-256 d846333c267e057e1ebf325e9f3715008fbd7fbf4ccab1fc4f5ff05b833f0c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ccdcb635dae85b006592f78e32d97f4bc7541cb27829d505f9c7fefcef48298
MD5 5b6f4f8d0c0e56098ed1ea952e9a2ca2
BLAKE2b-256 7aa9bbd0a350a748ad9297d9057c450242950bbba5d82380deeecde4acc3805e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08415ea74c1c29b9d6a4ca3dd0e810dc1af343c1d1d442e15ba133b11ab5be6a
MD5 7cc2d78465e7988231c309b4f864f356
BLAKE2b-256 3c6b69e3a7b75d0e1cf5233cf4d5e2bf78274d6d8818059bb05cfa56e5a4cbbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b3e974ad15eb32b1f537730dea70b93a4c3db7b026de3ad2b59da49c6f7454d
MD5 ba18b4e61580366ca183e347ed92d851
BLAKE2b-256 e5304526827f0fffd181c6b64609ad2a9c87ced27d2704551c7bbe0d88122187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a286ded34eb16501002e3713b3130c987366eee2ba0d58c33c72f27778e31676
MD5 e611deba49db0c5b7caa2f71ff4fa34b
BLAKE2b-256 efa4bfdf90a74b900c14f85e74fda2eee75644d9c7ffdcc88c08964be756a53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a5c8019ff94988d56eb49b15de76fe83f6b42536d76edeb6565dbf7fe14b973
MD5 3e6ce8e10ea3be0450198771b10201e7
BLAKE2b-256 cd21d8f7f24d92513517dd03c8c252af6d2b0e7cf3972c1ed27eb82d49919616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e17d04ea58ab8cf3f2dc52e875db16077c6357846006780086fff3189fb199d
MD5 eadc649ce6e39653e2f78625259d9cc5
BLAKE2b-256 db327f48a66c4007541a1de8dbeb230eafdaa713202a03cde45a7b4ed3809478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9944a2cac25ffe049a7e89f306e11b900640837d1ef38d9be0eaa4a4e2b73a52
MD5 ecc13188dc147e293c0a3e2dfee6fc1a
BLAKE2b-256 b235f6ec8f9f3bef55db270bf36ec97bc0978177bd9ab988322db7e2c44dad86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50171f985e17970f87d5a29e16603d1e5b03bdbf5c2691a37e6c912942a6b657
MD5 3169afed0e4fb4bdfe673b48f311933b
BLAKE2b-256 f79122c5432c14eb3b7412526865596d080a2c14e9468105947cf947b9617180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp39-cp39-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d20891e3f33803b26d54c77fd5745878497091e33f4bbbdd454cf6e71aee8890
MD5 c5e1d89be530246e36fd9384c5ff02cf
BLAKE2b-256 7edf1548401a747f784cc9577d31796815c4e2bc3cbecd8b8d7b48f8d6e01146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.3-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.3

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20f509e3a1a20d6e5f5794fc37ceb21f70f409101fcfe7a8bde783894d51b369
MD5 b1eaeac31b579c106fbc39ab72c79ed3
BLAKE2b-256 c23e950b672aa47f1fa0f07f42fc9491901d6d1d52541f64fbd1a4a6c4cccd0f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4e3e3e31423f888d396b1fc1f936936e52af868ac1ec17dd15e3eeba9dd4de24
MD5 49f5ec6299dba18fcaecc578031fd6cd
BLAKE2b-256 d6671cf516e7b1ef93b2332d367e5f31a11cf4a7c747e1ec19b8e2b8cad7063f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2443659c76b226267e2a04dbbb21bc2a3f91aa53bdc0c22964632753ae43a247
MD5 4c12c4e46c23867484cd8f6b72d1fc76
BLAKE2b-256 456f2d992d203d897cf438efc79d5b753c45327ce1f93aefa12f79859000532a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 51341e70b467004dcbec3a6ce8c478d2d6241e0f6b01e4c56764afd5022e1e9d
MD5 56d9affe49420312f1e1ce2a12f4923b
BLAKE2b-256 b343d404217d35e631c0cdd6e17687b52ea30002ed49e7144cab46a6a6226bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9cd32326dfa6ce87edf754153b0105aca64486bebe93b9600ccff74fa0b224df
MD5 ab7dfd464564a0060cb71325b083d74a
BLAKE2b-256 dcd38bf70113afd939609d02c32435b39138f8e969a3475ae31c9e2fe564c7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 14824e457e4f5cda685c3345d125da13949bcf3bb1c88eb5d248c8d2c3dee08f
MD5 bc03fb3e271b0fdf29defc8034f5f44d
BLAKE2b-256 05eb990929dd6f0ab2daa7fa1b4835a0acf08322ed631278b21a5d6377cf7878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 477c34c4489666dc73cb5e89dafe2617c3e13da1298917f73d55aac4696bd793
MD5 ead342d73524906af569640444369e22
BLAKE2b-256 2b3fc550928420596ab751546c93cbe9901ae597389e2cd04d3205cbbb9eb290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96d9ea6c8d4cbdeee2e0d43379ce2881e4af0454b00570677c59f33f2531cd38
MD5 3f0a1b9522559584f733f5a2efdfc6ff
BLAKE2b-256 2552c7782d3d3e15fa20950bf3c4cf69278b953810737d029f51a2f7e09fb44b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 818dfd310aa1020a13cd08ee48e116dd8c3bb2e23b8161f8ac4df587dd5093d7
MD5 0d9efc667f29dd280e7c6abd0205640e
BLAKE2b-256 f67b411dd838d8c105e8b5a8104bc9ebddfbedcb352764182a8ed267a98f8e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f2b34a6444b8f9c1e9f84bd2c639388e5d14f128afd14a869dfb3d9af893aa2
MD5 b9d61e26c9c82f61b8f1e73a417c3d4d
BLAKE2b-256 b2ed65c7229a9b336394c0bcf87e148b15a3646daa5d912450e5cd8479cfc45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec58fb7c2062f835595c12f0f02dcda76d0eb0831423cc191d1e18c9276648de
MD5 71e9219b2f5da0031faf653965cbabc9
BLAKE2b-256 7054e86fd2098399e0ba674db18e83033f336baf2e0dd92a1728ca513a8f864a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1eadbcd3de55ac42310ff82550d3302cb4efcd4e17d76646a17b6e7004bb42b
MD5 dfb50f70ff8f2e25f0d31e8f1b4ea981
BLAKE2b-256 c6b7b03148c8434da1933664027fb7577f4867623da0659845abfa44d6710e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9076ce8429785c85f824650735791738de7143f61f43ae9ed83e163c0ca0fa44
MD5 addd39410d4fc78b8df503ae692e7e2a
BLAKE2b-256 b7288c0f29e3961e49a332ef18270e5a42edcae9f982801ce228976166d1967c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 232d0a70519865741ba56e1dfefd160a580ae78c30a1517bad47b3cf95a3bc7d
MD5 54e657497b75f5164ebd1038eb4d2a9a
BLAKE2b-256 37bf247b54f57bc127c7ff1e5238cedb77d62315f5751ebaf096548e713b054d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp38-cp38-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5a4bcef114fc071d5f52c386c47f35aae0a5b43673197b9288a15b584da8fa3a
MD5 2a8a75684bf9470cfadc160264c320f5
BLAKE2b-256 ca83489cc4b32df106590f88b19ab37329beec8016454d5c6e631d949cdbe261

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8f9dbe12f011a9b784f58faecc171d22465bb532c310bd588d769ba79a59ef5a
MD5 9081159f894e7f7bb343df098bb5a874
BLAKE2b-256 334377c6628f5f31e1b213a6e1f396d5cbd843c86fb5826e4e2087c6844ed840

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 95d2305fd2a7b179cacb48b10f618872fc565c175f9f62b854e8d1acac3e8a9e
MD5 70bcf5da58a485d858e8e299ed1b535a
BLAKE2b-256 84479655c466b5bfce1eceb0bfe2e2f31697f5f3646cdce1c964068b0e0c8ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 17e938d9d3ee92e1adbff361706f1c36cc60eeb3e3eeca7a3a353eae344f4c91
MD5 66208340815748f204cb61ab6990d6dd
BLAKE2b-256 0887cfe849a59954a318890893e60b3a90fb164b30bd56e177991aac6964c130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e62ec131816c6120eff40dffe43424e140264a15fa4ab88c301bd6a595913af3
MD5 79306716e8a3557b3996db50fb9bf923
BLAKE2b-256 321bba2046010b393128b97d93f034bce44effdf4990fbebea5538861daa27ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5e6674a017629284ef373b50496d9fb1a89b85a20a7fa100ecd109484ec748e5
MD5 5da28d2e0beced8aac577a2818b5d161
BLAKE2b-256 1a43bef0aa818e84afcf5b963c8718c3603efbc169dd28f4321699eac7fdcd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5cda592405bbd29d53942e0389dc3fa77b49c362640210d7e94a10c14a677d4d
MD5 982a282cb279da8b0cdfa20e7c62cbb6
BLAKE2b-256 91e74e928a6bfd8333320189d1eed6ded3cb5bf19aac60e6c81deb295c0da1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d1a4ce40ba11da9382c14da31f4f9e88c18f7d294f523decd0fadfb81f51ad18
MD5 2d16d7e482f02bec45ab3acde8e0952e
BLAKE2b-256 aedb764345094df4b51fe886265d0ab4343071a6a41e4d6c9a584a99ad264ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd2614f17e261f72efc2f19f5e5ff2ee19e2296570c0dcf33409e22be30710de
MD5 b142194f0f18ffa679f079bc35462287
BLAKE2b-256 958f63589a6e6923df507a259f26ffcf2fb17ccfe6d27f0168fa0eac71ed1c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9b9e5bde7030cae83aa900b5bd660decc65afd2db8c400f3c568c815a47ca2a
MD5 b46baed4d9745f6e52dffcca56840d6b
BLAKE2b-256 ef0f779e4b7f69efbc06d623228eec69a466d685c93259e178a2ef87f27637a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61a72e4a523cdfc521762137559c08dfa360a3caef63620be58c699d1717dac1
MD5 2dc5c43851e2dbd0a93a5ff45990f122
BLAKE2b-256 1cb29cee7c384a40195250a4cc75c3efa4201de66dfbdd71782c7e9800b9aa25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2df98f5e071320c7d84e8bd07c0542acdd0a7519307fc31774d60e4b842ec4f
MD5 124eab5fcb8db9ba63c9cf772d0d9398
BLAKE2b-256 31fd8869bfbe1b79e3f380dce9995cb9cca3590dc36a455c96757ca6abc0b63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46525fbd84523cac75af5bf524bc74aaac848beaf31b142d2df8a787d9b4bbc4
MD5 9c3536d550510908f990053e187dd2e9
BLAKE2b-256 93760dfb226e41bf8256aa502e870e639bad2089db81a68bc0d1374aea71283f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.3-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2dcb8389fa3d453927b1299f46bdb38473c293c8269d5c777d33ea0e526b610
MD5 e6f00ba4f5c132503044424339bd21ff
BLAKE2b-256 b32cf2744b5d829877a774fe3ec3a00d7a3fe102516809902201410afc36a4f4

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