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.2.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.2-pp39-pypy39_pp73-win_amd64.whl (21.1 kB view details)

Uploaded PyPyWindows x86-64

hiredis-2.2.2-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.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.2-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.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (39.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-2.2.2-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.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.2-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.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (39.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

hiredis-2.2.2-pp37-pypy37_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.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (47.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

hiredis-2.2.2-pp37-pypy37_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.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (39.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

hiredis-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl (172.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

hiredis-2.2.2-cp311-cp311-musllinux_1_1_s390x.whl (172.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

hiredis-2.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl (182.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

hiredis-2.2.2-cp311-cp311-musllinux_1_1_i686.whl (169.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

hiredis-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl (173.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

hiredis-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

hiredis-2.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

hiredis-2.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

hiredis-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

hiredis-2.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.1 kB view details)

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

hiredis-2.2.2-cp311-cp311-macosx_11_0_arm64.whl (41.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

hiredis-2.2.2-cp311-cp311-macosx_10_12_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

hiredis-2.2.2-cp311-cp311-macosx_10_12_universal2.whl (80.5 kB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

hiredis-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (169.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

hiredis-2.2.2-cp310-cp310-musllinux_1_1_s390x.whl (169.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

hiredis-2.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl (179.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

hiredis-2.2.2-cp310-cp310-musllinux_1_1_i686.whl (166.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

hiredis-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl (171.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

hiredis-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (165.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

hiredis-2.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (165.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

hiredis-2.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (176.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

hiredis-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (165.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

hiredis-2.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.8 kB view details)

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

hiredis-2.2.2-cp310-cp310-macosx_11_0_arm64.whl (41.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

hiredis-2.2.2-cp310-cp310-macosx_10_12_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

hiredis-2.2.2-cp310-cp310-macosx_10_12_universal2.whl (80.5 kB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

hiredis-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

hiredis-2.2.2-cp39-cp39-musllinux_1_1_s390x.whl (167.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

hiredis-2.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl (178.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

hiredis-2.2.2-cp39-cp39-musllinux_1_1_i686.whl (164.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

hiredis-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl (169.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

hiredis-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (164.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

hiredis-2.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (164.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

hiredis-2.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (175.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

hiredis-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (164.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

hiredis-2.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.2 kB view details)

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

hiredis-2.2.2-cp39-cp39-macosx_11_0_arm64.whl (41.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

hiredis-2.2.2-cp39-cp39-macosx_10_12_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

hiredis-2.2.2-cp39-cp39-macosx_10_12_universal2.whl (80.5 kB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

hiredis-2.2.2-cp38-cp38-musllinux_1_1_x86_64.whl (169.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

hiredis-2.2.2-cp38-cp38-musllinux_1_1_s390x.whl (168.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

hiredis-2.2.2-cp38-cp38-musllinux_1_1_ppc64le.whl (179.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

hiredis-2.2.2-cp38-cp38-musllinux_1_1_i686.whl (166.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

hiredis-2.2.2-cp38-cp38-musllinux_1_1_aarch64.whl (170.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

hiredis-2.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (166.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

hiredis-2.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (166.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

hiredis-2.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

hiredis-2.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

hiredis-2.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.2 kB view details)

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

hiredis-2.2.2-cp38-cp38-macosx_11_0_arm64.whl (41.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

hiredis-2.2.2-cp38-cp38-macosx_10_12_x86_64.whl (44.8 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

hiredis-2.2.2-cp38-cp38-macosx_10_12_universal2.whl (80.5 kB view details)

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

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

hiredis-2.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl (166.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

hiredis-2.2.2-cp37-cp37m-musllinux_1_1_s390x.whl (166.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

hiredis-2.2.2-cp37-cp37m-musllinux_1_1_ppc64le.whl (176.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

hiredis-2.2.2-cp37-cp37m-musllinux_1_1_i686.whl (163.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

hiredis-2.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl (168.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

hiredis-2.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (164.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

hiredis-2.2.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (164.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

hiredis-2.2.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (174.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

hiredis-2.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (163.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

hiredis-2.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (160.1 kB view details)

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

hiredis-2.2.2-cp37-cp37m-macosx_10_12_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for hiredis-2.2.2.tar.gz
Algorithm Hash digest
SHA256 9c270bd0567a9c60673284e000132f603bb4ecbcd707567647a68f85ef45c4d4
MD5 8cb964c44ce6fa9b95f5432019cfc7be
BLAKE2b-256 188916f2020639e434387b5d38b0c844e345e28404b7fe925f3002711e8e5fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2d1ba0799f3487294f72b2157944d5c3a4fb33c99e2d495d63eab98c7ec7234b
MD5 14e74ea3b542990343d04f2539b2f7e9
BLAKE2b-256 17667b0135ef59a0ca3a1d91978b8d1dc5ba93c5a4f4950c0b85a51fb9a0bb04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7114961ed78d708142f6c6eb1d2ed65dc3da4b5ae8a4660ad889dd7fc891971
MD5 d6fe237e26681548166cadc649ce3886
BLAKE2b-256 c144127708a682d7986c502aa590b59e2c5003eb6a424a27f6e213e76ecd3d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e6ea7532221c97fa6d79f7d19d452cd9d1141d759c54279cc4774ce24728f13
MD5 ccc73838d14ca30f4a2b4202e7719c82
BLAKE2b-256 303fadb2ca09825b6941842afda85024330da925cea549af623bb6108ccd75b7

See more details on using hashes here.

File details

Details for the file hiredis-2.2.2-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.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b084fbc3e69f99865242f8e1ccd4ea2a34bf6a3983d015d61133377526c0ce2
MD5 24403a8207a520acaa178009113f9adf
BLAKE2b-256 9ffc40ca3586c1ac99fdb3a5f07ae571c1b3d2ef40076320e3cece0ee706f88c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1ce725542133dbdda9e8704867ef52651886bd1ef568c6fd997a27404381985
MD5 e6eb9d36a1ffadf5033bed817beef8e1
BLAKE2b-256 ea9e9f44a58c8025efeac0764601ac98343f93944b079a7b0ab82866a45b9264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bae004a0b978bf62e38d0eef5ab9156f8101d01167b3ca7054bd0994b773e917
MD5 391f2d7631b84909ab3f8ea618116840
BLAKE2b-256 2fdacbd9f380b51bc41ddb86610f9f81ff5d0749c9d98ab1cb070be755620ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac15e7e1efca51b4695e540c80c328accb352c9608da7c2df82d1fa1a3c539ef
MD5 91d53c3a2ee730b5a54a5adb6736f942
BLAKE2b-256 7610120f19cb077d56c9c42f022fe088c98147f29d6a0314b93fa6555ee66fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e0f444d9062f7e487ef42bab2fb2e290f1704afcbca48ad3ec23de63eef0fda
MD5 13b185564143ef1855e604cb2c4edd29
BLAKE2b-256 28bd07e460ef3d31bfe18b1530895959bd69ff418850bf6e75d0997a3abbec15

See more details on using hashes here.

File details

Details for the file hiredis-2.2.2-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.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20cfbc469400669a5999aa34ccba3872a1e34490ec3d5c84e8c0752c27977b7c
MD5 0f55492ecf18fcadee1498b931d54c2e
BLAKE2b-256 c67fef9ba025e087f0cc834097716add2ef90026199a54193d23b3648b65a997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f1c44242c18b1f02e6d1162f133d65d00e09cc10d9165dccc78662def72abc2
MD5 2f8093079660a06ddfba4d4d6545e9e8
BLAKE2b-256 15e093250debad74614a1dfcdc6764186fbf5d5c4bd9a2349e467d3b3e8beefc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f1f1efbe9cc29a3af39cf7eed27225f951aed3f48a1149c7fb74529fb5ab86d4
MD5 be5af1078147f1e62ebbb7d7e0c42ef1
BLAKE2b-256 75d76a8a174224f5429baf68ec40adae6670f94880c3f34b0d99c5e937ad398a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5155bc1710df8e21aa48c9b2f4d4e13e4987e1efff363a1ef9c84fae2cc6c145
MD5 a661a373f1bca0e5225c25f5c11f69c9
BLAKE2b-256 5e0da69a15da2531eec7228da2383cf09895c379e2a75417711168f9fa2ff24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a5fefac31c84143782ec1ebc323c04e733a6e4bfebcef9907a34e47a465e648
MD5 85e9764541c8340b3e5523bdbc725be6
BLAKE2b-256 ef6b1d2460eb6f451bfe85c5a27f30d0b393393535ccab3ca64495ad93395d73

See more details on using hashes here.

File details

Details for the file hiredis-2.2.2-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.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f220b71235d2deab1b4b22681c8aee444720d973b80f1b86a4e2a85f6bcf1e1
MD5 7f781ca7494b8be404b252e66ba16042
BLAKE2b-256 d873c26197cdd8d2171d30d2a19be8b8dd6e91883ced23812c6d5b2d25709704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-pp37-pypy37_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 632d79fd02b03e8d9fbaebbe40bfe34b920c5d0a9c0ef6270752e0db85208175
MD5 c4a3ce91ea39f9d4f1cef0ecc4e592ff
BLAKE2b-256 e2ab5eb5a1a63ca2d630ebd7d994d35d68ef7feab38eb8f65a8897e2673d5d41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e2f0ce3e8ab1314a52f562386220f6714fd24d7968a95528135ad04e88cc741
MD5 a315b6018d26971ab9cdb603b21b02b3
BLAKE2b-256 bb29802427773ee6ec0aa0995b1a0958c0d4bcea633441961bcf7f7e01fe01ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ed44b3c711cecde920f238ac35f70ac08744f2079b6369655856e43944464a72
MD5 b3f9f42034cb7fcb567bd3263c6050e1
BLAKE2b-256 28b9b119f445be152d624824672839ed5bbf3f09d7d29787697389492fdb1298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8bc89c7e33fecb083a199ade0131a34d20365a8c32239e218da57290987ca9a
MD5 35a5e648ebf09877bbd03851013955f3
BLAKE2b-256 d35faec4a9526bf1ca3cd22a2f14a488200b2d406bcef568a4f8be17dc293bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 03dfb4ab7a2136ce1be305592553f102e1bd91a96068ab2778e3252aed20d9bc
MD5 663184934a64c8d9647211032aaa576e
BLAKE2b-256 fdd604557a5964eeb3dec600583c4daee152f26066f1116c42d112c80ff20405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a9b306f4e870747eea8b008dcba2e9f1e4acd12b333a684bc1cc120e633a280e
MD5 94eb9746f4b73843e74f3ca70343b2c3
BLAKE2b-256 149538d9aed56fdc0a3f5238dda9773da7340215a68d3887c35fa4957bc7fcfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1eb39b34d15220095dc49ad1e1082580d35cd3b6d9741def52988b5075e4ff03
MD5 2ad8753e3440fe6fd1686f2358f6e400
BLAKE2b-256 45b0df09ed7d80323cff6385f097fda48f3cf27edaac580847f4cd663554408b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 75349f7c8f77eb0fd33ede4575d1e5b0a902a8176a436bf03293d7fec4bd3894
MD5 a4ca6182acdee65d08194a0d4e770631
BLAKE2b-256 0a26a7f87b8497708a1b23267d4257c89d3ca2b58772f3854900e2a51a656336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a355aff8dfa02ebfe67f0946dd706e490bddda9ea260afac9cdc43942310c53
MD5 e4988e04715ddd719d83be38707ec7c6
BLAKE2b-256 69192f81e11b4ea0712f09210edeef67d779ea160f0471de6179e98cbb2f8c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02b9f928dc6cd43ed0f0ffc1c75fb209fb180f004b7e2e19994805f998d247aa
MD5 4d46ce094b40ff0ce88d3ad10f96cfa6
BLAKE2b-256 061bade74d965ab4202bcd632d823dba74ac682df8b6f1c8b169142fa9afb395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c446a2007985ae49c2ecd946dd819dea72b931beb5f647ba08655a1a1e133fa8
MD5 35e7b20bebd387b29e6fcfbdef4d2278
BLAKE2b-256 03d625318939297352df38c2af88cb192d744b0971cbb5a19888db8551befec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10dc34854e9acfb3e7cc4157606e2efcb497b1c6fca07bd6c3be34ae5e413f13
MD5 6831093565b5c83953148e80a677891d
BLAKE2b-256 04fdf830390946897e1f9bb2502960ff04f707e1a775a3a1b760485ed5f232a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 831461abe5b63e73719621a5f31d8fc175528a05dc09d5a8aa8ef565d6deefa4
MD5 c6a6d7a337a3d93b534a671bc989099e
BLAKE2b-256 c106e8153c57db8eae2a6aa0bd209a73884c69cd3673dd71ad9ecc746dace1dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990916e8b0b4eedddef787e73549b562f8c9e73a7fea82f9b8ff517806774ad0
MD5 0df1418c242f9e66d9f3f2b32a2b5067
BLAKE2b-256 b891b2baf7d0c01a0da2e676667540b4077c1b925330d776ae3d0929f193de00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 544d52fde3a8dac7854673eac20deca05214758193c01926ffbb0d57c6bf4ffe
MD5 c834aa86c3a63c51c6fe10cee0722ec0
BLAKE2b-256 5b5b1aeda94625c3cf06903b9eb91342d06c34fbe41baaa9798007937b2c7654

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp311-cp311-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 688b9b7458b4f3f452fea6ed062c04fa1fd9a69d9223d95c6cb052581aba553b
MD5 6ce7a7aabcb57ff02fa5b7ec2bf694bd
BLAKE2b-256 9880e5cb09bfe8f3c52e8c4dfe3fac83c5bd1247201d3167b135c3c81774fb8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eaff526c2fed31c971b0fa338a25237ae5513550ef75d0b85b9420ec778cca45
MD5 d4e49be9043bec25ba7e6afcefbe2b1c
BLAKE2b-256 10093b1ba71548ccd3fe21c1b75263954c16ddb26c61a2655969ba6aad6d00e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 55c7e9a9e05f8c0555bfba5c16d98492f8b6db650e56d0c35cc28aeabfc86020
MD5 810a770c50ab38bb36851b5043fd94e4
BLAKE2b-256 279fbd43e0e9e4d70b19b94022ff1e4a6c6887306ab3c1ee88742a2882d12324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f2cfd323f83985f2bed6ed013107873275025af270485b7d04c338bfb47bd14
MD5 160ce601e068ad82a9fa41a7a09ed5e5
BLAKE2b-256 429785eb92d46f90cbb30981ccb4dbf70d76222d76134a06529a7af1fddd8057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 0fc1f9a9791d028b2b8afa318ccff734c7fc8861d37a04ca9b3d27c9b05f9718
MD5 e70408114f9b6c9c46fac9a32aa7b5c6
BLAKE2b-256 1059ca63c041288e00b87f008ff985a8ccb219c60792e2feb189c2352e192489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8c3a6998f6f88d7ca4d082fd26525074df13162b274d7c64034784b6fdc56666
MD5 567af91470ca79437082e94276c82064
BLAKE2b-256 f4f1d17eebf927c2aed72204fa8cd008778b9f991f5020342500b02e243b7543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2c18b00a382546e19bcda8b83dcca5b6e0dbc238d235723434405f48a18e8f77
MD5 fcc61cd5e8719599e29618d4def1334c
BLAKE2b-256 ba2cb230ace19233bbc7ab9c9cfb209371bd7f07c6309d6e642e84080c9bbd35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9873898e26e50cd41415e9d1ea128bfdb60eb26abb4f5be28a4500fd7834dc0c
MD5 8c2fcb7ee2f577f07f1ae118aecd1604
BLAKE2b-256 fd55c3bf6152a68e18d7c7f11c0a165e44f0a38cc00a7f55cbf7db20be284b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cb992e3f9753c5a0c637f333c2010d1ad702aebf2d730ee4d484f32b19bae97
MD5 c051e4b91e7bb0f9ac393685b73cd2ef
BLAKE2b-256 f2520c23aa1839b484bb8e5536259442b524ea8097446f5a01ffe3a357343935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dac177a6ab8b4eb4d5e74978c29eef7cc9eef14086f814cb3893f7465578044
MD5 766ffd9f85a41438385a3a47b22cd6e0
BLAKE2b-256 1a8ac5376cebf262760e616c5d33e40cbdb926b71a42052b7f24740c8cddabe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01e2e588392b5fdcc3a6aa0eb62a2eb2a142f829082fa4c3354228029d3aa1ce
MD5 e1567c8160cf0edf8fa747b250ec708a
BLAKE2b-256 4edda11765c03aa8fe38007ffde72dfeb2d08b9688b04c113aacc49ea8e11a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa90a5ee7a7f30c3d72d3513914b8f51f953a71b8cbd52a241b6db6685e55645
MD5 95f34a86bb3ade08d33a9a0837c0db2f
BLAKE2b-256 8e13d7859cd83255c5026e0cc6c4d1053c0e7899300b8055b32e8e4d88d03c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e61c22fda5fc25d31bbced24a8322d33c5cb8cad9ba698634c16edb5b3e79a91
MD5 a07ae54757ddab9fd84b64ec794106b6
BLAKE2b-256 fce58dd253af9815976230b1dc4bd4a23e865d6c1056f02a1541526e30979866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82f869ca44bcafa37cd71cfa1429648fa354d6021dcd72f03a2f66bcb339c546
MD5 74a8a0d3a59089adada02b0f310b55ed
BLAKE2b-256 de8b47a3d28b87edbb9869b80b3c86008a0f84c0bc011a1c84f56ba3ca684f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d995846acc8e3339fb7833cd19bf6f3946ff5157c8488a4df9c51cd119a36870
MD5 5b5eb0c9abb210bc6876bf19bf02b241
BLAKE2b-256 4b362bb8807102a3555d191e348e9ab92b32003ce4850f0a26b5f635b64d2271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp310-cp310-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ba6123ff137275e2f4c31fc74b93813fcbb79160d43f5357163e09638c7743de
MD5 d8a1fd04b41c119535b31aaf4f000cc7
BLAKE2b-256 4dfbbf411ee13676ff8a19f03551c016e7010dc4f5256dc6a24824fd833ee88b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8d43a7bba66a800279e33229a206861be09c279e261eaa8db4824e59465f4848
MD5 25b9df794ac7f2412808085c0828169e
BLAKE2b-256 2d02d3fd8b9af718e8f1f7079383221d1e328d8c68ae5d0e374bdfc16a317af7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e97d4e650b8d933a1229f341db92b610fc52b8d752490235977b63b81fbbc2cb
MD5 cc89bfbf9fdda01f99cf45908147d094
BLAKE2b-256 2ff70b7d79622b6274531d06f59c9ec56b434eccfe0e0cddc96c3a9c1ebde722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57f73aa04d0b70ff436fb35fa7ea2b796aa7addbd7ebb8d1aa1f3d1b3e4439f1
MD5 ddc5d238fa439fac3aaa17bd3fd27a13
BLAKE2b-256 497b9949516b9dcce62e98f62f1543818a8c54311de933c51656a0a60441e06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 339af17bb9817f8acb127247c79a99cad63db6738c0fb2aec9fa3d4f35d2a250
MD5 1732dd8f516ff26feb114e89a555e3f4
BLAKE2b-256 3900e52b3b80cbf42dfc5a13c67fd8e0bd279dc4eb722dc5ad65200d3db360e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ccc33d87866d213f84f857a98f69c13f94fbf99a3304e328869890c9e49c8d65
MD5 222ce43c12d1238eddd7fdb2467a8f3b
BLAKE2b-256 7f980e4f0b4a49a5b31781d128f849446fccc28c03ec0cd8b0dcd27977a2102c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 855d258e7f1aee3d7fbd5b1dc87790b1b5016e23d369a97b934a25ae7bc0171f
MD5 ec54ede148473e0dc94a4f722ab338f5
BLAKE2b-256 6aff58415ba8d1a6bcb7440707c5b3598ffdad8a53cec011724dd7f0f787eb5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 03ab760fc96e0c5d36226eb727f30645bf6a53c97f14bfc0a4d0401bfc9b8af7
MD5 c5ca079563bab45e49952e537b738887
BLAKE2b-256 8f1900c9104fbc3a6b0aed8df65e5abd209528aa732fab3d0fd9b18c70caf3a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c73aa295c5369135247ff63aa1fbb116067485d0506cd787cc0c868e72bbee55
MD5 38656c0a544ba526401548991c38cb40
BLAKE2b-256 34c3889743f90b1293bb5160f55bdd2702135d2bca0516cf3667c5391d2bf19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e86c800c6941698777fc58419216a66a7f76504f1cea72381d2ee206888e964d
MD5 b2d853bb629aae7138928642125d3acb
BLAKE2b-256 8bf335aedebe8e5bfd0638c7a0f4cf96cc3a377c4408c6f3a27a972b2a6dc927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a32a4474f7a4abdea954f3365608edee3f90f1de9fa05b81d214d4cad04c718a
MD5 1f7632caf61464f62394a26f110e9cd5
BLAKE2b-256 9bbcb876cedcba70113df66afd22ff165837a55162855f1eae6b58691686dc6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 449e18506d22af40977abd0f5a8979f57f88d4562fe591478a3438d76a15133d
MD5 06e919e71e7bd554a2ab3f3575afd900
BLAKE2b-256 22aab433cf6e83bc75e2c09d70086c0f618af234d0c10e9a2e43ef2a036a1e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e10a66680023bd5c5a3d605dae0844e3dde60eac5b79e39f51395a2aceaf634
MD5 6d86040ea213dfdf8abd1359474e93cf
BLAKE2b-256 dd3ba082c4f86530ddcb5a301de2356b88dbd716881d5711411c8588a3a552b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4997f55e1208af95a8fbd0fa187b04c672fcec8f66e49b9ab7fcc45cc1657dc4
MD5 79651f2a78cdab5ddec61e81582e749b
BLAKE2b-256 0e02b09e29f6b9cc0b58765ea963a45a6958e06335ffd73d48a82640a2a7181f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1acb7c957e5343303b3862947df3232dc7395da320b3b9ae076dfaa56ad59dc
MD5 c2a3ba561516c55a8c9d767880c217ea
BLAKE2b-256 5024791c9ef769669f63c114f4cd2f33bea4415c72c4d118edee9fdc22890fe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp39-cp39-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 18103090b8eda9c529830e26594e88b0b1472055785f3ed29b8adc694d03862a
MD5 397e82d502e8acb743e0cb10f746760f
BLAKE2b-256 bca7961ef434b1365b273f37213ace6a0425bd606cd7c15564948ae1d804120b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b11960237a3025bf248135e5b497dc4923e83d137eb798fbfe78b40d57c4b156
MD5 78dab858c460519a3dfd97daa5648431
BLAKE2b-256 4e1e73f568ba6437f9a4e5e167a00ceb7dfad2cafe93d17aacde7998ee645012

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 20ecbf87aac4f0f33f9c55ae15cb73b485d256c57518c590b7d0c9c152150632
MD5 0e67733b917db743344d259575bc64d8
BLAKE2b-256 5def5f7e140e1c3e0a9684a9b29470ef553b39ccd7d5439fe6734c683b9f22ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 674f296c3c89cb53f97aa9ba2508d3f360ad481b9e0c0e3a59b342a15192adaf
MD5 505991b829abea804e35bc103cdadded
BLAKE2b-256 e99eb1af1aabb8341a77f640bec00607e757d8f92a50c73e4e858de5f9f62228

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 8e16dc949cc2e9c5fbcd08de05b5fb61b89ff65738d772863c5c96248628830e
MD5 3caa538dfb28072f834c81225a722bfb
BLAKE2b-256 ae3f4e3b09bb1f636b1d6e3b9ac91615751d6f30efbb4528f634e9872035737a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 b083a69e158138ffa95740ff6984d328259387b5596908021b3ccb946469ff66
MD5 83b4863bc9c8d57809f4827d9bbc28f4
BLAKE2b-256 109fc8da4c21ddb5da82dd5fae6157d80463c5296282f6e580a336ea00e66a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 24301ca2bf9b2f843b4c3015c90f161798fa3bbc5b95fd494785751b137dbbe2
MD5 2d646b168457b1f63b31a7dc04de55de
BLAKE2b-256 944fe43f38d7e3da355d412eb875ba6d27c2c6511f04b2a6521ce085dbc43f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2ddc573809ca4374da1b24b48604f34f3d5f0911fcccfb1c403ff8d8ca31c232
MD5 0556c32559f4a3c2621f644376c25bd8
BLAKE2b-256 85ffafcf0b703e3da4d9dc733783b0c4d6c73747ecdf459322f4901683ca0b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ab1d545794bb0e09f3b1e2c8b3adcfacd84f6f2d402bfdcd441a98c0e9643c
MD5 5838844f42b14ed85a975413f9c41dcc
BLAKE2b-256 73103a57791b8e72cb752b7d8f41d3c0c094164c093daccf1f9e26dd46d5a471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ee9fe7cef505e8d925c70bebcc16bfab12aa7af922f948346baffd4730f7b00
MD5 21c807000841f5907e62031d2b417a98
BLAKE2b-256 145b9d6f8a1b0bade3193f6b92890f54543ec3207c5308c049c6d0a6f609accb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c24d856e13c02bd9d28a189e47be70cbba6f2c2a4bd85a8cc98819db9e7e3e06
MD5 f0d04b79b9a2967b51ff694272707dec
BLAKE2b-256 2bcdc30d8d0d9de33e14d8efdf85599285928f175ae3cfd29cb5d33adef4e67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40ff3f1ec3a4046732e9e41df08dcb1a559847196755d295d43e32528aae39e6
MD5 b5847f6e3977bbbcee221428cfc0a655
BLAKE2b-256 4cdc85e82922b76be684e5e30aa1efdaf878852b03cbff3039d6a575ff0e91a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14dfccf4696d75395c587a5dafafb4f7aa0a5d55309341d10bc2e7f1eaa20771
MD5 8004a5052023951a1a1f615a4e8c3d83
BLAKE2b-256 b4ea5142e2609c7adcbc30f19f57aca855905946d1fcad3b238562d750a38737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a06d0dd84f10be6b15a92edbca2490b64917280f66d8267c63de99b6550308ad
MD5 4cde6fdaf8ec2744ae9525d5d9bd119a
BLAKE2b-256 95585f04f8ad7dbc2a71ae6e9e8a884a7530959a821ba0ad67649b41420a7fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8753c561b37cccbda7264c9b4486e206a6318c18377cd647beb3aa41a15a6beb
MD5 425a06775f6eab24d2c0f055dc227ef6
BLAKE2b-256 3a7e9a1c6aa18d388b36e636694e58b13121f476fbd7efb778a22500358919b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp38-cp38-macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 1570fe4f93bc1ea487fb566f2b863fd0ed146f643a4ea31e4e07036db9e0c7f8
MD5 e251bca9aba3920f46ec96b3d586a63d
BLAKE2b-256 f00aa08f78a8e9f8020e567f8051a041fab1395d52df7378c4e8f8995f578d3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c9488ffb10acc6b121c498875278b0a6715d193742dc92d21a281712169ac06d
MD5 86e44ccbc2d56cc3983518d711c1ecca
BLAKE2b-256 8b7b606f5fa1e1af041f49cc6c77cc58b67bd158c3279524ba5965927fd9980c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.2.2-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.2

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fd0ca35e2cf44866137cbb5ae7e439fab18a0b0e0e1cf51d45137622d59ec012
MD5 5d505f6b6f711cdc94c3786df1ce2684
BLAKE2b-256 a6297305417e7ce1f8fd1e9e9cacc3d05233f81c98bb7620a2de1665387c2020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 359e662324318baadb768d3c4ade8c4bdcfbb313570eb01e15d75dc5db781815
MD5 d1e135fd9aa0502235f37ddb9ced9a60
BLAKE2b-256 3a405581bd8b91dbef57bd5e10343ca72c684db16e214d27845301b8d5a9aaf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ac7f8d68826f95a3652e44b0c12bfa74d3aa6531d47d5dbe6a2fbfc7979bc20f
MD5 eb73aba934e3e2323a6dc71046d729a1
BLAKE2b-256 35eeab376c2aeb7e8be91ce662dc9fa69d497bdcc3d0d1fb9c85bbce3a1fbe04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e4e2da61a04251121cb551f569c3250e6e27e95f2a80f8351c36822eda1f5d2b
MD5 6d3bc2baa67ae550217aa84dde269454
BLAKE2b-256 c6c2f6f75d2c47782a8973846ed9209fcf9b19694888737e9da1bfc0a9303265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c95be6f20377d5995ef41a98314542e194d2dc9c2579d8f130a1aea78d48fd42
MD5 c7af2c8aa1ad7d60357d8834b8924f5a
BLAKE2b-256 2503296ee714a728a51f11de9da853f6a24ab0334fbb441eb106830b8eb6ab2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5d290f3d8f7a05c4adbe6c355055b87c7081bfa1eccd1ae5491216307ee5f53
MD5 6260713cb4dc99e9a8f5da86634eaf93
BLAKE2b-256 1fa75947a62c578a083c980b7c8bdb4a70e501612c725b399270a8af09223b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3645590b9234cafd21c8ecfbf252ad9aa1d67629f4bdc98ba3627f48f8f7b5aa
MD5 65f188cf40af4d0c79a853bc7ea455dd
BLAKE2b-256 44b5be4619c31255ab0d7e111722920a9a0fd9dedf1d955ab878903830ace12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a89f5afb9827eab07b9c8c585cd4dc95e5232c727508ae2c935d09531abe9e33
MD5 d579a5c898ae0c5dad232a5356bd328a
BLAKE2b-256 20126b3a9fa92e0b10cc21958956b9d9467beea3ee16434583b487af503081ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4ec57886f20f4298537cb1ab9dbda98594fb8d7c724c5fbf9a4b55329fd4a63
MD5 5ec3dc944b5b8e606a7c7db43e9987f7
BLAKE2b-256 a8d1dc1c055a5091f3553a51b06d8c2fe05bc7d792f733a5441975effc27d2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9eb14339e399554bb436cc4628e8aaa3943adf7afcf34aba4cbd1e3e6b9ec7ec
MD5 90455f632239a14c6b1ca29878497c4c
BLAKE2b-256 c129396295e7ccecca604cb94b42745af31b397724952589964d20814371a06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99350e89f52186146938bdba0b9c6cd68802c20346707d6ca8366f2d69d89b2f
MD5 295b49f1c1a6c82dbb87aa3d7df8fe90
BLAKE2b-256 2455ee9c4481ca7f539cf53a64f655aa558a6e6d073481e0e10781e055232aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for hiredis-2.2.2-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7e61ab75b851aac2d6bc634d03738a242a6ef255a44178437b427c5ebac0a87
MD5 39d564f7fb1947cb55a5d0369e67f8f9
BLAKE2b-256 64cfdec83e9fb9c9897cf582a36a182af4a45976043d717ac5e51d667daa0bd2

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