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.dev0.tar.gz (80.0 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.dev0-pp37-pypy37_pp73-win32.whl (17.4 kB view details)

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86

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

Uploaded PyPymanylinux: glibc 2.12+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9

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

Uploaded CPython 3.9

hiredis-2.0.0.dev0-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.dev0-cp38-cp38-win_amd64.whl (19.0 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

hiredis-2.0.0.dev0-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.dev0-cp37-cp37m-win_amd64.whl (18.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

hiredis-2.0.0.dev0-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.dev0-cp36-cp36m-win_amd64.whl (18.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

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

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

hiredis-2.0.0.dev0-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.dev0.tar.gz.

File metadata

  • Download URL: hiredis-2.0.0.dev0.tar.gz
  • Upload date:
  • Size: 80.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0.tar.gz
Algorithm Hash digest
SHA256 32797ec33240d8c29ec8b96759ae69cf0a36b02564ee47f297c95bc6a6b09e33
MD5 0dfa3829076650ec21ec176903f9380b
BLAKE2b-256 244d404526ef79b397900aee60f83e0c7f3d8d4740758b29f086db3d2d1f2409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp37-pypy37_pp73-win32.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp37-pypy37_pp73-win32.whl
Algorithm Hash digest
SHA256 ed9b5f6ec51e7e6377376c40db35288207f8ffd6994c85576254d33a37a75830
MD5 c240461238255e26393d5d3e52ba29f5
BLAKE2b-256 b07c64d561f2cea1e1a512735873552e2a25a7fc24abcfbcc663fd6a5e64b52c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp37-pypy37_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b819c4bac7a84cedd27e446f5a3f93bbb09c3ec764826faecc1a9cdf8ee691b7
MD5 f7aebab235110ce7718c76491aaabc28
BLAKE2b-256 86066b2ed768a642cfacbc57161b9422c21d19fdc706847277850212332f46e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp37-pypy37_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp37-pypy37_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 446bdd0f9c24322bc20d263176a44c3d49ed276b515ed1f6cc81de9c562023a4
MD5 8ac20ded239836dec74419a5edea680a
BLAKE2b-256 3e665232ebf9e7e9419f65d2740d6123c561aca661e8e221930dc4b4a8801b78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13e971cb03b0734976fe3c9b5db0ad68526ff05cff69878f9b1735e987df2fb5
MD5 ba17dddaeb47e3221f31e4a460533850
BLAKE2b-256 e4fb4ad0dfda41471dd23a3007dccf769e38b72821d51b2ff74449c131da3fe9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 a1fa7a85bb3c241d22a41cd98cf04bdf8b880e06dd41d454ce30a16973183c7b
MD5 64e638435169ef94fecc1e27a3c7f99c
BLAKE2b-256 8ab37204c691592cfc14a35ce9f1b8f576bfaf73faed9cbef06e4482d01aa65e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 917b22f6f6698c5d459f78d3e34ba783963c7948bc1b3077fd3bbc59f5870fb7
MD5 946df99e6455c6c5e0ab1aaff3ebfc2a
BLAKE2b-256 982f2f87f783aaf7a2363e50d23de2e47337ca5e1520058b49d8990648c6c84b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c257e59e4f0a6b83906ca5ff02df7f00bc82c69f2126a7af9b2071d34474831f
MD5 448ac41dc90d43dd5c88164b9e67a102
BLAKE2b-256 22219bae5f354853e199b648018a63cded0cf752d61e443f8044c9e845289770

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 22.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-pp36-pypy36_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bdad66c561acf8ab77205406368696e460ee4b216ab7b89a5e63bbbd5439217
MD5 caf65849d59daa88e9b8f8cf730d9a03
BLAKE2b-256 e56ba2c400e885c9c8d67e7b12e4a7260ed5f76cbe2696b87e77133888809a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ad8eac87a57f626abfc28297a5b6412283a883eb3b1bb871ce91c6840201f2da
MD5 d623dd314b31f315e0f2ab76afc24e4c
BLAKE2b-256 f510703e6b8ee1d7d5361d42f52506fe3ec921f06315be2033178148cd6de234

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22ba124e41d9d499fe928978157899a24c67d74b5e74e927a17a610d23e33c0a
MD5 810a15294bd75911b8eddd37a91ec2e3
BLAKE2b-256 01e61f66ca66a5e3d068da54d3ce1811714d3fbcbd4b524a9a09375706d80047

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0aaa2981902a2bbeac8027c49bc0ed5203d42d59121646b3de3882476b9d4be
MD5 5e6a34ed82914d2d963a361921ae219d
BLAKE2b-256 88a8944704d3d7db25b6e97e39fdad7922d9c14e9ca6ab18c40cae25cd843534

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 18d3b9a1d9fca0be5a682b6d18acc47e784cf9b7c4e40da85b6ddf23302f6680
MD5 2e065d0db62885853f172b81d5291ba0
BLAKE2b-256 25aec5db6e992c0b13252cd74265a321d7c8b054e402145ad460e0af1dd22e24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f85729be6de1b4422289bb669437e8709a6d22aeb878c0508bcd9a70e4210948
MD5 9c9445940e140a11143d30a79d0ccdb1
BLAKE2b-256 d598e516905abdade8e8e0f9598431c1fd1e7ba18881bdfdaa987d30cc3d078c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9802a037246dfe66d3314fa9ee5547a2feae4ee020ea7235cac01858c3a60e3a
MD5 393265ba135ddbb6de3c597da6f2b4b2
BLAKE2b-256 cd2d56beb290cf16e178134d772b397a7593e45aa652adfa4a4e266bb2925940

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d27e4c6301e356c9f64189020da783b00d29cf4ad3ef20d50edef936470783f
MD5 e319c7dbdedb8d3771c3eb5aa666a85b
BLAKE2b-256 afcc1c35250693a7fb950a5c4dccf55d6f1966b311fd33893e511e49cf1b1480

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c059b5d379e9c9d11a23f252399ea350ac29a149d2461af16e6421267799c690
MD5 753a548ce7fc46e15e3e4222f61f4155
BLAKE2b-256 34c098caab79c823b7ecf6b6cec6154a84000fd1656176f09a0ac840eee63f42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ce729a1d3335573c0942af1602380117211bf83332e0d0300152dce6aac44958
MD5 70408a19b4e29e27ce6afacabcd6f8b6
BLAKE2b-256 13667f7eb1e66ea60e1a7f1a8f0aa87dd113b1ace3d466f4a87f35d5d65679a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 59e461e0f522967c2a9c847f6e09e4093deac7298ca3198fa5030d7cbabea1ce
MD5 54692a4e7294a1434d3b5c6670ab2945
BLAKE2b-256 12e33b5b2a8d05453950fe2ac3e2675303d92ab9239a118bd053a347fba65b6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 87.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72217f9d11565b6409fdb0b8c6a2883fe1c1fc110ff4e1175143f6fea0d135c0
MD5 e35196ba1a892fa700c4faafd3f8ac54
BLAKE2b-256 93290dd24a9f459895196fcebb9beab053ecdba1e747ac7104431e92cf40bcc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 85.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 98f932633348781c69d88017c15e795965213bf5fda8a31d261193742aaf08ae
MD5 586d90791d74a3757f24a1a1e79eb38c
BLAKE2b-256 1c99416208383c0fe06d402646cc751f5219191f3dbdf0bee989875af6aa93fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7a620ab533800d66919607047aee3470d56b0bdf2ccecad4a1955fc406d6f749
MD5 020e918bf48227ca256abc8926c9ad5e
BLAKE2b-256 de355dfd48711e04b709d4fdfe2289c85ed241871e2628664e556fc71ed3cace

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 85.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1ea73218f383c2f0f360c79bc83266526069e9829a654b82fa3db2be2f15b493
MD5 debdb53d8e6368a89c96f64f58f407c9
BLAKE2b-256 5c77bbd1645709f6b95f1b20066feb8d42f5063f23f1b466634ce03272365ac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 571bfcaa4a65397c39587bf74a1ca3a254619f74a8dbc18d546f6b6fbc8d84c3
MD5 5bcd21789395874a745ecd00181c5ffc
BLAKE2b-256 d6ea779b5cb85a0c6ba05379b8831ab2393464b334a9204338c9d1dab9c9b9df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c263a0c0a6411c59021293f119ac1feeb66cd13caf2c98dd1fa223ac1f52121
MD5 ecdc34ce0afa011790d871242ec64227
BLAKE2b-256 7615fac0e5d80d2787781000c6e7e5989350e4c64714e06d654fec61367d9987

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 93d12fed04784447d59d0442a4121363ef91e4ccbbabc393e0b1261bdaa104d6
MD5 d0ccacf4c774b0d734f7966b8f455c53
BLAKE2b-256 756165147a8df9585a5cd1dd46c5b953e9b3e04f22847ddd366bca5ec3acb181

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 04b7188cc86e8a8be11b1262251f68a781706de5a3f1eaec3b889539e467d26f
MD5 1767936f4996a8b6ddb1ea39759ee299
BLAKE2b-256 61de3269ad808001707fe53e910beae99e08bb7bee6f50f9897a4a27b25153f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 86.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50b879f3a1fa429a93fc2d6a8238fc998698f54fcce52dce17d7eb79df76ac0f
MD5 130360ad4195c54ce8cbf6eb4e4854d8
BLAKE2b-256 7dded5cb618d6b9c84af06f8810e75268579f89c3e941c575ac32abb26aad9d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2daf0e42e963ed2925f9fb2ae858837a1be5c5334a71c59dbc49c65b3ddaf81f
MD5 808175e6578f954f1180db55f79c35b4
BLAKE2b-256 a0971850b11cc4a9d9b379e80711dc22ea164a0550463e8083428b3958f5a9b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 83.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 76ce6b4de6fe0fd911e3142ae70c915700316aa98755d3abfc4010b5b51e7d2d
MD5 3ba9f7b53c86dbc76ccfa60ac242e71e
BLAKE2b-256 af305dd7310a1128a7fa0c3c3a93b9c0d283c49955450e81e89f8d99285736f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 86ed13f19ef6628c03d1f68c9cec8f37e5597743fb8021f87d386e9bf2e34898
MD5 15420596adbb5c787ba83d43ea494ca2
BLAKE2b-256 186b676c5161f6dbb8a3a57010b21efb0c719a4fb53feac0ad1a572be38b3944

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 83.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 41848b7a6dd750b623ed4d0fbd864bfe2bd6f37fb539c37ce53acb22092138c7
MD5 f7ddaaf490f9d0d8523ae46521e9d896
BLAKE2b-256 1055b48b0058d970c9cc1f6d485ec53b71a5559784794be8cd5ddaca28c97032

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c349b3cb8ee4d8e014f6525a5a591cb209d3a13191d065ef3e5ab2ec8f5f4c57
MD5 0f645a506ea7932477604c3b43987e3b
BLAKE2b-256 d5bc9ec810b7ade0dc6e6be9e609c6a2d45a7a2ab0edfd0bc5e27ac760fc06db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b8675d7c13f98ccaad7263bbb76f50e7df62bdff20b7516991b00afd31d0a0b1
MD5 1e4e13ef0857731824f1717d2928959f
BLAKE2b-256 991975a8463d5715639d22e524a8861cabfbb967875df5d1a47565ef6c37c7ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ff5eb40db7f6bb3c68798dd7a40e9146b4e72d36e74a91cdb1b6a3464afbd884
MD5 6d75f2d9e2177057c4abcdba16c1ef3f
BLAKE2b-256 f06e8b361522d13811227f8673120b1a538aee544f5de6bf5646cdae3d5b2f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 85.1 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3dd6391403cb3ca07898421c07c5fbb95250c111affab33593327abef626c26b
MD5 b4b9ecf824688c5e4b441b4a16f94a0b
BLAKE2b-256 e0e22cec0ee461037cda5b3b554280d3f9a46be92558801eb7766fdb8014bbbb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b6925696ccae01d708bcff05681fe9d16cea5a8ba9391ed02213287fd4bffbb
MD5 a60b521f7c680ecf7962a3a9a18f3952
BLAKE2b-256 0061d2537d41ff8d964eb837cef817c90474a0da0d63b801878b79b68db9be2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 83.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9b6a8b6d8b4e6b6ba048ea313698cf75b5fbf378693bd2bb1832312214761040
MD5 ba838e497d301f53739f103d193304c1
BLAKE2b-256 f7c27fd0fbf7b16061113bf0e6eb7e9ca8c09ec8b9ee521dd08e2d676cc66249

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 84.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a62aa4de5380604ab11d11a16a75e7e508a52f7cb073d1c727492d415d894fc8
MD5 f77ee5f42c40b0ae3bf292f88721d5df
BLAKE2b-256 17f149706268299368499eaa040f77bc0ece524579003c631a3ee90836dc2d61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 83.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba9594275af4a059eb2b8fc50026a6167095fd8ef0619a66f6bd42a2848306e7
MD5 2c95e42df8b72266810669eace3ca248
BLAKE2b-256 3b92f2cba9020f79eb82c85991e6334b03616bc1a6c3847f643d87b276c1cd29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-2.0.0.dev0-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.0 importlib_metadata/3.7.3 packaging/20.9 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.dev0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1e0f8c5d2b42c5d10bee856dc68f05bd0b5571f5fff360d75e3985f7fcac8d7
MD5 d2dca7290e0606babac0a69e995f0f31
BLAKE2b-256 89fefeb60c0581282f49e8ff66ad8de35102d20aeed2d0c3e495cc4b31101ccf

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