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 2.7 or 3.4+.

Make sure Python development headers are available when installing hiredis-py. On Ubuntu/Debian systems, install them with apt-get install python-dev for Python 2 or apt-get install python3-dev for Python 3.

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()
'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()
['hello', '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("$3\r\n\xe2\x98\x83\r\n")
>>> reader.gets()
u'☃'

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

Uploaded Source

Built Distributions

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

hiredis-1.1.0-pp36-pypy36_pp73-win32.whl (17.2 kB view details)

Uploaded PyPyWindows x86

hiredis-1.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (20.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-pp27-pypy_73-win32.whl (17.0 kB view details)

Uploaded PyPyWindows x86

hiredis-1.1.0-pp27-pypy_73-manylinux2010_x86_64.whl (20.0 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-pp27-pypy_73-manylinux1_x86_64.whl (20.0 kB view details)

Uploaded PyPy

hiredis-1.1.0-cp38-cp38-win_amd64.whl (15.9 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-1.1.0-cp38-cp38-win32.whl (14.3 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-1.1.0-cp38-cp38-manylinux2010_x86_64.whl (62.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

hiredis-1.1.0-cp38-cp38-manylinux2010_i686.whl (59.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

hiredis-1.1.0-cp38-cp38-manylinux1_x86_64.whl (62.7 kB view details)

Uploaded CPython 3.8

hiredis-1.1.0-cp38-cp38-manylinux1_i686.whl (59.7 kB view details)

Uploaded CPython 3.8

hiredis-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (19.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

hiredis-1.1.0-cp37-cp37m-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-1.1.0-cp37-cp37m-win32.whl (14.1 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-cp37-cp37m-manylinux2010_i686.whl (59.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

hiredis-1.1.0-cp37-cp37m-manylinux1_x86_64.whl (62.2 kB view details)

Uploaded CPython 3.7m

hiredis-1.1.0-cp37-cp37m-manylinux1_i686.whl (59.1 kB view details)

Uploaded CPython 3.7m

hiredis-1.1.0-cp37-cp37m-macosx_10_6_intel.whl (35.0 kB view details)

Uploaded CPython 3.7mmacOS 10.6+ Intel (x86-64, i386)

hiredis-1.1.0-cp36-cp36m-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

hiredis-1.1.0-cp36-cp36m-win32.whl (14.1 kB view details)

Uploaded CPython 3.6mWindows x86

hiredis-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl (61.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-cp36-cp36m-manylinux2010_i686.whl (58.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

hiredis-1.1.0-cp36-cp36m-manylinux1_x86_64.whl (61.3 kB view details)

Uploaded CPython 3.6m

hiredis-1.1.0-cp36-cp36m-manylinux1_i686.whl (58.2 kB view details)

Uploaded CPython 3.6m

hiredis-1.1.0-cp36-cp36m-macosx_10_6_intel.whl (35.0 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

hiredis-1.1.0-cp35-cp35m-win_amd64.whl (15.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

hiredis-1.1.0-cp35-cp35m-win32.whl (14.1 kB view details)

Uploaded CPython 3.5mWindows x86

hiredis-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl (61.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-cp35-cp35m-manylinux2010_i686.whl (57.9 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

hiredis-1.1.0-cp35-cp35m-manylinux1_x86_64.whl (61.0 kB view details)

Uploaded CPython 3.5m

hiredis-1.1.0-cp35-cp35m-manylinux1_i686.whl (57.9 kB view details)

Uploaded CPython 3.5m

hiredis-1.1.0-cp35-cp35m-macosx_10_6_intel.whl (35.1 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

hiredis-1.1.0-cp27-cp27mu-manylinux2010_x86_64.whl (58.3 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-cp27-cp27mu-manylinux2010_i686.whl (55.0 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

hiredis-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl (58.3 kB view details)

Uploaded CPython 2.7mu

hiredis-1.1.0-cp27-cp27mu-manylinux1_i686.whl (55.0 kB view details)

Uploaded CPython 2.7mu

hiredis-1.1.0-cp27-cp27m-win_amd64.whl (17.1 kB view details)

Uploaded CPython 2.7mWindows x86-64

hiredis-1.1.0-cp27-cp27m-win32.whl (15.6 kB view details)

Uploaded CPython 2.7mWindows x86

hiredis-1.1.0-cp27-cp27m-manylinux2010_x86_64.whl (58.3 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

hiredis-1.1.0-cp27-cp27m-manylinux2010_i686.whl (55.0 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

hiredis-1.1.0-cp27-cp27m-manylinux1_x86_64.whl (58.3 kB view details)

Uploaded CPython 2.7m

hiredis-1.1.0-cp27-cp27m-manylinux1_i686.whl (55.0 kB view details)

Uploaded CPython 2.7m

hiredis-1.1.0-cp27-cp27m-macosx_10_6_intel.whl (34.5 kB view details)

Uploaded CPython 2.7mmacOS 10.6+ Intel (x86-64, i386)

File details

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

File metadata

  • Download URL: hiredis-1.1.0.tar.gz
  • Upload date:
  • Size: 54.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0.tar.gz
Algorithm Hash digest
SHA256 996021ef33e0f50b97ff2d6b5f422a0fe5577de21a8873b58a779a5ddd1c3132
MD5 430294afb3ebb37ebc7cc05bf3e5a389
BLAKE2b-256 3d9fabc69e73055f73d42ddf9c46b3e01a08b9e74b579b8fc413cbd31112a749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 3ef2183de67b59930d2db8b8e8d4d58e00a50fcc5e92f4f678f6eed7a1c72d55
MD5 36310640a57afceef3d243ecd0c62b08
BLAKE2b-256 b524d1abc5e20bc4e4bf74108aa02ef662883bf4bb6a7754d2a5ea90ad9250e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 06a039208f83744a702279b894c8cf24c14fd63c59cd917dcde168b79eef0680
MD5 ab3bf2414791456e0f7a46d5256fd22c
BLAKE2b-256 7b139cde914f791098da208eadbfc12e2b6107f500dc9f84ace6e2c4bb6ea1e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 20.5 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e2e023a42dcbab8ed31f97c2bcdb980b7fbe0ada34037d87ba9d799664b58ded
MD5 b46c1dc1d9e06497e20f3edc9741e7ef
BLAKE2b-256 bc6ff5dc2ce286e1c59b68b3f6f0fe369e94fe6fe791bed02636381884daa53d

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-pp27-pypy_73-win32.whl.

File metadata

  • Download URL: hiredis-1.1.0-pp27-pypy_73-win32.whl
  • Upload date:
  • Size: 17.0 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-pp27-pypy_73-win32.whl
Algorithm Hash digest
SHA256 969843fbdfbf56cdb71da6f0bdf50f9985b8b8aeb630102945306cf10a9c6af2
MD5 8804d9dca703b1fdbe42fdb94d7edb1a
BLAKE2b-256 3ff6442aa5bc20ad5f604fcb3f796a48c6a845583c1303c3e3d6990043326364

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b253fe4df2afea4dfa6b1fa8c5fef212aff8bcaaeb4207e81eed05cb5e4a7919
MD5 bc8c66e4549ded3a55fbb76ce41b2fb9
BLAKE2b-256 4fdddff1cfe69d34f847148e18849887bc277c242b6b7ce6dce1972bdbe8ba18

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8968eeaa4d37a38f8ca1f9dbe53526b69628edc9c42229a5b2f56d98bb828c1f
MD5 ca3c276843b8d43179b60e668b9baac4
BLAKE2b-256 6413916341ec36e482045ffb118d7be9d3bc0600b08d0805ebe1efd81c57bfd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e64be68255234bb489a574c4f2f8df7029c98c81ec4d160d6cd836e7f0679390
MD5 2cdfa653d03b87147589dda806bc8a72
BLAKE2b-256 b966808037cdc57df170691014477c119fe6ca8228d462ce46b3d4418a89532a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bcc371151d1512201d0214c36c0c150b1dc64f19c2b1a8c9cb1d7c7c15ebd93f
MD5 cbc162c6d98322aa950863e659002d23
BLAKE2b-256 8f5f6926e7c427d67efc5d704af14070e6771824092db90589455e6f8cad9f1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 62.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a7bf1492429f18d205f3a818da3ff1f242f60aa59006e53dee00b4ef592a3363
MD5 0bae72f924fe935a857bcb5e1a0603b7
BLAKE2b-256 482640075642d76a2fc67601b6f70cb32ae35915e44a94b191ed52ffb931c50c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 59.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1e4cbbc3858ec7e680006e5ca590d89a5e083235988f26a004acf7244389ac01
MD5 9941800b3924155dd5b32dce581e8579
BLAKE2b-256 1db2aaabbef26eff79d1736eb1d9eb41567471b826c1452f89b6f8643869f3b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 62.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0a909bf501459062aa1552be1461456518f367379fdc9fdb1f2ca5e4a1fdd7c0
MD5 d438c7222de8448e2ada3b51508c0bea
BLAKE2b-256 62b8704fb6258da6ac27b98e6d42e34381ec78ab55aba996861b3c2c91e17d97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 59.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c227c0ed371771ffda256034427320870e8ea2e4fd0c0a618c766e7c49aad73
MD5 8249cb5b99f9d95721c25abfb790755b
BLAKE2b-256 5d49e6803904a3b9a12ebe355d5db9ea63fe97b84bd4ea03bbcad313b55b394a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 19.9 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.17

File hashes

Hashes for hiredis-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e9c9078a7ce07e6fce366bd818be89365a35d2e4b163268f0ca9ba7e13bb2f6
MD5 350bde1f0d4cacafe91216ce3944d27b
BLAKE2b-256 5b5dcaa6aa88a890c99a2f65af35a70737e3d56eb66379a6853009b1176d253b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2c1c570ae7bf1bab304f29427e2475fe1856814312c4a1cf1cd0ee133f07a3c6
MD5 dc5d3566f704017ceb708747e03fc20e
BLAKE2b-256 881e27a23f8eadf191cfc6a204346d77f922615d5fb7e265872e715e95a118d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 819f95d4eba3f9e484dd115ab7ab72845cf766b84286a00d4ecf76d33f1edca1
MD5 12b61bcb2a334e62546b41184d3bab0a
BLAKE2b-256 11ac66bed9815a05bdb70d6c97140d95d210211437f254bb994e5ea3fe5af11d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 aa0af2deb166a5e26e0d554b824605e660039b161e37ed4f01b8d04beec184f3
MD5 815102e0319e9e635b399cd35f3a82e5
BLAKE2b-256 ed09986288478cd05126c7f8eeec912d051b8e4fa52965d5c26d066d6dbce194

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b27f082f47d23cffc4cf1388b84fdc45c4ef6015f906cd7e0d988d9e35d36349
MD5 a4cf78782a8e0b2d63cb71efae8963ce
BLAKE2b-256 7a8223e636eb9859309deff909b81d2131941a96354472b3f5685aa751a50f9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 62.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 23344e3c2177baf6975fbfa361ed92eb7d36d08f454636e5054b3faa7c2aff8a
MD5 1216bbe9b0c183f50025ec40a02f0e4a
BLAKE2b-256 ca5dc506a7f8f904549b59379786264b160ad8c753953672eec56731a1d37f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 59.1 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 964f18a59f5a64c0170f684c417f4fe3e695a536612e13074c4dd5d1c6d7c882
MD5 e52d637d7ab300a3a92c34df41bb5c1f
BLAKE2b-256 f250d348add3dc698ae9037c5fd8861d06990650befce1f7d246cdcc5fc32bb9

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.17

File hashes

Hashes for hiredis-1.1.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 e154891263306200260d7f3051982774d7b9ef35af3509d5adbbe539afd2610c
MD5 fa91149d7581622ac1ad86a12745f73f
BLAKE2b-256 32a5fdfd0532d078ef0fe1c0d9c742ab933336232c372ff950b98fb0f559bcdf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5263db1e2e1e8ae30500cdd75a979ff99dcc184201e6b4b820d0de74834d2323
MD5 9b5ad0ba35b2971e1a4852f0cdda601c
BLAKE2b-256 515c9cc9eee426ae62ed506c88e92b117b937fdbea6b1705d3054ba442cbbd22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 955ba8ea73cf3ed8bd2f963b4cb9f8f0dcb27becd2f4b3dd536fd24c45533454
MD5 16edb2ab4e6a519226716f4067bbce46
BLAKE2b-256 cae5a23271257f0ab9d3de609abd3bb729d98d4159809307e05bfb248458382a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 61.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c2851deeabd96d3f6283e9c6b26e0bfed4de2dc6fb15edf913e78b79fc5909ed
MD5 31c1f688c6f5caddc0948f8ae97493c7
BLAKE2b-256 ed7d6acf1c8d4f2fb327ff6feec000b4c56a20628fbe966a4c7cd16c0b80343c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 58.2 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 43b8ed3dbfd9171e44c554cb4acf4ee4505caa84c5e341858b50ea27dd2b6e12
MD5 2c55647050f22c2305f444b13177bd1f
BLAKE2b-256 e41262dba71ba84d23638ad793b5d95678652645a4daf7a6d24f350a3958ca5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 61.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cdfd501c7ac5b198c15df800a3a34c38345f5182e5f80770caf362bccca65628
MD5 f75ffa93c094a006add461ada787d0da
BLAKE2b-256 486fce168ee483fca08f835df4e4b26370a49c10e37dd9333272fbe0ba952b51

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 58.2 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 18402d9e54fb278cb9a8c638df6f1550aca36a009d47ecf5aa263a38600f35b0
MD5 9427f623389c3303aa2adb41b122db08
BLAKE2b-256 06d6550d9984157972d087890ead94c177f3b6c89854fefddf0d4b27b905aa61

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 35.0 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.17

File hashes

Hashes for hiredis-1.1.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 e0eeb9c112fec2031927a1745788a181d0eecbacbed941fc5c4f7bc3f7b273bf
MD5 6ed06d8fb353d5a9514fa935a7adeeb6
BLAKE2b-256 15e8b7a6db043d1bc13dc4fb9bf68146c287a6491478d9ab7abf121049ec5942

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3bb9b63d319402cead8bbd9dd55dca3b667d2997e9a0d8a1f9b6cc274db4baee
MD5 ff4efc2c2792427bad8f325470e86e72
BLAKE2b-256 869ba8fb43f07b48e67f993d8fb16f370a086f1d64120eb254b84e6c8249b8ac

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 a04901757cb0fb0f5602ac11dda48f5510f94372144d06c2563ba56c480b467c
MD5 744463b4985a5a2f5c32fcf1e36c43c9
BLAKE2b-256 b38e2c91fea0e2967b5321b9e59bff277d6b542214ea9f1847856ba8f01aa8af

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7885b6f32c4a898e825bb7f56f36a02781ac4a951c63e4169f0afcf9c8c30dfb
MD5 803ba793d703da7bebeb02b00bd3fed5
BLAKE2b-256 c6072af5feb87745f729240c37e89aece2ea36b91b73a698b78f8df75abf20ca

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 57.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5b1451727f02e7acbdf6aae4e06d75f66ee82966ff9114550381c3271a90f56c
MD5 a45431a047cf07f418257a875e23e22b
BLAKE2b-256 bdad8921bee24e3c2fa80f30f6c79465b75145b6ff4316bedc039ebbe76fb460

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 89ebf69cb19a33d625db72d2ac589d26e936b8f7628531269accf4a3196e7872
MD5 673d15ccd1a9ddc557d22e2f1f9766ab
BLAKE2b-256 9c352b3c6a1ad3f34a9a6f1b349cbd9a1a3f70409a137b73af05dde03f11ce3e

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 57.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 abfb15a6a7822f0fae681785cb38860e7a2cb1616a708d53df557b3d76c5bfd4
MD5 5450337b29cb562506002bb15e02c695
BLAKE2b-256 8bcbb094a30570518aa7ea240926487300dd7fb9f2eabbc3e36a58088288eda9

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.17

File hashes

Hashes for hiredis-1.1.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b44f9421c4505c548435244d74037618f452844c5d3c67719d8a55e2613549da
MD5 73ec02534560a2c7c1f81f5aa0da96a2
BLAKE2b-256 cc8de3c594080f806d38bc15adc7a52faf0b31a87a615566768b150c8b872c59

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 58.3 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6c96f64a54f030366657a54bb90b3093afc9c16c8e0dfa29fc0d6dbe169103a5
MD5 8271f1d6dadaf3b7d7be7c8eb35b39de
BLAKE2b-256 092c4bf5f60b3054e15540a6cd1597fc53e88a06651dd05b60cc02202e42a267

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 55.0 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7332d5c3e35154cd234fd79573736ddcf7a0ade7a986db35b6196b9171493e75
MD5 7da1b1de68a1dfce91cac3b893983fe5
BLAKE2b-256 b558ca3c4dce46c9d530cf7eae6826fb7dfbb581e1759cc6d17a53695b1df473

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 58.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dcb2db95e629962db5a355047fb8aefb012df6c8ae608930d391619dbd96fd86
MD5 de146ebc33612260b18b0c7a38ea6bf7
BLAKE2b-256 59135c620b1324506fc886113793291630c340ddecad88f05dcbf16376eeccf9

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 55.0 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47bcf3c5e6c1e87ceb86cdda2ee983fa0fe56a999e6185099b3c93a223f2fa9b
MD5 1a35d9b6506afd610504aea32abf849f
BLAKE2b-256 66a294c33d5f2c1580e38f1af97b6a57f6745877f0ff487f3536c3a39db7b738

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 d2c0caffa47606d6d7c8af94ba42547bd2a441f06c74fd90a1ffe328524a6c64
MD5 fbb7bbce139995a60f57f85f650b7aba
BLAKE2b-256 755057eabb1d134d6d4ea54bc4408044a0d13407e60434ef910ddb07d0bae14c

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 e82d6b930e02e80e5109b678c663a9ed210680ded81c1abaf54635d88d1da298
MD5 d42c30aeb90cbd7bdea54037f12be726
BLAKE2b-256 495d0be438edc06b144142619024232bc85aa2963c238e2bbe25eaa30f6087d0

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 58.3 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8daecd778c1da45b8bd54fd41ffcd471a86beed3d8e57a43acf7a8d63bba4058
MD5 9797bad6f0ebff22df625b0cb19db606
BLAKE2b-256 2c1de69d12552205466a48c7788ea6f5f6b470e25914c749d049e871a448580e

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 55.0 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b33aea449e7f46738811fbc6f0b3177c6777a572207412bbbf6f525ffed001ae
MD5 82dc8b2f02ae3f21a29009f46f27c252
BLAKE2b-256 3ad03d145d6f61f504d0cd661cb319d54cd510839a185af62f19d6b99df646d1

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 58.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6996883a8a6ff9117cbb3d6f5b0dcbbae6fb9e31e1a3e4e2f95e0214d9a1c655
MD5 97c1f781aa6e345979cfe1915639001e
BLAKE2b-256 0bfe76584ba50629573962f7579ff877764a3b4f6515cc5cf458f83b5128ad66

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 55.0 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b0f63f10a166583ab744a58baad04e0f52cfea1ac27bfa1b0c21a48d1003c23
MD5 46ae52e6a1d1da204aa5c579382bc5b4
BLAKE2b-256 3b11388485ac27e007a39f3287f2acdd3ec6895154d60cd09b85309cbef815bf

See more details on using hashes here.

File details

Details for the file hiredis-1.1.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: hiredis-1.1.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 34.5 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/2.7.17

File hashes

Hashes for hiredis-1.1.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 289b31885b4996ce04cadfd5fc03d034dce8e2a8234479f7c9e23b9e245db06b
MD5 cfd0258fb8bacafefca007792e650b69
BLAKE2b-256 3848382ad89c17abdca99bf9bd64ce99b4b3dd49d3f2628015833537d0bd7332

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