hiredis


Namehiredis JSON
Version 2.3.2 PyPI version JSON
download
home_pagehttps://github.com/redis/hiredis-py
SummaryPython wrapper for hiredis
upload_time2023-12-17 13:16:30
maintainer
docs_urlNone
authorJan-Erik Rediger, Pieter Noordhuis
requires_python>=3.7
licenseBSD
keywords redis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # hiredis-py

[![Build Status](https://github.com/redis/hiredis-py/actions/workflows/integration.yaml/badge.svg)](https://github.com/redis/hiredis-py/actions/workflows/integration.yaml)
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

Python extension that wraps protocol parsing code in [hiredis][hiredis].
It primarily speeds up parsing of multi bulk replies.

[hiredis]: http://github.com/redis/hiredis

## How do I Redis?

[Learn for free at Redis University](https://university.redis.com/)

[Build faster with the Redis Launchpad](https://launchpad.redis.com/)

[Try the Redis Cloud](https://redis.com/try-free/)

[Dive in developer tutorials](https://developer.redis.com/)

[Join the Redis community](https://redis.com/community/)

[Work at Redis](https://redis.com/company/careers/jobs/)

## Install

hiredis-py is available on [PyPI](https://pypi.org/project/hiredis/), and can be installed via:

```bash
pip install hiredis
```
## Building and Testing

Building this repository requires a recursive checkout of submodules, and building hiredis. The following example shows how to clone, compile, and run tests. Please note - you will need the gcc installed.

```bash
git clone --recursse-submodules https://github.com/redis/hiredis-py
python setup.py build_ext --inplace
python -m pytest
```

### Requirements

hiredis-py requires **Python 3.7+**.

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

## Usage

The `hiredis` module contains the `Reader` class. This class is responsible for
parsing replies from the stream of data that is read from a Redis connection.
It does not contain functionality to handle I/O.

### Reply parser

The `Reader` class has two methods that are used when parsing replies from a
stream of data. `Reader.feed` takes a string argument that is appended to the
internal buffer. `Reader.gets` reads this buffer and returns a reply when the
buffer contains a full reply. If a single call to `feed` contains multiple
replies, `gets` should be called multiple times to extract all replies.

Example:

```python
>>> reader = hiredis.Reader()
>>> reader.feed("$5\r\nhello\r\n")
>>> reader.gets()
b'hello'
```

When the buffer does not contain a full reply, `gets` returns `False`.
This means extra data is needed and `feed` should be called again before calling
`gets` again. Alternatively you could provide custom sentinel object via parameter,
which is useful for RESP3 protocol where native boolean types are supported:

Example:

```python
>>> reader.feed("*2\r\n$5\r\nhello\r\n")
>>> reader.gets()
False
>>> reader.feed("$5\r\nworld\r\n")
>>> reader.gets()
[b'hello', b'world']
>>> reader = hiredis.Reader(notEnoughData=Ellipsis)
>>> reader.gets()
Ellipsis
```

#### Unicode

`hiredis.Reader` is able to decode bulk data to any encoding Python supports.
To do so, specify the encoding you want to use for decoding replies when
initializing it:

```python
>>> 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](https://docs.python.org/3/howto/unicode.html#the-string-type).


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](http://gevent.org/) 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.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/redis/hiredis-py",
    "name": "hiredis",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Redis",
    "author": "Jan-Erik Rediger, Pieter Noordhuis",
    "author_email": "janerik@fnordig.de, pcnoordhuis@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/fe/2d/a5ae61da1157644f7e52e088fa158ac6f5d09775112d14b1c9b9a5156bf1/hiredis-2.3.2.tar.gz",
    "platform": null,
    "description": "# hiredis-py\n\n[![Build Status](https://github.com/redis/hiredis-py/actions/workflows/integration.yaml/badge.svg)](https://github.com/redis/hiredis-py/actions/workflows/integration.yaml)\n[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)\n\nPython extension that wraps protocol parsing code in [hiredis][hiredis].\nIt primarily speeds up parsing of multi bulk replies.\n\n[hiredis]: http://github.com/redis/hiredis\n\n## How do I Redis?\n\n[Learn for free at Redis University](https://university.redis.com/)\n\n[Build faster with the Redis Launchpad](https://launchpad.redis.com/)\n\n[Try the Redis Cloud](https://redis.com/try-free/)\n\n[Dive in developer tutorials](https://developer.redis.com/)\n\n[Join the Redis community](https://redis.com/community/)\n\n[Work at Redis](https://redis.com/company/careers/jobs/)\n\n## Install\n\nhiredis-py is available on [PyPI](https://pypi.org/project/hiredis/), and can be installed via:\n\n```bash\npip install hiredis\n```\n## Building and Testing\n\nBuilding this repository requires a recursive checkout of submodules, and building hiredis. The following example shows how to clone, compile, and run tests. Please note - you will need the gcc installed.\n\n```bash\ngit clone --recursse-submodules https://github.com/redis/hiredis-py\npython setup.py build_ext --inplace\npython -m pytest\n```\n\n### Requirements\n\nhiredis-py requires **Python 3.7+**.\n\nMake sure Python development headers are available when installing hiredis-py.\nOn Ubuntu/Debian systems, install them with `apt-get install python3-dev`.\n\n## Usage\n\nThe `hiredis` module contains the `Reader` class. This class is responsible for\nparsing replies from the stream of data that is read from a Redis connection.\nIt does not contain functionality to handle I/O.\n\n### Reply parser\n\nThe `Reader` class has two methods that are used when parsing replies from a\nstream of data. `Reader.feed` takes a string argument that is appended to the\ninternal buffer. `Reader.gets` reads this buffer and returns a reply when the\nbuffer contains a full reply. If a single call to `feed` contains multiple\nreplies, `gets` should be called multiple times to extract all replies.\n\nExample:\n\n```python\n>>> reader = hiredis.Reader()\n>>> reader.feed(\"$5\\r\\nhello\\r\\n\")\n>>> reader.gets()\nb'hello'\n```\n\nWhen the buffer does not contain a full reply, `gets` returns `False`.\nThis means extra data is needed and `feed` should be called again before calling\n`gets` again. Alternatively you could provide custom sentinel object via parameter,\nwhich is useful for RESP3 protocol where native boolean types are supported:\n\nExample:\n\n```python\n>>> reader.feed(\"*2\\r\\n$5\\r\\nhello\\r\\n\")\n>>> reader.gets()\nFalse\n>>> reader.feed(\"$5\\r\\nworld\\r\\n\")\n>>> reader.gets()\n[b'hello', b'world']\n>>> reader = hiredis.Reader(notEnoughData=Ellipsis)\n>>> reader.gets()\nEllipsis\n```\n\n#### Unicode\n\n`hiredis.Reader` is able to decode bulk data to any encoding Python supports.\nTo do so, specify the encoding you want to use for decoding replies when\ninitializing it:\n\n```python\n>>> reader = hiredis.Reader(encoding=\"utf-8\", errors=\"strict\")\n>>> reader.feed(b\"$3\\r\\n\\xe2\\x98\\x83\\r\\n\")\n>>> reader.gets()\n'\u2603'\n```\n\nDecoding of bulk data will be attempted using the specified encoding and\nerror handler. If the error handler is `'strict'` (the default), a\n`UnicodeDecodeError` is raised when data cannot be dedcoded. This is identical\nto Python's default behavior. Other valid values to `errors` include\n`'replace'`, `'ignore'`, and `'backslashreplace'`. More information on the\nbehavior of these error handlers can be found\n[here](https://docs.python.org/3/howto/unicode.html#the-string-type).\n\n\nWhen the specified encoding cannot be found, a `LookupError` will be raised\nwhen calling `gets` for the first reply with bulk data.\n\n#### Error handling\n\nWhen a protocol error occurs (because of multiple threads using the same\nsocket, or some other condition that causes a corrupt stream), the error\n`hiredis.ProtocolError` is raised. Because the buffer is read in a lazy\nfashion, it will only be raised when `gets` is called and the first reply in\nthe buffer contains an error. There is no way to recover from a faulty protocol\nstate, so when this happens, the I/O code feeding data to `Reader` should\nprobably reconnect.\n\nRedis can reply with error replies (`-ERR ...`). For these replies, the custom\nerror class `hiredis.ReplyError` is returned, **but not raised**.\n\nWhen other error types should be used (so existing code doesn't have to change\nits `except` clauses), `Reader` can be initialized with the `protocolError` and\n`replyError` keywords. These keywords should contain a *class* that is a\nsubclass of `Exception`. When not provided, `Reader` will use the default\nerror types.\n\n## Benchmarks\n\nThe repository contains a benchmarking script in the `benchmark` directory,\nwhich uses [gevent](http://gevent.org/) to have non-blocking I/O and redis-py\nto handle connections. These benchmarks are done with a patched version of\nredis-py that uses hiredis-py when it is available.\n\nAll benchmarks are done with 10 concurrent connections.\n\n* SET key value + GET key\n  * redis-py: 11.76 Kops\n  * redis-py *with* hiredis-py: 13.40 Kops\n  * improvement: **1.1x**\n\nList entries in the following tests are 5 bytes.\n\n* LRANGE list 0 **9**:\n  * redis-py: 4.78 Kops\n  * redis-py *with* hiredis-py: 12.94 Kops\n  * improvement: **2.7x**\n* LRANGE list 0 **99**:\n  * redis-py: 0.73 Kops\n  * redis-py *with* hiredis-py: 11.90 Kops\n  * improvement: **16.3x**\n* LRANGE list 0 **999**:\n  * redis-py: 0.07 Kops\n  * redis-py *with* hiredis-py: 5.83 Kops\n  * improvement: **83.2x**\n\nThroughput improvement for simple SET/GET is minimal, but the larger multi bulk replies\nget, the larger the performance improvement is.\n\n## License\n\nThis code is released under the BSD license, after the license of hiredis.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Python wrapper for hiredis",
    "version": "2.3.2",
    "project_urls": {
        "Changes": "https://github.com/redis/hiredis-py/releases",
        "Homepage": "https://github.com/redis/hiredis-py",
        "Issue tracker": "https://github.com/redis/hiredis-py/issues"
    },
    "split_keywords": [
        "redis"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e29d890bceca4c3c494d5d1d225a8f51a1f47c2b818e90db5c7a0fa05e234f1",
                "md5": "e2dc9712b9915273e9026934ca6b41b8",
                "sha256": "742093f33d374098aa21c1696ac6e4874b52658c870513a297a89265a4d08fe5"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "e2dc9712b9915273e9026934ca6b41b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 82801,
            "upload_time": "2023-12-17T13:13:42",
            "upload_time_iso_8601": "2023-12-17T13:13:42.642414Z",
            "url": "https://files.pythonhosted.org/packages/6e/29/d890bceca4c3c494d5d1d225a8f51a1f47c2b818e90db5c7a0fa05e234f1/hiredis-2.3.2-cp310-cp310-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4fad6138ad6570284e9b3de9e99ad4aab184ce6a31f19f3eb1ed10fb00b0d7d9",
                "md5": "10e79c7e25cbbf4c8728c87373ed6a9b",
                "sha256": "9e14fb70ca4f7efa924f508975199353bf653f452e4ef0a1e47549e208f943d7"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10e79c7e25cbbf4c8728c87373ed6a9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 45498,
            "upload_time": "2023-12-17T13:13:44",
            "upload_time_iso_8601": "2023-12-17T13:13:44.604487Z",
            "url": "https://files.pythonhosted.org/packages/4f/ad/6138ad6570284e9b3de9e99ad4aab184ce6a31f19f3eb1ed10fb00b0d7d9/hiredis-2.3.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a77691b99f5459efdf9c4b0275a0602aceac740b9a762c5be4cba8808df7908e",
                "md5": "11a15741312eb29f42293bf53c4b7c62",
                "sha256": "6d7302b4b17fcc1cc727ce84ded7f6be4655701e8d58744f73b09cb9ed2b13df"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "11a15741312eb29f42293bf53c4b7c62",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 42823,
            "upload_time": "2023-12-17T13:13:46",
            "upload_time_iso_8601": "2023-12-17T13:13:46.550205Z",
            "url": "https://files.pythonhosted.org/packages/a7/76/91b99f5459efdf9c4b0275a0602aceac740b9a762c5be4cba8808df7908e/hiredis-2.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46f4fd5532ddb5e825257b2f627f3b54f0683074f1e617736ea2122e23bcafbe",
                "md5": "ff0afb2ee077bc9c08c1516716ac3bf4",
                "sha256": "ed63e8b75c193c5e5a8288d9d7b011da076cc314fafc3bfd59ec1d8a750d48c8"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff0afb2ee077bc9c08c1516716ac3bf4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 166416,
            "upload_time": "2023-12-17T13:13:48",
            "upload_time_iso_8601": "2023-12-17T13:13:48.517784Z",
            "url": "https://files.pythonhosted.org/packages/46/f4/fd5532ddb5e825257b2f627f3b54f0683074f1e617736ea2122e23bcafbe/hiredis-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a81d3702e89694c9a60d8639daa8868d4e760bc712a849012d39ce2929ee31e",
                "md5": "d31c43d7ad95211292b7e00e20d3723d",
                "sha256": "6b4edee59dc089bc3948f4f6fba309f51aa2ccce63902364900aa0a553a85e97"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d31c43d7ad95211292b7e00e20d3723d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 177309,
            "upload_time": "2023-12-17T13:13:50",
            "upload_time_iso_8601": "2023-12-17T13:13:50.327466Z",
            "url": "https://files.pythonhosted.org/packages/7a/81/d3702e89694c9a60d8639daa8868d4e760bc712a849012d39ce2929ee31e/hiredis-2.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a71de1be6fa8e72cc1418defd17ddd690fe48dfae5ba53e7da7765eab32a731f",
                "md5": "07afdba5cdad3d2c58577606df7ece72",
                "sha256": "a6481c3b7673a86276220140456c2a6fbfe8d1fb5c613b4728293c8634134824"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "07afdba5cdad3d2c58577606df7ece72",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 166800,
            "upload_time": "2023-12-17T13:13:52",
            "upload_time_iso_8601": "2023-12-17T13:13:52.302574Z",
            "url": "https://files.pythonhosted.org/packages/a7/1d/e1be6fa8e72cc1418defd17ddd690fe48dfae5ba53e7da7765eab32a731f/hiredis-2.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df51c0dd2484074519686e239ecbb412df6871a6a46856787c54a323ab12870b",
                "md5": "bc31bbf612f427401429bb0b3337a142",
                "sha256": "684840b014ce83541a087fcf2d48227196576f56ae3e944d4dfe14c0a3e0ccb7"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc31bbf612f427401429bb0b3337a142",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 166526,
            "upload_time": "2023-12-17T13:13:53",
            "upload_time_iso_8601": "2023-12-17T13:13:53.623930Z",
            "url": "https://files.pythonhosted.org/packages/df/51/c0dd2484074519686e239ecbb412df6871a6a46856787c54a323ab12870b/hiredis-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "154f7a4d5ff2044f34fb4d99a715f3bee5117072926238f9e8ce9646992af186",
                "md5": "047d37667ded988fedd3df9455b489f3",
                "sha256": "1c4c0bcf786f0eac9593367b6279e9b89534e008edbf116dcd0de956524702c8"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "047d37667ded988fedd3df9455b489f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 162847,
            "upload_time": "2023-12-17T13:13:55",
            "upload_time_iso_8601": "2023-12-17T13:13:55.579091Z",
            "url": "https://files.pythonhosted.org/packages/15/4f/7a4d5ff2044f34fb4d99a715f3bee5117072926238f9e8ce9646992af186/hiredis-2.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9da804b39a5c7fcb56c0b43d41c9b8ec412f861b1ce8cbf4c60791ab91af16e0",
                "md5": "db847c5de71392ab4f45e297fe9c5068",
                "sha256": "66ab949424ac6504d823cba45c4c4854af5c59306a1531edb43b4dd22e17c102"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "db847c5de71392ab4f45e297fe9c5068",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 172587,
            "upload_time": "2023-12-17T13:13:57",
            "upload_time_iso_8601": "2023-12-17T13:13:57.486322Z",
            "url": "https://files.pythonhosted.org/packages/9d/a8/04b39a5c7fcb56c0b43d41c9b8ec412f861b1ce8cbf4c60791ab91af16e0/hiredis-2.3.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87e593ab423fccf5e98590ed2b5da2921f2995eb07223c7e494dcb0ec65f21a0",
                "md5": "f4acc34fbed4f7b9d6b973fad7852ff2",
                "sha256": "322c668ee1c12d6c5750a4b1057e6b4feee2a75b3d25d630922a463cfe5e7478"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f4acc34fbed4f7b9d6b973fad7852ff2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 167820,
            "upload_time": "2023-12-17T13:13:59",
            "upload_time_iso_8601": "2023-12-17T13:13:59.359788Z",
            "url": "https://files.pythonhosted.org/packages/87/e5/93ab423fccf5e98590ed2b5da2921f2995eb07223c7e494dcb0ec65f21a0/hiredis-2.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35bdbedf7ffc1b4b3458c86c0b092d82f64a0d312359337999be764f46bb6f25",
                "md5": "cf7499f93b7bb32dae1279d6a55c3fbd",
                "sha256": "bfa73e3f163c6e8b2ec26f22285d717a5f77ab2120c97a2605d8f48b26950dac"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cf7499f93b7bb32dae1279d6a55c3fbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 180707,
            "upload_time": "2023-12-17T13:14:01",
            "upload_time_iso_8601": "2023-12-17T13:14:01.228382Z",
            "url": "https://files.pythonhosted.org/packages/35/bd/bedf7ffc1b4b3458c86c0b092d82f64a0d312359337999be764f46bb6f25/hiredis-2.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddb1323f148358880fafff3b1e11bad95528a68f582402077b79636ab50a3ed9",
                "md5": "d22b8d9fd8be6ad3be2c38dab64c3e22",
                "sha256": "7f39f28ffc65de577c3bc0c7615f149e35bc927802a0f56e612db9b530f316f9"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "d22b8d9fd8be6ad3be2c38dab64c3e22",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 170800,
            "upload_time": "2023-12-17T13:14:03",
            "upload_time_iso_8601": "2023-12-17T13:14:03.613870Z",
            "url": "https://files.pythonhosted.org/packages/dd/b1/323f148358880fafff3b1e11bad95528a68f582402077b79636ab50a3ed9/hiredis-2.3.2-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6716b54a0562bf8f266fc379f310ddedbb3064dec883421211289a2d429052cf",
                "md5": "eaaee07584c31ccd9ced1a0c0abe8650",
                "sha256": "55ce31bf4711da879b96d511208efb65a6165da4ba91cb3a96d86d5a8d9d23e6"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eaaee07584c31ccd9ced1a0c0abe8650",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 171059,
            "upload_time": "2023-12-17T13:14:05",
            "upload_time_iso_8601": "2023-12-17T13:14:05.063471Z",
            "url": "https://files.pythonhosted.org/packages/67/16/b54a0562bf8f266fc379f310ddedbb3064dec883421211289a2d429052cf/hiredis-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27321e6fa10602856e4f847e31c2df74fc29a784e64228af34a47a6f04e1f9bc",
                "md5": "441560ce93c03661217022e619e79270",
                "sha256": "3dd63d0bbbe75797b743f35d37a4cca7ca7ba35423a0de742ae2985752f20c6d"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "441560ce93c03661217022e619e79270",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 19594,
            "upload_time": "2023-12-17T13:14:07",
            "upload_time_iso_8601": "2023-12-17T13:14:07.165122Z",
            "url": "https://files.pythonhosted.org/packages/27/32/1e6fa10602856e4f847e31c2df74fc29a784e64228af34a47a6f04e1f9bc/hiredis-2.3.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6c409d11fd7ac6554fe7d205845958a57f0aba7f53edc608df13c3dbf945a8",
                "md5": "45c1b95aaf45b7dedf3f6c13bca1cbc1",
                "sha256": "ea002656a8d974daaf6089863ab0a306962c8b715db6b10879f98b781a2a5bf5"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "45c1b95aaf45b7dedf3f6c13bca1cbc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 21194,
            "upload_time": "2023-12-17T13:14:08",
            "upload_time_iso_8601": "2023-12-17T13:14:08.383901Z",
            "url": "https://files.pythonhosted.org/packages/4a/6c/409d11fd7ac6554fe7d205845958a57f0aba7f53edc608df13c3dbf945a8/hiredis-2.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83946e729760c66b3eeeec1ea02e06596d7a36b97fa414dd7e25130a34be5238",
                "md5": "88ae6469b2bfcf9ae37b1fc5ff8581a9",
                "sha256": "adfbf2e9c38b77d0db2fb32c3bdaea638fa76b4e75847283cd707521ad2475ef"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "88ae6469b2bfcf9ae37b1fc5ff8581a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 82807,
            "upload_time": "2023-12-17T13:14:10",
            "upload_time_iso_8601": "2023-12-17T13:14:10.175232Z",
            "url": "https://files.pythonhosted.org/packages/83/94/6e729760c66b3eeeec1ea02e06596d7a36b97fa414dd7e25130a34be5238/hiredis-2.3.2-cp311-cp311-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d908e1de65a655ad7ab3b76d01e718a5f4e3503d8c25bf107731608e49a859df",
                "md5": "26637a90fb2ae436c07f925040f0fa29",
                "sha256": "80b02d27864ebaf9b153d4b99015342382eeaed651f5591ce6f07e840307c56d"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "26637a90fb2ae436c07f925040f0fa29",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 45498,
            "upload_time": "2023-12-17T13:14:11",
            "upload_time_iso_8601": "2023-12-17T13:14:11.382544Z",
            "url": "https://files.pythonhosted.org/packages/d9/08/e1de65a655ad7ab3b76d01e718a5f4e3503d8c25bf107731608e49a859df/hiredis-2.3.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f892bbc2d9400dbb18161e9e6ce5821ff06725a78df2e471875a667f6b61d08",
                "md5": "4ac66457d5723594ba4aa29246dc6f07",
                "sha256": "bd40d2e2f82a483de0d0a6dfd8c3895a02e55e5c9949610ecbded18188fd0a56"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ac66457d5723594ba4aa29246dc6f07",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 42829,
            "upload_time": "2023-12-17T13:14:13",
            "upload_time_iso_8601": "2023-12-17T13:14:13.247195Z",
            "url": "https://files.pythonhosted.org/packages/6f/89/2bbc2d9400dbb18161e9e6ce5821ff06725a78df2e471875a667f6b61d08/hiredis-2.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bd3b99f6bc21971a7ee889711e62fa9444012999821b06d4e0db300195ef17e",
                "md5": "e471844f6ff8999ac0c1d068513167a9",
                "sha256": "dfa904045d7cebfb0f01dad51352551cce1d873d7c3f80c7ded7d42f8cac8f89"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e471844f6ff8999ac0c1d068513167a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 167089,
            "upload_time": "2023-12-17T13:14:14",
            "upload_time_iso_8601": "2023-12-17T13:14:14.632680Z",
            "url": "https://files.pythonhosted.org/packages/4b/d3/b99f6bc21971a7ee889711e62fa9444012999821b06d4e0db300195ef17e/hiredis-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ea1e149bbe353c202eb578f8f13426fa9e8a9bedb72e6afd1947d830890db3f",
                "md5": "e03f5766d17c5c903fd119e7eaf32b88",
                "sha256": "28bd184b33e0dd6d65816c16521a4ba1ffbe9ff07d66873c42ea4049a62fed83"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e03f5766d17c5c903fd119e7eaf32b88",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 177968,
            "upload_time": "2023-12-17T13:14:16",
            "upload_time_iso_8601": "2023-12-17T13:14:16.370325Z",
            "url": "https://files.pythonhosted.org/packages/2e/a1/e149bbe353c202eb578f8f13426fa9e8a9bedb72e6afd1947d830890db3f/hiredis-2.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a23d1b6a97fd60998206a09b7c9426d83f1401cd63e358ba385800d2ffad7174",
                "md5": "a919f3579fcde7b37337ce4702777f03",
                "sha256": "f70481213373d44614148f0f2e38e7905be3f021902ae5167289413196de4ba4"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a919f3579fcde7b37337ce4702777f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 167638,
            "upload_time": "2023-12-17T13:14:17",
            "upload_time_iso_8601": "2023-12-17T13:14:17.974012Z",
            "url": "https://files.pythonhosted.org/packages/a2/3d/1b6a97fd60998206a09b7c9426d83f1401cd63e358ba385800d2ffad7174/hiredis-2.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd2486f9359ec4de465bafc90890b57439eca907882d03602a08eb3abec05a68",
                "md5": "945e97faa767ceafeba6fa65eeae198c",
                "sha256": "eb8797b528c1ff81eef06713623562b36db3dafa106b59f83a6468df788ff0d1"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "945e97faa767ceafeba6fa65eeae198c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 167286,
            "upload_time": "2023-12-17T13:14:20",
            "upload_time_iso_8601": "2023-12-17T13:14:20.312219Z",
            "url": "https://files.pythonhosted.org/packages/cd/24/86f9359ec4de465bafc90890b57439eca907882d03602a08eb3abec05a68/hiredis-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b301f71c0ca9acfb2ce6eacb8bfa9963a19220fdfce4b7bc0c6af247ffdec6ec",
                "md5": "c06c3148155fe8debb0879c825484417",
                "sha256": "02fc71c8333586871602db4774d3a3e403b4ccf6446dc4603ec12df563127cee"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c06c3148155fe8debb0879c825484417",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 163141,
            "upload_time": "2023-12-17T13:14:21",
            "upload_time_iso_8601": "2023-12-17T13:14:21.724505Z",
            "url": "https://files.pythonhosted.org/packages/b3/01/f71c0ca9acfb2ce6eacb8bfa9963a19220fdfce4b7bc0c6af247ffdec6ec/hiredis-2.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f811a87b64a4c33e18c30b4e41d8a4cf222c2fff74933d27ed293c2465a6439",
                "md5": "dc65bbf4e2917e539862891f2d04ea6a",
                "sha256": "0da56915bda1e0a49157191b54d3e27689b70960f0685fdd5c415dacdee2fbed"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dc65bbf4e2917e539862891f2d04ea6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 175058,
            "upload_time": "2023-12-17T13:14:23",
            "upload_time_iso_8601": "2023-12-17T13:14:23.642673Z",
            "url": "https://files.pythonhosted.org/packages/0f/81/1a87b64a4c33e18c30b4e41d8a4cf222c2fff74933d27ed293c2465a6439/hiredis-2.3.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49c035cf55026829e06b9c3e9927b7f66f1310afc1f08087796462b02c27eaef",
                "md5": "00b24dab69d1604a85b8b6575fb0078b",
                "sha256": "e2674a5a3168349435b08fa0b82998ed2536eb9acccf7087efe26e4cd088a525"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "00b24dab69d1604a85b8b6575fb0078b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 170405,
            "upload_time": "2023-12-17T13:14:25",
            "upload_time_iso_8601": "2023-12-17T13:14:25.018053Z",
            "url": "https://files.pythonhosted.org/packages/49/c0/35cf55026829e06b9c3e9927b7f66f1310afc1f08087796462b02c27eaef/hiredis-2.3.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd15c582c84db3854275d80786cf4e1a01ef11fd70e016a083707a9e24bdd36a",
                "md5": "26d4341127f15f3686ddc08a5eaf4594",
                "sha256": "dc1c3fd49930494a67dcec37d0558d99d84eca8eb3f03b17198424538f2608d7"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "26d4341127f15f3686ddc08a5eaf4594",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 183469,
            "upload_time": "2023-12-17T13:14:26",
            "upload_time_iso_8601": "2023-12-17T13:14:26.983494Z",
            "url": "https://files.pythonhosted.org/packages/dd/15/c582c84db3854275d80786cf4e1a01ef11fd70e016a083707a9e24bdd36a/hiredis-2.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c6ad8e9c48487e6f0e39fa921d88d04fef7e96500e17c5b7eb0c5bcf9406c1f",
                "md5": "c77b48fba9d3443da8868cb1977d4d73",
                "sha256": "14c7b43205e515f538a9defb4e411e0f0576caaeeda76bb9993ed505486f7562"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "c77b48fba9d3443da8868cb1977d4d73",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 173803,
            "upload_time": "2023-12-17T13:14:28",
            "upload_time_iso_8601": "2023-12-17T13:14:28.315965Z",
            "url": "https://files.pythonhosted.org/packages/6c/6a/d8e9c48487e6f0e39fa921d88d04fef7e96500e17c5b7eb0c5bcf9406c1f/hiredis-2.3.2-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "778d7a0b1e463073f987a2d269af687877a295dde4daad3842f2731d92564888",
                "md5": "cee1a6265912ac1bcc0369014432c1d3",
                "sha256": "7bac7e02915b970c3723a7a7c5df4ba7a11a3426d2a3f181e041aa506a1ff028"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cee1a6265912ac1bcc0369014432c1d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 173922,
            "upload_time": "2023-12-17T13:14:29",
            "upload_time_iso_8601": "2023-12-17T13:14:29.911905Z",
            "url": "https://files.pythonhosted.org/packages/77/8d/7a0b1e463073f987a2d269af687877a295dde4daad3842f2731d92564888/hiredis-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ff99a770058242120a66a3a256ce4d0fec10312566272b7096d5f3666f77f17",
                "md5": "589981dd9766fa02b65c4fc9ff4c5bbd",
                "sha256": "63a090761ddc3c1f7db5e67aa4e247b4b3bb9890080bdcdadd1b5200b8b89ac4"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "589981dd9766fa02b65c4fc9ff4c5bbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 19598,
            "upload_time": "2023-12-17T13:14:31",
            "upload_time_iso_8601": "2023-12-17T13:14:31.119467Z",
            "url": "https://files.pythonhosted.org/packages/2f/f9/9a770058242120a66a3a256ce4d0fec10312566272b7096d5f3666f77f17/hiredis-2.3.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7f57ed05fba6ab598ef760b5b2ee62762d0cfdef6d0bdffbebb6f9550f67a53",
                "md5": "1b6dd8afb138539412f353465968c37f",
                "sha256": "70d226ab0306a5b8d408235cabe51d4bf3554c9e8a72d53ce0b3c5c84cf78881"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1b6dd8afb138539412f353465968c37f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 21199,
            "upload_time": "2023-12-17T13:14:32",
            "upload_time_iso_8601": "2023-12-17T13:14:32.217815Z",
            "url": "https://files.pythonhosted.org/packages/a7/f5/7ed05fba6ab598ef760b5b2ee62762d0cfdef6d0bdffbebb6f9550f67a53/hiredis-2.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "506951db3aaac7c862b3023675cf71c0f41d9abb82edceb7fe31b3872238f861",
                "md5": "f5843dbcf2b232531e69762cf65dac8a",
                "sha256": "5c614552c6bd1d0d907f448f75550f6b24fb56cbfce80c094908b7990cad9702"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "f5843dbcf2b232531e69762cf65dac8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 82914,
            "upload_time": "2023-12-17T13:14:33",
            "upload_time_iso_8601": "2023-12-17T13:14:33.355464Z",
            "url": "https://files.pythonhosted.org/packages/50/69/51db3aaac7c862b3023675cf71c0f41d9abb82edceb7fe31b3872238f861/hiredis-2.3.2-cp312-cp312-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f47c0ea174d1b9416f5847f9010d2879ab4493ad104c8dbdec868779cee210a",
                "md5": "04fdc69fe687fc176444185c0c019221",
                "sha256": "9c431431abf55b64347ddc8df68b3ef840269cb0aa5bc2d26ad9506eb4b1b866"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "04fdc69fe687fc176444185c0c019221",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 45588,
            "upload_time": "2023-12-17T13:14:35",
            "upload_time_iso_8601": "2023-12-17T13:14:35.157577Z",
            "url": "https://files.pythonhosted.org/packages/0f/47/c0ea174d1b9416f5847f9010d2879ab4493ad104c8dbdec868779cee210a/hiredis-2.3.2-cp312-cp312-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92635bf5c439c1af0b7480b7f75f6af02eb7cdcd70b882b50597b68178c3f7ef",
                "md5": "97a43e06f948047ce1f501cc29a337ce",
                "sha256": "a45857e87e9d2b005e81ddac9d815a33efd26ec67032c366629f023fe64fb415"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "97a43e06f948047ce1f501cc29a337ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 42847,
            "upload_time": "2023-12-17T13:14:36",
            "upload_time_iso_8601": "2023-12-17T13:14:36.413213Z",
            "url": "https://files.pythonhosted.org/packages/92/63/5bf5c439c1af0b7480b7f75f6af02eb7cdcd70b882b50597b68178c3f7ef/hiredis-2.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95a0e59d94e353bcb745149d3c0265ce972b059a03ceb583d575b49ed2124a32",
                "md5": "cbc2a515fa17a7ad3cfe566f31461d8b",
                "sha256": "e138d141ec5a6ec800b6d01ddc3e5561ce1c940215e0eb9960876bfde7186aae"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cbc2a515fa17a7ad3cfe566f31461d8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 169068,
            "upload_time": "2023-12-17T13:14:37",
            "upload_time_iso_8601": "2023-12-17T13:14:37.607443Z",
            "url": "https://files.pythonhosted.org/packages/95/a0/e59d94e353bcb745149d3c0265ce972b059a03ceb583d575b49ed2124a32/hiredis-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "632f92ce21c16d31ba48a0ab29a7ca8d418adf755fa3396abafe1dc5150526d8",
                "md5": "9ff35bebdf4f135173d370e08a13919e",
                "sha256": "387f655444d912a963ab68abf64bf6e178a13c8e4aa945cb27388fd01a02e6f1"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9ff35bebdf4f135173d370e08a13919e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 179907,
            "upload_time": "2023-12-17T13:14:38",
            "upload_time_iso_8601": "2023-12-17T13:14:38.881365Z",
            "url": "https://files.pythonhosted.org/packages/63/2f/92ce21c16d31ba48a0ab29a7ca8d418adf755fa3396abafe1dc5150526d8/hiredis-2.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d6897535298184446c7dfa6bf8c5a7bce0ca5a105a85ffd0b2e4ecaed8cd721",
                "md5": "2bcdb6fc24edadc8c19d1c1d98e860b8",
                "sha256": "4852f4bf88f0e2d9bdf91279892f5740ed22ae368335a37a52b92a5c88691140"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2bcdb6fc24edadc8c19d1c1d98e860b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 169407,
            "upload_time": "2023-12-17T13:14:40",
            "upload_time_iso_8601": "2023-12-17T13:14:40.521557Z",
            "url": "https://files.pythonhosted.org/packages/8d/68/97535298184446c7dfa6bf8c5a7bce0ca5a105a85ffd0b2e4ecaed8cd721/hiredis-2.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "548e379a340be1bc2e39d8060c97ac050bb0f5b0c78d69bcf7384d153dc1030e",
                "md5": "10cbe35ff332e427c8595561e59fbc44",
                "sha256": "d711c107e83117129b7f8bd08e9820c43ceec6204fff072a001fd82f6d13db9f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10cbe35ff332e427c8595561e59fbc44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 169874,
            "upload_time": "2023-12-17T13:14:42",
            "upload_time_iso_8601": "2023-12-17T13:14:42.394372Z",
            "url": "https://files.pythonhosted.org/packages/54/8e/379a340be1bc2e39d8060c97ac050bb0f5b0c78d69bcf7384d153dc1030e/hiredis-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "173325716dbb79df5f9221e6d1fe9db47178a449c2046acd317ba6683e00570e",
                "md5": "6905bbd3a3462fbb1877ee6f0c8663ba",
                "sha256": "92830c16885f29163e1c2da1f3c1edb226df1210ec7e8711aaabba3dd0d5470a"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6905bbd3a3462fbb1877ee6f0c8663ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 165363,
            "upload_time": "2023-12-17T13:14:43",
            "upload_time_iso_8601": "2023-12-17T13:14:43.718912Z",
            "url": "https://files.pythonhosted.org/packages/17/33/25716dbb79df5f9221e6d1fe9db47178a449c2046acd317ba6683e00570e/hiredis-2.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d250e4e5ebbfbd844e087d34ddb7404e9bece9ac46f9e96fd6c8534498871033",
                "md5": "311f8481efc75ff20ba48207adaa3912",
                "sha256": "16b01d9ceae265d4ab9547be0cd628ecaff14b3360357a9d30c029e5ae8b7e7f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "311f8481efc75ff20ba48207adaa3912",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 176388,
            "upload_time": "2023-12-17T13:14:45",
            "upload_time_iso_8601": "2023-12-17T13:14:45.566222Z",
            "url": "https://files.pythonhosted.org/packages/d2/50/e4e5ebbfbd844e087d34ddb7404e9bece9ac46f9e96fd6c8534498871033/hiredis-2.3.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c35559d858578b39836d4d5a824bacc8fbd3fecdf76000454f352cf38343931",
                "md5": "95155934262818ce0d403cf974009bb5",
                "sha256": "5986fb5f380169270a0293bebebd95466a1c85010b4f1afc2727e4d17c452512"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "95155934262818ce0d403cf974009bb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 171773,
            "upload_time": "2023-12-17T13:14:47",
            "upload_time_iso_8601": "2023-12-17T13:14:47.001994Z",
            "url": "https://files.pythonhosted.org/packages/5c/35/559d858578b39836d4d5a824bacc8fbd3fecdf76000454f352cf38343931/hiredis-2.3.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6c8ab99e4fead92498dc9cfe5eb0a6b712b97ab0d93d95809d36b75a38cd37",
                "md5": "b5be4377266113b132f3e358af50af77",
                "sha256": "49532d7939cc51f8e99efc326090c54acf5437ed88b9c904cc8015b3c4eda9c9"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b5be4377266113b132f3e358af50af77",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 184502,
            "upload_time": "2023-12-17T13:14:48",
            "upload_time_iso_8601": "2023-12-17T13:14:48.285140Z",
            "url": "https://files.pythonhosted.org/packages/4a/6c/8ab99e4fead92498dc9cfe5eb0a6b712b97ab0d93d95809d36b75a38cd37/hiredis-2.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dbdca13dc4341e57a7405246e7857054bb3a4cc9546f9030fa6001c05e62459",
                "md5": "aad9995c7f1c86a9d2284021845422e5",
                "sha256": "8f34801b251ca43ad70691fb08b606a2e55f06b9c9fb1fc18fd9402b19d70f7b"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "aad9995c7f1c86a9d2284021845422e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 175147,
            "upload_time": "2023-12-17T13:14:49",
            "upload_time_iso_8601": "2023-12-17T13:14:49.642134Z",
            "url": "https://files.pythonhosted.org/packages/1d/bd/ca13dc4341e57a7405246e7857054bb3a4cc9546f9030fa6001c05e62459/hiredis-2.3.2-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e38e31c66f2e1f5b28ef7872b49e991f7442415495727f10055e547c6ea566ed",
                "md5": "443858acb0371158aecc2b6d714598fc",
                "sha256": "7298562a49d95570ab1c7fc4051e72824c6a80e907993a21a41ba204223e7334"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "443858acb0371158aecc2b6d714598fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 175650,
            "upload_time": "2023-12-17T13:14:50",
            "upload_time_iso_8601": "2023-12-17T13:14:50.976944Z",
            "url": "https://files.pythonhosted.org/packages/e3/8e/31c66f2e1f5b28ef7872b49e991f7442415495727f10055e547c6ea566ed/hiredis-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39f1ab594bb6a08dfc9465a2d06315d9ce24c6d189b997d85c373fad60cd3efb",
                "md5": "736282b888ad533b1c57eb2847645659",
                "sha256": "e1d86b75de787481b04d112067a4033e1ecfda2a060e50318a74e4e1c9b2948c"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "736282b888ad533b1c57eb2847645659",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 19739,
            "upload_time": "2023-12-17T13:14:52",
            "upload_time_iso_8601": "2023-12-17T13:14:52.860490Z",
            "url": "https://files.pythonhosted.org/packages/39/f1/ab594bb6a08dfc9465a2d06315d9ce24c6d189b997d85c373fad60cd3efb/hiredis-2.3.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1379f95e75bd0c8da937f57899d2de73e57fd9f87b81375abd4ab58f6d7c23a",
                "md5": "92c8fb4215defd5d3aa04bc4a7cfc32b",
                "sha256": "6dbfe1887ffa5cf3030451a56a8f965a9da2fa82b7149357752b67a335a05fc6"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "92c8fb4215defd5d3aa04bc4a7cfc32b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 21269,
            "upload_time": "2023-12-17T13:14:53",
            "upload_time_iso_8601": "2023-12-17T13:14:53.952377Z",
            "url": "https://files.pythonhosted.org/packages/d1/37/9f95e75bd0c8da937f57899d2de73e57fd9f87b81375abd4ab58f6d7c23a/hiredis-2.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4727574df04dd0bb12157f666e0519a48d5343ca17ed6a85090412a48ad37a6",
                "md5": "dcb8528b6351a96c3a0b384d1a57141c",
                "sha256": "4fc242e9da4af48714199216eb535b61e8f8d66552c8819e33fc7806bd465a09"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcb8528b6351a96c3a0b384d1a57141c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 45492,
            "upload_time": "2023-12-17T13:14:55",
            "upload_time_iso_8601": "2023-12-17T13:14:55.102492Z",
            "url": "https://files.pythonhosted.org/packages/f4/72/7574df04dd0bb12157f666e0519a48d5343ca17ed6a85090412a48ad37a6/hiredis-2.3.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8df43383aabfbfd8ba51d0b534efcd4f103933f355f655e8a2a4e8660b0f54d0",
                "md5": "7e50193117f3522ded0e3ef0007d2167",
                "sha256": "e81aa4e9a1fcf604c8c4b51aa5d258e195a6ba81efe1da82dea3204443eba01c"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e50193117f3522ded0e3ef0007d2167",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 164934,
            "upload_time": "2023-12-17T13:14:56",
            "upload_time_iso_8601": "2023-12-17T13:14:56.357882Z",
            "url": "https://files.pythonhosted.org/packages/8d/f4/3383aabfbfd8ba51d0b534efcd4f103933f355f655e8a2a4e8660b0f54d0/hiredis-2.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22472d44b4363c90942dd1f2495c6a49240e40e7ac5b91d5ea45209936f83174",
                "md5": "3cc15f4fd86e2b001cda7533a2f7c6bc",
                "sha256": "419780f8583ddb544ffa86f9d44a7fcc183cd826101af4e5ffe535b6765f5f6b"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3cc15f4fd86e2b001cda7533a2f7c6bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 175966,
            "upload_time": "2023-12-17T13:14:58",
            "upload_time_iso_8601": "2023-12-17T13:14:58.320552Z",
            "url": "https://files.pythonhosted.org/packages/22/47/2d44b4363c90942dd1f2495c6a49240e40e7ac5b91d5ea45209936f83174/hiredis-2.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b08e6469f3c02d5c5b357435be90411e36f42fc403892673b571f3b81badfbe",
                "md5": "e2d2034d5f4132910087c90d7daa596b",
                "sha256": "6871306d8b98a15e53a5f289ec1106a3a1d43e7ab6f4d785f95fcef9a7bd9504"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e2d2034d5f4132910087c90d7daa596b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 165594,
            "upload_time": "2023-12-17T13:14:59",
            "upload_time_iso_8601": "2023-12-17T13:14:59.698050Z",
            "url": "https://files.pythonhosted.org/packages/9b/08/e6469f3c02d5c5b357435be90411e36f42fc403892673b571f3b81badfbe/hiredis-2.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5863be9bae1df5361f91ab25949d77866d90bd9b69dd68189f33d3f62ea7111",
                "md5": "94592487f4cc70120e463059ab3275e9",
                "sha256": "88cb0b35b63717ef1e41d62f4f8717166f7c6245064957907cfe177cc144357c"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94592487f4cc70120e463059ab3275e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 165417,
            "upload_time": "2023-12-17T13:15:01",
            "upload_time_iso_8601": "2023-12-17T13:15:01.454503Z",
            "url": "https://files.pythonhosted.org/packages/c5/86/3be9bae1df5361f91ab25949d77866d90bd9b69dd68189f33d3f62ea7111/hiredis-2.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b964787b7d21c66ce037810e128e753656d6cb81885781e34d0daf0d8525bf6",
                "md5": "984425693c4dd6592e875cc7ec399d01",
                "sha256": "8c490191fa1218851f8a80c5a21a05a6f680ac5aebc2e688b71cbfe592f8fec6"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "984425693c4dd6592e875cc7ec399d01",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 161232,
            "upload_time": "2023-12-17T13:15:04",
            "upload_time_iso_8601": "2023-12-17T13:15:04.364056Z",
            "url": "https://files.pythonhosted.org/packages/3b/96/4787b7d21c66ce037810e128e753656d6cb81885781e34d0daf0d8525bf6/hiredis-2.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e17f3b8eee49d55b2f741c1256cf9a1e75b4295fd4b143e7666735275eae9810",
                "md5": "6a682d3dddd9fb9bec03df065770de46",
                "sha256": "4baf4b579b108062e91bd2a991dc98b9dc3dc06e6288db2d98895eea8acbac22"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a682d3dddd9fb9bec03df065770de46",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 169541,
            "upload_time": "2023-12-17T13:15:05",
            "upload_time_iso_8601": "2023-12-17T13:15:05.907463Z",
            "url": "https://files.pythonhosted.org/packages/e1/7f/3b8eee49d55b2f741c1256cf9a1e75b4295fd4b143e7666735275eae9810/hiredis-2.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e59c36831dec39ff482b557567ff5238d1e42bba20ed0291dc4155e139f6356",
                "md5": "478d0e597e19d0e535e2f23da801556b",
                "sha256": "e627d8ef5e100556e09fb44c9571a432b10e11596d3c4043500080ca9944a91a"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "478d0e597e19d0e535e2f23da801556b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 164971,
            "upload_time": "2023-12-17T13:15:08",
            "upload_time_iso_8601": "2023-12-17T13:15:08.004907Z",
            "url": "https://files.pythonhosted.org/packages/4e/59/c36831dec39ff482b557567ff5238d1e42bba20ed0291dc4155e139f6356/hiredis-2.3.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90d852bdf9703c1618f9d3133d8f3146e7d1e25aa146e9271e70239782969617",
                "md5": "a2a9f2a1eeab1bdd8d5f7199b455c0e4",
                "sha256": "ba3dc0af0def8c21ce7d903c59ea1e8ec4cb073f25ece9edaec7f92a286cd219"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a2a9f2a1eeab1bdd8d5f7199b455c0e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 177855,
            "upload_time": "2023-12-17T13:15:09",
            "upload_time_iso_8601": "2023-12-17T13:15:09.415705Z",
            "url": "https://files.pythonhosted.org/packages/90/d8/52bdf9703c1618f9d3133d8f3146e7d1e25aa146e9271e70239782969617/hiredis-2.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "452dcba99a55cf3e5a6d5efddfd6a4c1c8edb34f9e3b511b5b9900ffbb53a87a",
                "md5": "f7aad660e4d6616c8e3fcba88eb091cf",
                "sha256": "56e9b7d6051688ca94e68c0c8a54a243f8db841911b683cedf89a29d4de91509"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "f7aad660e4d6616c8e3fcba88eb091cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 167955,
            "upload_time": "2023-12-17T13:15:10",
            "upload_time_iso_8601": "2023-12-17T13:15:10.838842Z",
            "url": "https://files.pythonhosted.org/packages/45/2d/cba99a55cf3e5a6d5efddfd6a4c1c8edb34f9e3b511b5b9900ffbb53a87a/hiredis-2.3.2-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f46b2b694baba5f20e6e70ecdc87f3c988b9a462eb188317b9ed7547dd2a48f",
                "md5": "ca175a02cb04d6a94753ce8e4e73b336",
                "sha256": "380e029bb4b1d34cf560fcc8950bf6b57c2ef0c9c8b7c7ac20b7c524a730fadd"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ca175a02cb04d6a94753ce8e4e73b336",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 168188,
            "upload_time": "2023-12-17T13:15:12",
            "upload_time_iso_8601": "2023-12-17T13:15:12.672601Z",
            "url": "https://files.pythonhosted.org/packages/4f/46/b2b694baba5f20e6e70ecdc87f3c988b9a462eb188317b9ed7547dd2a48f/hiredis-2.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42d36e6aaa72a07e4bcb7043ffbd3b3d5d944298514fe5b822914bce66f40399",
                "md5": "8622fdf457876350c475ecc6a284859e",
                "sha256": "948d9f2ca7841794dd9b204644963a4bcd69ced4e959b0d4ecf1b8ce994a6daa"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "8622fdf457876350c475ecc6a284859e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 19551,
            "upload_time": "2023-12-17T13:15:13",
            "upload_time_iso_8601": "2023-12-17T13:15:13.980246Z",
            "url": "https://files.pythonhosted.org/packages/42/d3/6e6aaa72a07e4bcb7043ffbd3b3d5d944298514fe5b822914bce66f40399/hiredis-2.3.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86d1ab677a51f58e60c6d482bdd11b5cbd28052333ce2cdbd4aaa01d82533a2f",
                "md5": "8bd9ff0e456139af4a0950a0e45e2a90",
                "sha256": "cfa67afe2269b2d203cd1389c00c5bc35a287cd57860441fb0e53b371ea6a029"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8bd9ff0e456139af4a0950a0e45e2a90",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 21185,
            "upload_time": "2023-12-17T13:15:15",
            "upload_time_iso_8601": "2023-12-17T13:15:15.140377Z",
            "url": "https://files.pythonhosted.org/packages/86/d1/ab677a51f58e60c6d482bdd11b5cbd28052333ce2cdbd4aaa01d82533a2f/hiredis-2.3.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de6e6d11a7e54a131db1cb4961470977df330bc314c68631b00a727b24fecb2f",
                "md5": "069919374f09c90edc86544b4f861816",
                "sha256": "bcbe47da0aebc00a7cfe3ebdcff0373b86ce2b1856251c003e3d69c9db44b5a7"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "069919374f09c90edc86544b4f861816",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 82798,
            "upload_time": "2023-12-17T13:15:16",
            "upload_time_iso_8601": "2023-12-17T13:15:16.486101Z",
            "url": "https://files.pythonhosted.org/packages/de/6e/6d11a7e54a131db1cb4961470977df330bc314c68631b00a727b24fecb2f/hiredis-2.3.2-cp38-cp38-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59bd229ebb225820f9900d23129970e5f02af081dfc2df948bafb9dc3c829679",
                "md5": "9b5f6828c55e9bac48e29ba9f0c0e0e2",
                "sha256": "f2c9c0d910dd3f7df92f0638e7f65d8edd7f442203caf89c62fc79f11b0b73f8"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b5f6828c55e9bac48e29ba9f0c0e0e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 45496,
            "upload_time": "2023-12-17T13:15:17",
            "upload_time_iso_8601": "2023-12-17T13:15:17.867109Z",
            "url": "https://files.pythonhosted.org/packages/59/bd/229ebb225820f9900d23129970e5f02af081dfc2df948bafb9dc3c829679/hiredis-2.3.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1dae11b573446c4a1484e6cef8eaff84556f69f735f48d95041e6a31ae40257",
                "md5": "dda4c7c7bbd251a344844cff04e57a7e",
                "sha256": "01b6c24c0840ac7afafbc4db236fd55f56a9a0919a215c25a238f051781f4772"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dda4c7c7bbd251a344844cff04e57a7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 42813,
            "upload_time": "2023-12-17T13:15:19",
            "upload_time_iso_8601": "2023-12-17T13:15:19.158786Z",
            "url": "https://files.pythonhosted.org/packages/c1/da/e11b573446c4a1484e6cef8eaff84556f69f735f48d95041e6a31ae40257/hiredis-2.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38e2a0a874cc77f101769931eb29f30347f7ac424350f1a1cc1ea168c4d79ed9",
                "md5": "7881bcf7010cdd1530fc8c0ba8668fcb",
                "sha256": "c1f567489f422d40c21e53212a73bef4638d9f21043848150f8544ef1f3a6ad1"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7881bcf7010cdd1530fc8c0ba8668fcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 167500,
            "upload_time": "2023-12-17T13:15:20",
            "upload_time_iso_8601": "2023-12-17T13:15:20.669417Z",
            "url": "https://files.pythonhosted.org/packages/38/e2/a0a874cc77f101769931eb29f30347f7ac424350f1a1cc1ea168c4d79ed9/hiredis-2.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5948bb4249761e62d949be8de0e7a1e6f774d684c11ec1a4cace415847bc5c68",
                "md5": "7160cbded841678e48e6e1125fbd7603",
                "sha256": "28adecb308293e705e44087a1c2d557a816f032430d8a2a9bb7873902a1c6d48"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7160cbded841678e48e6e1125fbd7603",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 178131,
            "upload_time": "2023-12-17T13:15:22",
            "upload_time_iso_8601": "2023-12-17T13:15:22.085516Z",
            "url": "https://files.pythonhosted.org/packages/59/48/bb4249761e62d949be8de0e7a1e6f774d684c11ec1a4cace415847bc5c68/hiredis-2.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8dea4f6726ec3b45e2b0535136d697fdd5324ccc7f5899873a8d3cde3f4fe7f",
                "md5": "a826d7814118f38f78715e7eed6a58f4",
                "sha256": "27e9619847e9dc70b14b1ad2d0fb4889e7ca18996585c3463cff6c951fd6b10b"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a826d7814118f38f78715e7eed6a58f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 167751,
            "upload_time": "2023-12-17T13:15:24",
            "upload_time_iso_8601": "2023-12-17T13:15:24.164262Z",
            "url": "https://files.pythonhosted.org/packages/c8/de/a4f6726ec3b45e2b0535136d697fdd5324ccc7f5899873a8d3cde3f4fe7f/hiredis-2.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f227a4a8cf1f8c1248fb28ae0f3b2c53e7824949508fdfce807a051a24718b65",
                "md5": "cd7cac6c52b41e2400af2ce0feb01622",
                "sha256": "9a0026cfbf29f07649b0e34509091a2a6016ff8844b127de150efce1c3aff60b"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd7cac6c52b41e2400af2ce0feb01622",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 167618,
            "upload_time": "2023-12-17T13:15:25",
            "upload_time_iso_8601": "2023-12-17T13:15:25.655023Z",
            "url": "https://files.pythonhosted.org/packages/f2/27/a4a8cf1f8c1248fb28ae0f3b2c53e7824949508fdfce807a051a24718b65/hiredis-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2368523c130e99aa74f55159a4c42d3c8aee6e3eb72b8ea5d71bfe8df68997de",
                "md5": "5724372fc78738b450987b6dc82a7791",
                "sha256": "f9de7586522e5da6bee83c9cf0dcccac0857a43249cb4d721a2e312d98a684d1"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5724372fc78738b450987b6dc82a7791",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 163254,
            "upload_time": "2023-12-17T13:15:27",
            "upload_time_iso_8601": "2023-12-17T13:15:27.700461Z",
            "url": "https://files.pythonhosted.org/packages/23/68/523c130e99aa74f55159a4c42d3c8aee6e3eb72b8ea5d71bfe8df68997de/hiredis-2.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "985cb9c83cba2ddbdc7856f3ec74479dc880d511a6ba789951f38bd3eee182e3",
                "md5": "f232880acb64e2c724ea6ec0b3d78e96",
                "sha256": "e58494f282215fc461b06709e9a195a24c12ba09570f25bdf9efb036acc05101"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f232880acb64e2c724ea6ec0b3d78e96",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 172280,
            "upload_time": "2023-12-17T13:15:29",
            "upload_time_iso_8601": "2023-12-17T13:15:29.073507Z",
            "url": "https://files.pythonhosted.org/packages/98/5c/b9c83cba2ddbdc7856f3ec74479dc880d511a6ba789951f38bd3eee182e3/hiredis-2.3.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77aae528fd9c3f7fae04944220721969fd60c00a3645e04f64351a751864262f",
                "md5": "d925380c6838882d1ca99c797df2e891",
                "sha256": "de3a32b4b76d46f1eb42b24a918d51d8ca52411a381748196241d59a895f7c5c"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d925380c6838882d1ca99c797df2e891",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 167275,
            "upload_time": "2023-12-17T13:15:30",
            "upload_time_iso_8601": "2023-12-17T13:15:30.430800Z",
            "url": "https://files.pythonhosted.org/packages/77/aa/e528fd9c3f7fae04944220721969fd60c00a3645e04f64351a751864262f/hiredis-2.3.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82c5704979bc750e96a7875a6f40067b4630eed9932379af81fbefe237328979",
                "md5": "cc5987afc76534573a3d58118107ab9d",
                "sha256": "1979334ccab21a49c544cd1b8d784ffb2747f99a51cb0bd0976eebb517628382"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "cc5987afc76534573a3d58118107ab9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 180535,
            "upload_time": "2023-12-17T13:15:31",
            "upload_time_iso_8601": "2023-12-17T13:15:31.863864Z",
            "url": "https://files.pythonhosted.org/packages/82/c5/704979bc750e96a7875a6f40067b4630eed9932379af81fbefe237328979/hiredis-2.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6392422f0015c26061ac9b8ca63b150e8577d32fbf33fa20e92daf47f7e64d9",
                "md5": "aa645e4214f8da17eaf50da36f2fb9c6",
                "sha256": "0c0773266e1c38a06e7593bd08870ac1503f5f0ce0f5c63f2b4134b090b5d6a4"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "aa645e4214f8da17eaf50da36f2fb9c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 170402,
            "upload_time": "2023-12-17T13:15:33",
            "upload_time_iso_8601": "2023-12-17T13:15:33.251225Z",
            "url": "https://files.pythonhosted.org/packages/a6/39/2422f0015c26061ac9b8ca63b150e8577d32fbf33fa20e92daf47f7e64d9/hiredis-2.3.2-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45aa150839fe0a3111e4738af239f048811ec9d7e8c6cd1be7418127faa7ee14",
                "md5": "3601e1a72f682ac0a3ed0d0e5ba64fb2",
                "sha256": "bd1cee053416183adcc8e6134704c46c60c3f66b8faaf9e65bf76191ca59a2f7"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3601e1a72f682ac0a3ed0d0e5ba64fb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 170669,
            "upload_time": "2023-12-17T13:15:35",
            "upload_time_iso_8601": "2023-12-17T13:15:35.227943Z",
            "url": "https://files.pythonhosted.org/packages/45/aa/150839fe0a3111e4738af239f048811ec9d7e8c6cd1be7418127faa7ee14/hiredis-2.3.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc552b27c9ce696764c958d7567e065b43ba590510ae6d2bcf93bbf90dd2835e",
                "md5": "4ec5a8492bcde277f6529a6d5cceefae",
                "sha256": "5341ce3d01ef3c7418a72e370bf028c7aeb16895e79e115fe4c954fff990489e"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "4ec5a8492bcde277f6529a6d5cceefae",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 19607,
            "upload_time": "2023-12-17T13:15:36",
            "upload_time_iso_8601": "2023-12-17T13:15:36.605469Z",
            "url": "https://files.pythonhosted.org/packages/bc/55/2b27c9ce696764c958d7567e065b43ba590510ae6d2bcf93bbf90dd2835e/hiredis-2.3.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf2dc679c27a48f9dda205eec4569956680636bd72ef31795aadd32431a1c611",
                "md5": "478e426c4122035adbd51a5dec66d563",
                "sha256": "8fc7197ff33047ce43a67851ccf190acb5b05c52fd4a001bb55766358f04da68"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "478e426c4122035adbd51a5dec66d563",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 21208,
            "upload_time": "2023-12-17T13:15:38",
            "upload_time_iso_8601": "2023-12-17T13:15:38.376264Z",
            "url": "https://files.pythonhosted.org/packages/bf/2d/c679c27a48f9dda205eec4569956680636bd72ef31795aadd32431a1c611/hiredis-2.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe538d5dbd95bf60bb4f2b1b52000c9e62142e08717d33c6d010b8aceb6d8b4e",
                "md5": "34f0c1ddef58d432bc1a6cac6fa1bce6",
                "sha256": "f47775e27388b58ce52f4f972f80e45b13c65113e9e6b6bf60148f893871dc9b"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-macosx_10_15_universal2.whl",
            "has_sig": false,
            "md5_digest": "34f0c1ddef58d432bc1a6cac6fa1bce6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 82805,
            "upload_time": "2023-12-17T13:15:40",
            "upload_time_iso_8601": "2023-12-17T13:15:40.206047Z",
            "url": "https://files.pythonhosted.org/packages/fe/53/8d5dbd95bf60bb4f2b1b52000c9e62142e08717d33c6d010b8aceb6d8b4e/hiredis-2.3.2-cp39-cp39-macosx_10_15_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f96673ca3c54b87984100d8a3986be2b6b75b5d0bba682b708db6f6ac9de73f1",
                "md5": "5f9beca5005ab202382502c73c22405a",
                "sha256": "9412a06b8a8e09abd6313d96864b6d7713c6003a365995a5c70cfb9209df1570"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f9beca5005ab202382502c73c22405a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 45491,
            "upload_time": "2023-12-17T13:15:41",
            "upload_time_iso_8601": "2023-12-17T13:15:41.645676Z",
            "url": "https://files.pythonhosted.org/packages/f9/66/73ca3c54b87984100d8a3986be2b6b75b5d0bba682b708db6f6ac9de73f1/hiredis-2.3.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08e890fab2115ac3e65d6670dec8bf5dc68cd2de3ad57f1cb83997481535b398",
                "md5": "8904d7dd4cf56835a62a769d7a48d4a6",
                "sha256": "f3020b60e3fc96d08c2a9b011f1c2e2a6bdcc09cb55df93c509b88be5cb791df"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8904d7dd4cf56835a62a769d7a48d4a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 42821,
            "upload_time": "2023-12-17T13:15:42",
            "upload_time_iso_8601": "2023-12-17T13:15:42.827511Z",
            "url": "https://files.pythonhosted.org/packages/08/e8/90fab2115ac3e65d6670dec8bf5dc68cd2de3ad57f1cb83997481535b398/hiredis-2.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2532bbb21f9712b856eb3400913ebf286060b998ffba1e5151fb40daad22cd3",
                "md5": "7c9ebec561d5045d65796fb4a28e6e96",
                "sha256": "53d0f2c59bce399b8010a21bc779b4f8c32d0f582b2284ac8c98dc7578b27bc4"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7c9ebec561d5045d65796fb4a28e6e96",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 165709,
            "upload_time": "2023-12-17T13:15:44",
            "upload_time_iso_8601": "2023-12-17T13:15:44.079545Z",
            "url": "https://files.pythonhosted.org/packages/d2/53/2bbb21f9712b856eb3400913ebf286060b998ffba1e5151fb40daad22cd3/hiredis-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad6ab3e34358591c5dae07c6299daed021c5d7d535a76a7eef5cb30a7e166b94",
                "md5": "3050357aaa2de2c21af713105778e26a",
                "sha256": "57c0d0c7e308ed5280a4900d4468bbfec51f0e1b4cde1deae7d4e639bc6b7766"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3050357aaa2de2c21af713105778e26a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 176640,
            "upload_time": "2023-12-17T13:15:46",
            "upload_time_iso_8601": "2023-12-17T13:15:46.082341Z",
            "url": "https://files.pythonhosted.org/packages/ad/6a/b3e34358591c5dae07c6299daed021c5d7d535a76a7eef5cb30a7e166b94/hiredis-2.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ec00fc2742ed23ec42928e9eb2adcd50772287652b5163afaac687cccd61160",
                "md5": "82689f883e9947cf8d2a0390054417e5",
                "sha256": "1d63318ca189fddc7e75f6a4af8eae9c0545863619fb38cfba5f43e81280b286"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "82689f883e9947cf8d2a0390054417e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 166157,
            "upload_time": "2023-12-17T13:15:47",
            "upload_time_iso_8601": "2023-12-17T13:15:47.577871Z",
            "url": "https://files.pythonhosted.org/packages/5e/c0/0fc2742ed23ec42928e9eb2adcd50772287652b5163afaac687cccd61160/hiredis-2.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c76e435ba1bb740255a7a68954d1fdd56e2e0ff88f559c2edae1be093c5b5ec3",
                "md5": "23b452abf820132e47e6fbcf478deca0",
                "sha256": "e741ffe4e2db78a1b9dd6e5d29678ce37fbaaf65dfe132e5b82a794413302ef1"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23b452abf820132e47e6fbcf478deca0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 165886,
            "upload_time": "2023-12-17T13:15:48",
            "upload_time_iso_8601": "2023-12-17T13:15:48.997472Z",
            "url": "https://files.pythonhosted.org/packages/c7/6e/435ba1bb740255a7a68954d1fdd56e2e0ff88f559c2edae1be093c5b5ec3/hiredis-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8439554892282dd8a9cecc8c4f97b20bdae25697405237a5a47a26b08951f4c",
                "md5": "062db68313e82c632777e47e263865d3",
                "sha256": "eb98038ccd368e0d88bd92ee575c58cfaf33e77f788c36b2a89a84ee1936dc6b"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "062db68313e82c632777e47e263865d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 162242,
            "upload_time": "2023-12-17T13:15:50",
            "upload_time_iso_8601": "2023-12-17T13:15:50.337451Z",
            "url": "https://files.pythonhosted.org/packages/f8/43/9554892282dd8a9cecc8c4f97b20bdae25697405237a5a47a26b08951f4c/hiredis-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc92a6903ab12bf6d15d3a50d7a70ead886cf597227986c8b937f95324f4f2a5",
                "md5": "59803dd1710bd1730c93b05855562e19",
                "sha256": "eae62ed60d53b3561148bcd8c2383e430af38c0deab9f2dd15f8874888ffd26f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "59803dd1710bd1730c93b05855562e19",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 171010,
            "upload_time": "2023-12-17T13:15:51",
            "upload_time_iso_8601": "2023-12-17T13:15:51.776948Z",
            "url": "https://files.pythonhosted.org/packages/cc/92/a6903ab12bf6d15d3a50d7a70ead886cf597227986c8b937f95324f4f2a5/hiredis-2.3.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b779396b7943e29d9fa6b231a557ca6e5f64f74ce68220cf7c96d11c0f31e45a",
                "md5": "89fd13cedeba98640cb85b8b2c50d1e2",
                "sha256": "ca33c175c1cf60222d9c6d01c38fc17ec3a484f32294af781de30226b003e00f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "89fd13cedeba98640cb85b8b2c50d1e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 166201,
            "upload_time": "2023-12-17T13:15:53",
            "upload_time_iso_8601": "2023-12-17T13:15:53.145523Z",
            "url": "https://files.pythonhosted.org/packages/b7/79/396b7943e29d9fa6b231a557ca6e5f64f74ce68220cf7c96d11c0f31e45a/hiredis-2.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d83a292b00c0ae665cdd5b458439029ed594885f7798d5492ca5bcd8dbd260e9",
                "md5": "2d27be7d54c838727f1d1d52c5622e07",
                "sha256": "0c5f6972d2bdee3cd301d5c5438e31195cf1cabf6fd9274491674d4ceb46914d"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2d27be7d54c838727f1d1d52c5622e07",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 179428,
            "upload_time": "2023-12-17T13:15:54",
            "upload_time_iso_8601": "2023-12-17T13:15:54.829116Z",
            "url": "https://files.pythonhosted.org/packages/d8/3a/292b00c0ae665cdd5b458439029ed594885f7798d5492ca5bcd8dbd260e9/hiredis-2.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "317fe4b5dda9daca5803c0359d04b2bd619cfd31430b05232b351be411b5f61f",
                "md5": "1ff0e9a7d70496299078a416c3dfed1e",
                "sha256": "a6b54dabfaa5dbaa92f796f0c32819b4636e66aa8e9106c3d421624bd2a2d676"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "1ff0e9a7d70496299078a416c3dfed1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 169224,
            "upload_time": "2023-12-17T13:15:56",
            "upload_time_iso_8601": "2023-12-17T13:15:56.217950Z",
            "url": "https://files.pythonhosted.org/packages/31/7f/e4b5dda9daca5803c0359d04b2bd619cfd31430b05232b351be411b5f61f/hiredis-2.3.2-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc1b21e6ccdf6724edf58c54b56027c07cddf9b072b1613a74223af1251d17ca",
                "md5": "7ee0a2b0531f1a6caa9f532e92cbd027",
                "sha256": "e96cd35df012a17c87ae276196ea8f215e77d6eeca90709eb03999e2d5e3fd8a"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ee0a2b0531f1a6caa9f532e92cbd027",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 169497,
            "upload_time": "2023-12-17T13:15:57",
            "upload_time_iso_8601": "2023-12-17T13:15:57.770365Z",
            "url": "https://files.pythonhosted.org/packages/fc/1b/21e6ccdf6724edf58c54b56027c07cddf9b072b1613a74223af1251d17ca/hiredis-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f31a5aaf6d4e53f8ad8887109658c7225dc2797d2a18b9e12ce1276934b5ac69",
                "md5": "28aab2957325a9c539878c3aa438bb25",
                "sha256": "63b99b5ea9fe4f21469fb06a16ca5244307678636f11917359e3223aaeca0b67"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "28aab2957325a9c539878c3aa438bb25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 19603,
            "upload_time": "2023-12-17T13:15:59",
            "upload_time_iso_8601": "2023-12-17T13:15:59.177492Z",
            "url": "https://files.pythonhosted.org/packages/f3/1a/5aaf6d4e53f8ad8887109658c7225dc2797d2a18b9e12ce1276934b5ac69/hiredis-2.3.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efe3d953ec8ed06802065541bbd4586e72bc6d2ffcbb74832b50e41238e32254",
                "md5": "d3179dea996e89c0e23b1d3524c27b53",
                "sha256": "a50c8af811b35b8a43b1590cf890b61ff2233225257a3cad32f43b3ec7ff1b9f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d3179dea996e89c0e23b1d3524c27b53",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 21217,
            "upload_time": "2023-12-17T13:16:00",
            "upload_time_iso_8601": "2023-12-17T13:16:00.343245Z",
            "url": "https://files.pythonhosted.org/packages/ef/e3/d953ec8ed06802065541bbd4586e72bc6d2ffcbb74832b50e41238e32254/hiredis-2.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cb364d652cbe09c7d53becfbac0a4dd88d12fc3d2cc0273989ef0306728f096",
                "md5": "4c355d9798e7763d369e00bf127548f5",
                "sha256": "7e8bf4444b09419b77ce671088db9f875b26720b5872d97778e2545cd87dba4a"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c355d9798e7763d369e00bf127548f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 40218,
            "upload_time": "2023-12-17T13:16:01",
            "upload_time_iso_8601": "2023-12-17T13:16:01.567650Z",
            "url": "https://files.pythonhosted.org/packages/0c/b3/64d652cbe09c7d53becfbac0a4dd88d12fc3d2cc0273989ef0306728f096/hiredis-2.3.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9045d5d88ba726eb20ffdeb321b8f60bebda9b3491a54445f16c1094aafcea9",
                "md5": "d04e4c87302d0ee93a93205ecf2df29f",
                "sha256": "5bd42d0d45ea47a2f96babd82a659fbc60612ab9423a68e4a8191e538b85542a"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d04e4c87302d0ee93a93205ecf2df29f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 47959,
            "upload_time": "2023-12-17T13:16:03",
            "upload_time_iso_8601": "2023-12-17T13:16:03.503737Z",
            "url": "https://files.pythonhosted.org/packages/c9/04/5d5d88ba726eb20ffdeb321b8f60bebda9b3491a54445f16c1094aafcea9/hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b684c3975bb925d9b21e4d19cc4a1d6ea2db0a851091f6ab8e801aeee450b8f7",
                "md5": "fb4889abef7e2690f04167ab3ed717f7",
                "sha256": "80441b55edbef868e2563842f5030982b04349408396e5ac2b32025fb06b5212"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb4889abef7e2690f04167ab3ed717f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 48354,
            "upload_time": "2023-12-17T13:16:04",
            "upload_time_iso_8601": "2023-12-17T13:16:04.879530Z",
            "url": "https://files.pythonhosted.org/packages/b6/84/c3975bb925d9b21e4d19cc4a1d6ea2db0a851091f6ab8e801aeee450b8f7/hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "877f4cd4b249c47c7f3fbbd8e6272775de35c8a49dde0935e1fac5b43505416e",
                "md5": "82ff80c452794e8dc444f7b184514efd",
                "sha256": "ec444ab8f27562a363672d6a7372bc0700a1bdc9764563c57c5f9efa0e592b5f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "82ff80c452794e8dc444f7b184514efd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 55683,
            "upload_time": "2023-12-17T13:16:06",
            "upload_time_iso_8601": "2023-12-17T13:16:06.109369Z",
            "url": "https://files.pythonhosted.org/packages/87/7f/4cd4b249c47c7f3fbbd8e6272775de35c8a49dde0935e1fac5b43505416e/hiredis-2.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac273cc18140f94d38e9c30b8a66447413f581bec29d0989c54940d21c9829c5",
                "md5": "4d18302c1bb8279f9cc808a61dc52447",
                "sha256": "f9f606e810858207d4b4287b4ef0dc622c2aa469548bf02b59dcc616f134f811"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4d18302c1bb8279f9cc808a61dc52447",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 21213,
            "upload_time": "2023-12-17T13:16:07",
            "upload_time_iso_8601": "2023-12-17T13:16:07.308450Z",
            "url": "https://files.pythonhosted.org/packages/ac/27/3cc18140f94d38e9c30b8a66447413f581bec29d0989c54940d21c9829c5/hiredis-2.3.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3e515968435836790d4df5a9246aa31e0a33c54e6fb702b5e86642ca4039d9d",
                "md5": "ee7c1d54a9d9b31dded3edab389db19e",
                "sha256": "c3dde4ca00fe9eee3b76209711f1941bb86db42b8a75d7f2249ff9dfc026ab0e"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee7c1d54a9d9b31dded3edab389db19e",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 40199,
            "upload_time": "2023-12-17T13:16:08",
            "upload_time_iso_8601": "2023-12-17T13:16:08.719234Z",
            "url": "https://files.pythonhosted.org/packages/f3/e5/15968435836790d4df5a9246aa31e0a33c54e6fb702b5e86642ca4039d9d/hiredis-2.3.2-pp37-pypy37_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9f545b91ea8f69841e158978d744842afc76859850e9bc3e3cb82845a0f9782",
                "md5": "6cd0f138cf5556cb60905fc8527052ec",
                "sha256": "d4dd676107a1d3c724a56a9d9db38166ad4cf44f924ee701414751bd18a784a0"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6cd0f138cf5556cb60905fc8527052ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 47963,
            "upload_time": "2023-12-17T13:16:10",
            "upload_time_iso_8601": "2023-12-17T13:16:10.059688Z",
            "url": "https://files.pythonhosted.org/packages/c9/f5/45b91ea8f69841e158978d744842afc76859850e9bc3e3cb82845a0f9782/hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8538e37b78c676774199df3ea1f7e9c9b223ff774c00dfaf4ec829757d1370b7",
                "md5": "fa82403757bf840f2e3dabfd71d2b7bb",
                "sha256": "ce42649e2676ad783186264d5ffc788a7612ecd7f9effb62d51c30d413a3eefe"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa82403757bf840f2e3dabfd71d2b7bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 48347,
            "upload_time": "2023-12-17T13:16:11",
            "upload_time_iso_8601": "2023-12-17T13:16:11.437978Z",
            "url": "https://files.pythonhosted.org/packages/85/38/e37b78c676774199df3ea1f7e9c9b223ff774c00dfaf4ec829757d1370b7/hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e83b43edfc4c3449a68ed666ab1d95b5b55f0e6d779d29fcacaf6166637814c",
                "md5": "7fd0c1b250553ff36297318ca4f21b10",
                "sha256": "8e3f8b1733078ac663dad57e20060e16389a60ab542f18a97931f3a2a2dd64a4"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7fd0c1b250553ff36297318ca4f21b10",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 55687,
            "upload_time": "2023-12-17T13:16:12",
            "upload_time_iso_8601": "2023-12-17T13:16:12.773032Z",
            "url": "https://files.pythonhosted.org/packages/5e/83/b43edfc4c3449a68ed666ab1d95b5b55f0e6d779d29fcacaf6166637814c/hiredis-2.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5869cd4943c89d90766ebced5e18ae4618e4e28c495178e8433af4fb6d8e86ac",
                "md5": "2ae268aacce05d6bd5ed5dfb3a48c799",
                "sha256": "532a84a82156a82529ec401d1c25d677c6543c791e54a263aa139541c363995f"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ae268aacce05d6bd5ed5dfb3a48c799",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 21185,
            "upload_time": "2023-12-17T13:16:14",
            "upload_time_iso_8601": "2023-12-17T13:16:14.085605Z",
            "url": "https://files.pythonhosted.org/packages/58/69/cd4943c89d90766ebced5e18ae4618e4e28c495178e8433af4fb6d8e86ac/hiredis-2.3.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a2b104ff38a5143b317b18ecedba4a057180458f531e142a7a1a73702cca5e5",
                "md5": "4dd4a3a7c5ce93f8367f598f381b1b32",
                "sha256": "4d59f88c4daa36b8c38e59ac7bffed6f5d7f68eaccad471484bf587b28ccc478"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dd4a3a7c5ce93f8367f598f381b1b32",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 40249,
            "upload_time": "2023-12-17T13:16:15",
            "upload_time_iso_8601": "2023-12-17T13:16:15.249497Z",
            "url": "https://files.pythonhosted.org/packages/2a/2b/104ff38a5143b317b18ecedba4a057180458f531e142a7a1a73702cca5e5/hiredis-2.3.2-pp38-pypy38_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c78b487732ac8a58aef3e0e790298edffa825a647f720e6b4e971b7c60b968f4",
                "md5": "31547a93521eeeb23612d0555b1099d6",
                "sha256": "a91a14dd95e24dc078204b18b0199226ee44644974c645dc54ee7b00c3157330"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31547a93521eeeb23612d0555b1099d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 48053,
            "upload_time": "2023-12-17T13:16:16",
            "upload_time_iso_8601": "2023-12-17T13:16:16.818677Z",
            "url": "https://files.pythonhosted.org/packages/c7/8b/487732ac8a58aef3e0e790298edffa825a647f720e6b4e971b7c60b968f4/hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "716a8fe563ddfa1c08c6d9b1d3fd4c728519e7d5437016104d33d3b348e0dd76",
                "md5": "8423378fe561f8c10f8ac2b312d3c79e",
                "sha256": "bb777a38797c8c7df0444533119570be18d1a4ce5478dffc00c875684df7bfcb"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8423378fe561f8c10f8ac2b312d3c79e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 48445,
            "upload_time": "2023-12-17T13:16:18",
            "upload_time_iso_8601": "2023-12-17T13:16:18.062772Z",
            "url": "https://files.pythonhosted.org/packages/71/6a/8fe563ddfa1c08c6d9b1d3fd4c728519e7d5437016104d33d3b348e0dd76/hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27c1c7f84002844c9a617be5feafa5eda6bcfee9aa715bbc41807f5c629085f3",
                "md5": "51a4ae404376f584f3497aa9f8cd580e",
                "sha256": "d47c915897a99d0d34a39fad4be97b4b709ab3d0d3b779ebccf2b6024a8c681e"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51a4ae404376f584f3497aa9f8cd580e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 55759,
            "upload_time": "2023-12-17T13:16:19",
            "upload_time_iso_8601": "2023-12-17T13:16:19.959565Z",
            "url": "https://files.pythonhosted.org/packages/27/c1/c7f84002844c9a617be5feafa5eda6bcfee9aa715bbc41807f5c629085f3/hiredis-2.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c15c1ceac208c9f857f9f3a7ff1493261330041306261f0ef91205ec2bdc81b2",
                "md5": "a42e95e893668fe5a1eb58302007c75b",
                "sha256": "333b5e04866758b11bda5f5315b4e671d15755fc6ed3b7969721bc6311d0ee36"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a42e95e893668fe5a1eb58302007c75b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 21228,
            "upload_time": "2023-12-17T13:16:21",
            "upload_time_iso_8601": "2023-12-17T13:16:21.337919Z",
            "url": "https://files.pythonhosted.org/packages/c1/5c/1ceac208c9f857f9f3a7ff1493261330041306261f0ef91205ec2bdc81b2/hiredis-2.3.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6463b5309b08bd9c4d87526531c58f2f2f4e2b966a0595c528682497e503d43",
                "md5": "125c9333100ab5391bc55e16d4ef32c4",
                "sha256": "c8937f1100435698c18e4da086968c4b5d70e86ea718376f833475ab3277c9aa"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "125c9333100ab5391bc55e16d4ef32c4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 40202,
            "upload_time": "2023-12-17T13:16:23",
            "upload_time_iso_8601": "2023-12-17T13:16:23.412631Z",
            "url": "https://files.pythonhosted.org/packages/b6/46/3b5309b08bd9c4d87526531c58f2f2f4e2b966a0595c528682497e503d43/hiredis-2.3.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b3c65af8da9c15ea2a23cb253db8bd5be400f5d38ca12446276f2aea7f3be2d",
                "md5": "1e8f730d0a0820920e89d0230220f067",
                "sha256": "fa45f7d771094b8145af10db74704ab0f698adb682fbf3721d8090f90e42cc49"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1e8f730d0a0820920e89d0230220f067",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 47928,
            "upload_time": "2023-12-17T13:16:24",
            "upload_time_iso_8601": "2023-12-17T13:16:24.570986Z",
            "url": "https://files.pythonhosted.org/packages/9b/3c/65af8da9c15ea2a23cb253db8bd5be400f5d38ca12446276f2aea7f3be2d/hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2d85abcd48df4d3c4cc4abb5d33f422f1eb7a0075da63c64487cfddebafb8c1",
                "md5": "9dc31c15d9926c1b69608918f364a6cd",
                "sha256": "33d5ebc93c39aed4b5bc769f8ce0819bc50e74bb95d57a35f838f1c4378978e0"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dc31c15d9926c1b69608918f364a6cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 48327,
            "upload_time": "2023-12-17T13:16:25",
            "upload_time_iso_8601": "2023-12-17T13:16:25.800011Z",
            "url": "https://files.pythonhosted.org/packages/f2/d8/5abcd48df4d3c4cc4abb5d33f422f1eb7a0075da63c64487cfddebafb8c1/hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56963b03f9296631e76ff561dbe57cf314878e137e994cd5e62d15fe7d5262b1",
                "md5": "5b40b5ff30d44882e6078126713f9510",
                "sha256": "a797d8c7df9944314d309b0d9e1b354e2fa4430a05bb7604da13b6ad291bf959"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5b40b5ff30d44882e6078126713f9510",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 55644,
            "upload_time": "2023-12-17T13:16:27",
            "upload_time_iso_8601": "2023-12-17T13:16:27.150044Z",
            "url": "https://files.pythonhosted.org/packages/56/96/3b03f9296631e76ff561dbe57cf314878e137e994cd5e62d15fe7d5262b1/hiredis-2.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8b6506f8ac36cf0f4776b5f044a6d8804c17b35157bb1ee7cd5ef7617ffa467",
                "md5": "c6eb45ba7191f3cdd8b6d587e8240fde",
                "sha256": "e15a408f71a6c8c87b364f1f15a6cd9c1baca12bbc47a326ac8ab99ec7ad3c64"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c6eb45ba7191f3cdd8b6d587e8240fde",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 21192,
            "upload_time": "2023-12-17T13:16:28",
            "upload_time_iso_8601": "2023-12-17T13:16:28.370142Z",
            "url": "https://files.pythonhosted.org/packages/d8/b6/506f8ac36cf0f4776b5f044a6d8804c17b35157bb1ee7cd5ef7617ffa467/hiredis-2.3.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe2da5ae61da1157644f7e52e088fa158ac6f5d09775112d14b1c9b9a5156bf1",
                "md5": "8823961dc3ba19a6e63ab6329b3b852f",
                "sha256": "733e2456b68f3f126ddaf2cd500a33b25146c3676b97ea843665717bda0c5d43"
            },
            "downloads": -1,
            "filename": "hiredis-2.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8823961dc3ba19a6e63ab6329b3b852f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 87598,
            "upload_time": "2023-12-17T13:16:30",
            "upload_time_iso_8601": "2023-12-17T13:16:30.322734Z",
            "url": "https://files.pythonhosted.org/packages/fe/2d/a5ae61da1157644f7e52e088fa158ac6f5d09775112d14b1c9b9a5156bf1/hiredis-2.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-17 13:16:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "redis",
    "github_project": "hiredis-py",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "hiredis"
}
        
Elapsed time: 0.16844s