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.0.1.tar.gz (54.5 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.0.1-cp38-cp38-win_amd64.whl (15.7 kB view details)

Uploaded CPython 3.8Windows x86-64

hiredis-1.0.1-cp38-cp38-win32.whl (14.1 kB view details)

Uploaded CPython 3.8Windows x86

hiredis-1.0.1-cp38-cp38-manylinux2010_x86_64.whl (60.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

hiredis-1.0.1-cp38-cp38-manylinux2010_i686.whl (52.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

hiredis-1.0.1-cp38-cp38-manylinux1_x86_64.whl (60.7 kB view details)

Uploaded CPython 3.8

hiredis-1.0.1-cp38-cp38-manylinux1_i686.whl (52.2 kB view details)

Uploaded CPython 3.8

hiredis-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl (19.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

hiredis-1.0.1-cp37-cp37m-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

hiredis-1.0.1-cp37-cp37m-win32.whl (13.9 kB view details)

Uploaded CPython 3.7mWindows x86

hiredis-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl (60.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

hiredis-1.0.1-cp37-cp37m-manylinux2010_i686.whl (51.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

hiredis-1.0.1-cp37-cp37m-manylinux1_x86_64.whl (60.2 kB view details)

Uploaded CPython 3.7m

hiredis-1.0.1-cp37-cp37m-manylinux1_i686.whl (51.9 kB view details)

Uploaded CPython 3.7m

hiredis-1.0.1-cp37-cp37m-macosx_10_6_intel.whl (34.5 kB view details)

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

hiredis-1.0.1-cp36-cp36m-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

hiredis-1.0.1-cp36-cp36m-win32.whl (13.9 kB view details)

Uploaded CPython 3.6mWindows x86

hiredis-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl (59.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

hiredis-1.0.1-cp36-cp36m-manylinux2010_i686.whl (51.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

hiredis-1.0.1-cp36-cp36m-manylinux1_x86_64.whl (59.3 kB view details)

Uploaded CPython 3.6m

hiredis-1.0.1-cp36-cp36m-manylinux1_i686.whl (51.0 kB view details)

Uploaded CPython 3.6m

hiredis-1.0.1-cp36-cp36m-macosx_10_6_intel.whl (34.5 kB view details)

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

hiredis-1.0.1-cp35-cp35m-win_amd64.whl (15.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

hiredis-1.0.1-cp35-cp35m-win32.whl (13.9 kB view details)

Uploaded CPython 3.5mWindows x86

hiredis-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

hiredis-1.0.1-cp35-cp35m-manylinux2010_i686.whl (50.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

hiredis-1.0.1-cp35-cp35m-manylinux1_x86_64.whl (59.0 kB view details)

Uploaded CPython 3.5m

hiredis-1.0.1-cp35-cp35m-manylinux1_i686.whl (50.7 kB view details)

Uploaded CPython 3.5m

hiredis-1.0.1-cp35-cp35m-macosx_10_6_intel.whl (34.5 kB view details)

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

hiredis-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl (56.3 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

hiredis-1.0.1-cp27-cp27mu-manylinux2010_i686.whl (48.2 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

hiredis-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl (56.3 kB view details)

Uploaded CPython 2.7mu

hiredis-1.0.1-cp27-cp27mu-manylinux1_i686.whl (48.2 kB view details)

Uploaded CPython 2.7mu

hiredis-1.0.1-cp27-cp27m-win_amd64.whl (16.9 kB view details)

Uploaded CPython 2.7mWindows x86-64

hiredis-1.0.1-cp27-cp27m-win32.whl (15.4 kB view details)

Uploaded CPython 2.7mWindows x86

hiredis-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl (56.3 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

hiredis-1.0.1-cp27-cp27m-manylinux2010_i686.whl (48.2 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

hiredis-1.0.1-cp27-cp27m-manylinux1_x86_64.whl (56.3 kB view details)

Uploaded CPython 2.7m

hiredis-1.0.1-cp27-cp27m-manylinux1_i686.whl (48.2 kB view details)

Uploaded CPython 2.7m

hiredis-1.0.1-cp27-cp27m-macosx_10_6_intel.whl (33.9 kB view details)

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

File details

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

File metadata

  • Download URL: hiredis-1.0.1.tar.gz
  • Upload date:
  • Size: 54.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1.tar.gz
Algorithm Hash digest
SHA256 aa59dd63bb3f736de4fc2d080114429d5d369dfb3265f771778e8349d67a97a4
MD5 ad421ea848734c7be5c10689caa2a6f1
BLAKE2b-256 7f5c62e5c6b811b4dcef4125b4a01f76db82c496d79299dd67053b8f9c0732c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a7754a783b1e5d6f627c19d099b178059c62f782ab62b4d8ba165b9fbc2ee34c
MD5 e150de7639c47189d7ec0c47df554d70
BLAKE2b-256 394e12ede587b489baf04dc0cd891c11a6280e94b07d4dbcbc378d0dde6349e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 eb8c9c8b9869539d58d60ff4a28373a22514d40495911451343971cb4835b7a9
MD5 afbc792e987908e39d83a8ccabbfe797
BLAKE2b-256 2d6051a114917c8e4946b350c3049f4a438d3835735af21202237dec256e9efa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 60.7 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8644a48ddc4a40b3e3a6b9443f396c2ee353afb2d45656c4fc68d04a82e8e3f7
MD5 d0fcd3035211552f9f46a440466f0536
BLAKE2b-256 6a0ea1ba4b93562e78484af2f907b240047f5b91a614c69e5b12944d08afe851

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 52.2 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dce84916c09aaece006272b37234ae84a8ed13abb3a4d341a23933b8701abfb5
MD5 c5107a4c2cac21c0536c6d390d40c979
BLAKE2b-256 f1738e8cb60de531c819a9a781aa95ae7a89f4b6a2bf5c80f238fc17bf4a3369

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 60.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a1fadd062fc8d647ff39220c57ea2b48c99bb73f18223828ec97f88fc27e7898
MD5 bee9bbbb2ba8c2df835130525ec2b7b0
BLAKE2b-256 3b3837c66315da94ea0dce9c0132a591c9b1a162a39f6ef0282302755a1c9e5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 52.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 01b577f84c20ecc9c07fc4c184231b08e3c3942de096fa99978e053de231c423
MD5 5859ae2a9652763bbc274021a1e56854
BLAKE2b-256 d022bd7f3f09d88c721a15c769c11a5182604035e5d0883f4653df2b2eeb2538

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 19.7 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.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for hiredis-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3dd8c2fae7f5494978facb0e93297dd627b1a3f536f3b070cf0a7d9157a07dcb
MD5 0506f8ccccf557ecbd2158d48954565f
BLAKE2b-256 505b825f9703b9f6e4f00573211fbd37371bd6900bfe250f7cc80c6fde9f2b43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b36842d7cf32929d568f37ec5b3173b72b2ec6572dec4d6be6ce774762215aee
MD5 67a8a273852292508c19977957cf5736
BLAKE2b-256 2f2261f38bd5cf065f49bc69f8e90c1f170cfca42eb5b8fafcaec5c2e640d2dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 84857ce239eb8ed191ac78e77ff65d52902f00f30f4ee83bf80eb71da73b70e6
MD5 e51aeeaab1dc2b1023dcac597735c44b
BLAKE2b-256 4b663018d5c2b05c1507d0de583a077597bffe39ad13f1b802b1187f5bcae96a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 60.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2c9cc0b986397b833073f466e6b9e9c70d1d4dc2c2c1b3e9cae3a23102ff296c
MD5 9c48e9e4cbbddc7d991135855d835e3a
BLAKE2b-256 b4c7bcc3d39d4bf50d2e27a9d7e450bc04d6d9ce518b424fe92b6c93f878cad6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 51.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cbccbda6f1c62ab460449d9c85fdf24d0d32a6bf45176581151e53cc26a5d910
MD5 4e150c17047bda16b5821f8961a25bff
BLAKE2b-256 db62713fa25d3c56a6138e923c1da4178d57e79511c19b0aee976c49ed014c39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 60.2 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3b3428fa3cf1ee178807b52c9bee8950ab94cd4eaa9bfae8c1bbae3c49501d34
MD5 345353207f1b506a9070476fdc7d4ec1
BLAKE2b-256 4f5432ef579790eb762fb83f44ce050d073fb2b4433de2ca679108e8f171d3f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 51.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bcbf9379c553b5facc6c04c1e5569b44b38ff16bcbf354676287698d61ee0c92
MD5 e916f63bb9358493aaee7f84290396ad
BLAKE2b-256 f861c6ce8a135ecf828153f5b4391a63fa47d181dd2b696ee8a9c66ec296f88a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 34.5 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.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for hiredis-1.0.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 585ace09f434e43d8a8dbeb366865b1a044d7c06319b3c7372a0a00e63b860f4
MD5 47452031c683f9e6afd95242a0e621b7
BLAKE2b-256 4b80ce7e811b74aae217aa7f963125e433bab52c1bfda58cf75e4b11a8c04630

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2fa65a9df683bca72073cd77709ddeb289ea2b114d3775d225fbbcc5faf808c5
MD5 4c28c88362a7c79743e678304a9bcb14
BLAKE2b-256 bb6bf912b414e828256d3cbacbf619cc7f30dacc43941b323f0b9bd677afd3f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7f052de8bf744730a9120dbdc67bfeb7605a01f69fb8e7ba5c475af33c24e145
MD5 84d2c209760cbf10ce8c5cbac3583107
BLAKE2b-256 d479bb413c47d0724dfa443682256d4f4ef8c2cbf7fbf9ef8d270946f99a8676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 59.3 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 4414a96c212e732723b5c3d7c04d386ebbb2ec359e1de646322cbc3f875cbd0d
MD5 6cbe45f16e4e5e18f54841b000a57c79
BLAKE2b-256 f6d23f66badc73297c90931d6c7a8ef1daef8dcbb680b9cc87625c34de675322

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 51.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae2ee0992f8de249715435942137843a93db204dd7db1e7cc9bdc5a8436443e8
MD5 de74cc4059553d812a157313906b49b6
BLAKE2b-256 b95bf5ce98a33f9825d0a027d9fe2db47d4a303788db222ec58565fd91140535

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 59.3 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0caf98dfb8af395d6732bd16561c0a2458851bea522e39f12f04802dbf6f502
MD5 ee310ef18d5a7ff10094abe35fc75fcf
BLAKE2b-256 5ba323bc840f0e2baa4aedb41d90b3196fed3ae88ee43ec60059a0c8f31be4b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 51.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 01ff0900134166961c9e339df77c33b72f7edc5cb41739f0babcd9faa345926e
MD5 91c9458c64d330fef95b9b150572efb4
BLAKE2b-256 5e90c2b43acb903f15320f36a7cad2f01c72a28e6c04186e6fd460fecbe1399d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 34.5 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.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for hiredis-1.0.1-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 efc98b14ee3a8595e40b1425e8d42f5fd26f11a7b215a81ef9259068931754f4
MD5 ca3c95768fb749bce17fce70641d5fda
BLAKE2b-256 d9df01c5807c478ec34e129fb6b1db31b7e7542d462121ed6f4e476cc69dc20d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 15.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 fe7d6ce9f6a5fbe24f09d95ea93e9c7271abc4e1565da511e1449b107b4d7848
MD5 020511bbfa2bf60b1b913554ed774c78
BLAKE2b-256 95ffa27253692a7d202ac9c9d722f3694e7e0c6976757798962eede45465a827

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 8113a7d5e87ecf57cd4ae263cc9e429adb9a3e59f5a7768da5d3312a8d0a051a
MD5 2aa20bd69b6758bc4db9670f4452d79f
BLAKE2b-256 1ddc9d932ee96c724f61b5fccf5e6bde08e539ac59261af4cf26979f12689830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 59.0 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9d62cc7880110e4f83b0a51d218f465d3095e2751fbddd34e553dbd106a929ff
MD5 6964a43162e3ef12cd2ce86120815bb3
BLAKE2b-256 88cf40abf8d1d7d4011dac2613cb9eb1ac584f5212e05dbc864a94085448061f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 50.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 48c627581ad4ef60adbac980981407939acf13a0e18f093502c7b542223c4f19
MD5 d41f959804bd554c49f8e10fad219d92
BLAKE2b-256 144da79df3844cf2cc33fca67b4506cb8d49a36ac5aa1b05af652123ed2e8ac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 59.0 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 936aa565e673536e8a211e43ec43197406f24cd1f290138bd143765079c8ba00
MD5 232ac17a40f75e562601c17f0eafbec6
BLAKE2b-256 7fd91d3cc8898e46fb73ea095346671d72059db62e3e8cf74eade2058b2f4412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 50.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b4b392c7e3082860c8371fab3ae762139090f9115819e12d9f56060f9ede05d
MD5 a12a7971c4f305b0e591e7509b0b5a22
BLAKE2b-256 1c71c83b9c56acfd1a93ccc35176483b0f7eca3f4c6d06dd8c8269f94754e2b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 34.5 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.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for hiredis-1.0.1-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 040436e91df5143aff9e0debb49530d0b17a6bd52200ce568621c31ef581b10d
MD5 3f44fb481a3b74655348b2e19144c6b9
BLAKE2b-256 feb5d219a80ed87524a5129e0aca80c0a38b73daf6e0c7fac1dc518c83128442

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9afeb88c67bbc663b9f27385c496da056d06ad87f55df6e393e1516cfecb0461
MD5 d9c8d8844282986cd579511f37afc70d
BLAKE2b-256 e624c93c88cb5e99012be1e8a095eda002956bbbbfe3256d375acdea65e67699

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74b364b3f06c9cf0a53f7df611045bc9437ed972a283fa1f0b12537236d23ddc
MD5 f866b13fab10294d0dbfa12fed87aa41
BLAKE2b-256 2013f6ec1610687c087f634c401a630080a9dc789f96f236288a439580203f7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fa2dc05b87d97acc1c6ae63f3e0f39eae5246565232484b08db6bf2dc1580678
MD5 7b7119c019da78a38feae83d4a70ca24
BLAKE2b-256 3e256db571d94f59559bcdfbfcabfbe6fbaad213df54332dc70e04eaa75d457f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 75c65c3850e89e9daa68d1b9bedd5806f177d60aa5a7b0953b4829481cfc1f72
MD5 474ae25658fd05a0faf6050252891c33
BLAKE2b-256 67da7eeb97aa10c8206c4c268481dee5832d460f5cdbab57ca67804abc87478e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 091eb38fbf968d1c5b703e412bbbd25f43a7967d8400842cee33a5a07b33c27b
MD5 aa62d12f1c8e31a20fb2ded8ce30dbb3
BLAKE2b-256 0e5c9e25c48ac73894132427a97e50e6dac7b8f4f89e7c6a355e60a59b6ad9b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.8

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 4a60e71625a2d78d8ab84dfb2fa2cfd9458c964b6e6c04fea76d9ade153fb371
MD5 c2f54e71efa7a7f0167ced1ee67e1200
BLAKE2b-256 3a06943ec10b523c426181534c4e809f8b887764d69647c056d8a856ece4e014

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d6456afeddba036def1a36d8a2758eca53202308d83db20ab5d0b66590919627
MD5 944b0aea96fe02ade23196775923c653
BLAKE2b-256 7c0616b4c23c26b7b59126e05e96abdccf276e7801b3741804a49a3168ffacb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 03ed34a13316d0c34213c4fd46e0fa3a5299073f4d4f08e93fed8c2108b399b3
MD5 7966562ce0b418d2041fa2523efa764b
BLAKE2b-256 d2f67c969c555271b4faa82c961ac7bb3d1c4164b11c07b6a063a56c64b92117

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 56.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dbaef9a21a4f10bc281684ee4124f169e62bb533c2a92b55f8c06f64f9af7b8f
MD5 70adc60fedbe7c66478db1574d59e779
BLAKE2b-256 b2bc895482ee2317d8197c82fb5e896c41f33bc9ce45505dbbe3d3b52aec2911

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.3

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 102f9b9dc6ed57feb3a7c9bdf7e71cb7c278fe8df1edfcfe896bc3e0c2be9447
MD5 46461b863ed8b84a2a259b5f75e4cba5
BLAKE2b-256 e23940212918ae7d5351cf4520228293966dfa4e53dece4353f51e7ad357938f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: hiredis-1.0.1-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 33.9 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.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/2.7.15

File hashes

Hashes for hiredis-1.0.1-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 38437a681f17c975fd22349e72c29bc643f8e7eb2d6dc5df419eac59afa4d7ce
MD5 97099e138ba42e31d8ca3b24bba3f5e2
BLAKE2b-256 74c91aa2bdb9a876f389c22986b797cc197f46695a12d4bde3817265ac13258d

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