Skip to main content

Python wrapper for hiredis

Project description

hiredis-py

Build Status Windows Build Status

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 with:

pip install hiredis

Requirements

hiredis-py requires Python 3.6+.

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:

>>> 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']

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.0.0.tar.gz (75.8 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.0.0-pp37-pypy37_pp73-win32.whl (17.3 kB view details)

Uploaded PyPyWindows x86

hiredis-2.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl (26.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

hiredis-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (22.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

hiredis-2.0.0-pp36-pypy36_pp73-win32.whl (17.3 kB view details)

Uploaded PyPyWindows x86

hiredis-2.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (26.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

hiredis-2.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl (22.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

hiredis-2.0.0-cp39-cp39-win_amd64.whl (18.9 kB view details)

Uploaded CPython 3.9Windows x86-64

hiredis-2.0.0-cp39-cp39-win32.whl (17.3 kB view details)

Uploaded CPython 3.9Windows x86

hiredis-2.0.0-cp39-cp39-manylinux2014_aarch64.whl (86.8 kB view details)

Uploaded CPython 3.9

hiredis-2.0.0-cp39-cp39-manylinux2010_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

hiredis-2.0.0-cp39-cp39-manylinux2010_i686.whl (84.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

hiredis-2.0.0-cp39-cp39-manylinux1_x86_64.whl (85.4 kB view details)

Uploaded CPython 3.9

hiredis-2.0.0-cp39-cp39-manylinux1_i686.whl (84.2 kB view details)

Uploaded CPython 3.9

hiredis-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (24.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

hiredis-2.0.0-cp38-cp38-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-2.0.0-cp38-cp38-win32.whl (17.3 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-2.0.0-cp38-cp38-manylinux2014_aarch64.whl (87.3 kB view details)

Uploaded CPython 3.8

hiredis-2.0.0-cp38-cp38-manylinux2010_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

hiredis-2.0.0-cp38-cp38-manylinux2010_i686.whl (84.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

hiredis-2.0.0-cp38-cp38-manylinux1_x86_64.whl (85.6 kB view details)

Uploaded CPython 3.8

hiredis-2.0.0-cp38-cp38-manylinux1_i686.whl (84.4 kB view details)

Uploaded CPython 3.8

hiredis-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (24.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

hiredis-2.0.0-cp37-cp37m-win_amd64.whl (18.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-2.0.0-cp37-cp37m-win32.whl (17.2 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl (86.1 kB view details)

Uploaded CPython 3.7m

hiredis-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl (85.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

hiredis-2.0.0-cp37-cp37m-manylinux2010_i686.whl (83.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

hiredis-2.0.0-cp37-cp37m-manylinux1_x86_64.whl (85.2 kB view details)

Uploaded CPython 3.7m

hiredis-2.0.0-cp37-cp37m-manylinux1_i686.whl (83.8 kB view details)

Uploaded CPython 3.7m

hiredis-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (24.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

hiredis-2.0.0-cp36-cp36m-win_amd64.whl (18.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

hiredis-2.0.0-cp36-cp36m-win32.whl (17.2 kB view details)

Uploaded CPython 3.6mWindows x86

hiredis-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl (85.0 kB view details)

Uploaded CPython 3.6m

hiredis-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

hiredis-2.0.0-cp36-cp36m-manylinux2010_i686.whl (82.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

hiredis-2.0.0-cp36-cp36m-manylinux1_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.6m

hiredis-2.0.0-cp36-cp36m-manylinux1_i686.whl (82.9 kB view details)

Uploaded CPython 3.6m

hiredis-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl (24.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: hiredis-2.0.0.tar.gz
  • Upload date:
  • Size: 75.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.12

File hashes

Hashes for hiredis-2.0.0.tar.gz
Algorithm Hash digest
SHA256 81d6d8e39695f2c37954d1011c0480ef7cf444d4e3ae24bc5e89ee5de360139a
MD5 0ab76a8b29deb737c9bfc7f631969e38
BLAKE2b-256 0c39eae11344d69ba435ec13d6bcc1a9eea3d2278324506fcd0e52d1ed8958c8

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp37-pypy37_pp73-win32.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 f52010e0a44e3d8530437e7da38d11fb822acfb0d5b12e9cd5ba655509937ca0
MD5 dfb3323e71d5c62e63552050ae2a9ca2
BLAKE2b-256 0a8b2f0f496b884063f28e85f85627150918835c194b324cba80836e5341d453

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cb2126603091902767d96bcb74093bd8b14982f41809f85c9b96e519c7e1dc41
MD5 2175bac577c09a61534c167dfa7a4414
BLAKE2b-256 79a9d06d9833a0fe6fbe6238e08b35a99a8e0af1670e264363b5779b5200260a

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp37-pypy37_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1233e303645f468e399ec906b6b48ab7cd8391aae2d08daadbb5cad6ace4bd87
MD5 f1c32e0b773c6c843d395ea769a0650b
BLAKE2b-256 11cf84ecdd027bfcb050e0bdb08363868d4dfd0d4b8e84e60b40fbc5c7a98d07

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for hiredis-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 807b3096205c7cec861c8803a6738e33ed86c9aae76cac0e19454245a6bbbc0a
MD5 1c9b9c709fa8bd12b288ea3e3cc5b7f8
BLAKE2b-256 4e3503939ebab6649e2f3eb0c5248040ea53082c9e25ae0b102d2c97480b9252

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 07bbf9bdcb82239f319b1f09e8ef4bdfaec50ed7d7ea51a56438f39193271163
MD5 18a8de44e494e6c735ea4265dd950b53
BLAKE2b-256 9cfaffc1fa18ad25dce78bf1928cd13deb779285a61581e3390a4eda0423b97d

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a39efc3ade8c1fb27c097fd112baf09d7fd70b8cb10ef1de4da6efbe066d381d
MD5 b1324bb98b88a4d65486909a3e12d110
BLAKE2b-256 85fc1212a52f0d6f289366bf45dbd5e40cbf7934d611d772df4c733e7b7b4ba5

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 26.9 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 04927a4c651a0e9ec11c68e4427d917e44ff101f761cd3b5bc76f86aaa431d27
MD5 c542c0163e218536e07deaffbf804e55
BLAKE2b-256 e0fc24307fa80501494ae8b4944bac509f038f14deed67db2d76e13673097f9a

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for hiredis-2.0.0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f03d4dadd595f7a69a75709bc81902673fa31964c75f93af74feac2f134cc54
MD5 fab5a78c2937d5d38e7687cda626fdaf
BLAKE2b-256 37b56f9e3b56830a7c37c5c1562858318f777275e5c9498f112d03639df2c5b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a4ee8000454ad4486fb9f28b0cab7fa1cd796fc36d639882d0b34109b5b3aec9
MD5 fd4f137b49c7862d3b22ed58910752c8
BLAKE2b-256 eeae9163ea3b43070eb58e46db9f4e7a2debb589b25938e1bc4674091d7afab6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a7928283143a401e72a4fad43ecc85b35c27ae699cf5d54d39e1e72d97460e1d
MD5 784eccebd089239b6b8bc1781f6275fd
BLAKE2b-256 08eb2032c4e1677275ade12cae0904c90d9f0ad2eb721b34f4085acbc2c1b0ce

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.12

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b39ec237459922c6544d071cdcf92cbb5bc6685a30e7c6d985d8a3e3a75326e
MD5 25c6bc834a209b5e58d154b5cacc2152
BLAKE2b-256 0073c931795e1da436956600c9fe7c3417a7ae680a1843036ff2551585de1db8

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b84f29971f0ad4adaee391c6364e6f780d5aae7e9226d41964b26b49376071d0
MD5 5f838af71b8d1aac400ca7cccfdf0905
BLAKE2b-256 396111087588e9b604bdc0178d7ee13bef1dec9a9cf5f6f2e2456f42716d7264

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8b42c0dc927b8d7c0eb59f97e6e34408e53bc489f9f90e66e568f329bff3e443
MD5 61e50f2e819b5b82ca7f77bc8d8e51b6
BLAKE2b-256 af0ce958e4f58eb77ccaec52a467ab82c2adef0bebde16a4cfd024bef507de53

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e3447d9e074abf0e3cd85aef8131e01ab93f9f0e86654db7ac8a3f73c63706ce
MD5 a8549117ba5d0649a619333f104006b9
BLAKE2b-256 d1c9b606acd4f5a5e49e7e635c68047ffa2d1c8b5256acff7d567da85d835a09

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f5f7e3a4ab824e3de1e1700f05ad76ee465f5f11f5db61c4b297ec29e692b2e
MD5 0120f140ab6490633bd6c49ff8ef1978
BLAKE2b-256 08976cc15b2371a1bba2e5d4a18890f0b181741c8d47d9a8c640ebc11a5f1196

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for hiredis-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae8427a5e9062ba66fc2c62fb19a72276cf12c780e8db2b0956ea909c48acff5
MD5 827ec0a74580d34964b4a60f450f7236
BLAKE2b-256 e083ecab5fd7d6a7995d19cfba74e9ad3acd876289038755056f9734998988a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 65d653df249a2f95673976e4e9dd7ce10de61cfc6e64fa7eeaa6891a9559c581
MD5 bff1b4ce45dcabc49c3d1f0db541c63b
BLAKE2b-256 4c48bc57d3b4047dd0d249577b4792c1b7043935cc41925e84a20d18f42005f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7492af15f71f75ee93d2a618ca53fea8be85e7b625e323315169977fae752426
MD5 a6fa9077aaefc650c251d119a2b2ebfd
BLAKE2b-256 4baaba2ce23c9f953092439abc5b795aae72e5c9e5ee43023461aab04d97fccd

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 87.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.12

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11d119507bb54e81f375e638225a2c057dda748f2b1deef05c2b1a5d42686048
MD5 43015efadc58c81897126ea09ea6127b
BLAKE2b-256 ae5fdcbe5f119641f6a2df99d5520b31b003599768bdd4911729d1ac2d016c5c

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7f0055f1809b911ab347a25d786deff5e10e9cf083c3c3fd2dd04e8612e8d9db
MD5 367c599467b5f8bed5dcc1d6b1a0a19e
BLAKE2b-256 85759f1305aee73bb3ffe9f0f992e520d307ddb72e1ff3fc656e2799f0a44580

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 84.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 87c7c10d186f1743a8fd6a971ab6525d60abd5d5d200f31e073cd5e94d7e7a9d
MD5 11c2a98c487c6e9823cecc9c699125a4
BLAKE2b-256 d620be0addd761a2f1ccd772c4900fa2c281af107b59ccfb519fe0794212da8f

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.6 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcef843f8de4e2ff5e35e96ec2a4abbdf403bd0f732ead127bd27e51f38ac298
MD5 cf575646026afa39c1a631da87e2416e
BLAKE2b-256 77f59c0b289fe1663c5511a915979d108bc302b671c0b4fcacd3ac7ee0bcebf6

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 84.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3dddf681284fe16d047d3ad37415b2e9ccdc6c8986c8062dbe51ab9a358b50a5
MD5 b093c38c69234a3ded85f1805ac85407
BLAKE2b-256 d127af30a56ea77120d72cabef1bb00e7e73c8158d49db4e9b3974a269add85b

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for hiredis-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 294a6697dfa41a8cba4c365dd3715abc54d29a86a40ec6405d677ca853307cfb
MD5 bd275bed6363455ef1b6baea7596b07f
BLAKE2b-256 e8d04fb9094b104d28814932d17b4a5b987e569753166e25ff7dc8e3e36af539

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f8196f739092a78e4f6b1b2172679ed3343c39c61a3e9d722ce6fcf1dac2824a
MD5 9430e4ee6e49486ca2bc7e2349c99e27
BLAKE2b-256 ff77fbe04e04047e542209a6c2fd787afcebb585419b1caa5609019705dc891c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 09004096e953d7ebd508cded79f6b21e05dff5d7361771f59269425108e703bc
MD5 2264135c31c53bccc048bc016ede0a97
BLAKE2b-256 6d153defee7099e70f3c356b7f984349b04d71b6b3e18b89c6e8922d0d43eaca

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 86.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.12

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a00514362df15af041cc06e97aebabf2895e0a7c42c83c21894be12b84402d79
MD5 b93d7f1735936bdcde840c29f0d8237b
BLAKE2b-256 bd021928f29a8e164e24762c3d1f362376e6b2e1a39307b31737c380b66de446

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 04026461eae67fdefa1949b7332e488224eac9e8f2b5c58c98b54d29af22093e
MD5 7b22a586dbbfdcd7df5ab545ba265f62
BLAKE2b-256 ed33290cea35b09c80b4634773ad5572a8030a87b5d39736719f698f521d2a13

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0d5109337e1db373a892fdcf78eb145ffb6bbd66bb51989ec36117b9f7f9b579
MD5 6018536612db785d3843650f2eb62d48
BLAKE2b-256 3a7937e662e2f5fb47d3d65603603f4939a3de55ae1074a72023b49ba7220653

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 508999bec4422e646b05c95c598b64bdbef1edf0d2b715450a078ba21b385bcc
MD5 33c72cb85d9b0824e42659dc5f19ec94
BLAKE2b-256 8e3163b1d19cd8aa4b16345fe7eedfd8a223d11b36ac0dc2d44931d2f3493918

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f41827028901814c709e744060843c77e78a3aca1e0d6875d2562372fcb405a
MD5 7f2f0377cd2d224fd5cb58337538e76b
BLAKE2b-256 0775bf109f8e1676bf926e5503fd9e3f101ebee661a2a1299e6b6e252e673296

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for hiredis-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 adf4dd19d8875ac147bf926c727215a0faf21490b22c053db464e0bf0deb0485
MD5 f020f91e1af8ab10ab4153906159d37b
BLAKE2b-256 5b20483193e04bf418ca8424bfb12d73f1818b84d2a9c3dde86dc293bd9fdd59

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c39c46d9e44447181cd502a35aad2bb178dbf1b1f86cf4db639d7b9614f837c6
MD5 03ca6192b6a4cca4b75fb34b9c414944
BLAKE2b-256 04fe1db811ccd7902e2206a1ea353dfd91e47f21ebf8d3e3000d9906c78790c6

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.0

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 139705ce59d94eef2ceae9fd2ad58710b02aee91e7fa0ccb485665ca0ecbec63
MD5 41104709eda63ab33fa7170a7fd86679
BLAKE2b-256 a3c9cad15c70e78930c136dddf4db77dcbf341f37fa4970550417051d084cc76

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 85.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.12

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dc7a94bb11096bc4bffd41a3c4f2b958257085c01522aa81140c68b8bf1630a
MD5 dcb2e015dae4e3e1dc246b70bc89b9dc
BLAKE2b-256 1b40ef6300f8348e36b98f531002d1c82348b1a9b4d1be084cf7acaf02eecf9a

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 240ce6dc19835971f38caf94b5738092cb1e641f8150a9ef9251b7825506cb05
MD5 59bbb236359d2cf23da9b89e559207dd
BLAKE2b-256 8272313fb6d30b7e413c8662447f9a0abe9105494ceb9266ecb08d442c14afbb

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5d2a48c80cf5a338d58aae3c16872f4d452345e18350143b3bf7216d33ba7b99
MD5 0e9957fbf601fc292afee115e9ec80e5
BLAKE2b-256 7b02b0262ef40a5d5617ae493f1b3b16d92b05bb495e70d1c1441556803f3985

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 84.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3d55e36715ff06cdc0ab62f9591607c4324297b6b6ce5b58cb9928b3defe30ea
MD5 78b23601b9fd021eee96dc69fbf57c64
BLAKE2b-256 10b0814712723cdc147a2795e018a78135b1b3dec329a8abf62183cf32399841

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 82.9 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.6.7

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0adea425b764a08270820531ec2218d0508f8ae15a448568109ffcae050fee26
MD5 0c7606ec4fa921d6d2aabeae423eac7a
BLAKE2b-256 c9f3a4848fba2b21851e545c8e0216864eed6b0e59cc263aa855d29df34a4a8c

See more details on using hashes here.

File details

Details for the file hiredis-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: hiredis-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 24.4 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.9.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for hiredis-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4c8b0bc5841e578d5fb32a16e0c305359b987b850a06964bd5a62739d688048
MD5 7c195efb19490031d86d44049b6c3353
BLAKE2b-256 867601393b762651ad2a2087b4231f82713e655af0ae69b02023a81111f7bc56

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