Name | redis-rs JSON |
Version |
0.15.0
JSON |
| download |
home_page | None |
Summary | Python wrapper for redis-rs |
upload_time | 2025-02-12 13:51:48 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
keywords |
redis
redis-cluster
rust
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
redis-rs
========
.. image:: https://img.shields.io/badge/License-MIT-blue.svg
:target: https://lbesson.mit-license.org/
.. image:: https://img.shields.io/pypi/v/redis-rs.svg
:target: https://pypi.org/project/redis-rs
.. image:: https://img.shields.io/pypi/pyversions/redis-rs.svg
:target: https://pypi.org/project/redis-rs
:alt: Python versions
.. image:: https://readthedocs.org/projects/redis-rs/badge/?version=latest
:target: https://github.com/aamalev/redis-rs-py#redis-rs
:alt: Documentation Status
.. image:: https://github.com/aamalev/redis-rs-py/workflows/Tests/badge.svg
:target: https://github.com/aamalev/redis-rs-py/actions?query=workflow%3ATests
.. image:: https://img.shields.io/pypi/dm/redis-rs.svg
:target: https://pypistats.org/packages/redis-rs
|
.. image:: https://img.shields.io/badge/Rustc-1.73.0-blue?logo=rust
:target: https://www.rust-lang.org/
.. image:: https://img.shields.io/badge/cargo-clippy-blue?logo=rust
:target: https://doc.rust-lang.org/stable/clippy/
.. image:: https://img.shields.io/badge/PyO3-maturin-blue.svg
:target: https://github.com/PyO3/maturin
.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json
:target: https://github.com/astral-sh/ruff
:alt: Linter: ruff
.. image:: https://img.shields.io/badge/code%20style-ruff-000000.svg
:target: https://github.com/astral-sh/ruff
:alt: Code style: ruff
.. image:: https://img.shields.io/badge/types-Mypy-blue.svg
:target: https://github.com/python/mypy
:alt: Code style: Mypy
.. image:: https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg
:alt: Hatch project
:target: https://github.com/pypa/hatch
Python wrapper for:
| `redis-rs <https://github.com/redis-rs/redis-rs>`_,
| `bb8 <https://github.com/djc/bb8>`_,
| bb8-redis,
Features
--------
* Async client for single and cluster
* Support typing
* Encoding values from str, int, float
* Decoding values to str, int, float, list, dict
* Partial implementation redis mock-client for testing mode
Install
-------
.. code-block:: shell
pip install redis-rs
Using
-----
.. code-block:: python
import asyncio
import redis_rs
async def main():
async with redis_rs.create_client(
"redis://redis-node001",
"redis://redis-node002",
max_size=1,
cluster=True,
features=[
"mock", # enable implementation for testing
],
) as x:
info = await x.execute("INFO", "SERVER", encoding="info")
print(info["redis_version"])
# parse value as json
print(await x.get("foo", encoding="json"))
print(await x.execute(b"HSET", "fooh", "a", b"asdfg"))
print(await x.fetch_int("HSET", "fooh", "b", 11234567890))
print(await x.fetch_int("HGET", "fooh", "b"))
print(await x.fetch_str("HGET", "fooh", "a"))
print(await x.fetch_dict("HGETALL", "fooh", encoding="utf-8"))
print(await x.hgetall("fooh", encoding="utf-8"))
print(await x.execute("CLUSTER", "NODES"))
print(await x.fetch_bytes("GET", "foo"))
print(await x.fetch_int("GET", "foo"))
print(await x.execute("HGETALL", "fooh"))
print(await x.execute("ZADD", "fooz", 1.5678, "b"))
print(await x.fetch_scores("ZRANGE", "fooz", 0, -1, "WITHSCORES"))
print(x.status())
stream = "redis-rs"
print("x.xadd", await x.xadd(stream, "*", {"a": "1234", "d": 4567}))
print("x.xadd", await x.xadd(stream, items={"a": "1234", "d": 4567}))
print("x.xadd", await x.xadd(stream, {"a": "1234", "d": 4567}))
print("x.xadd", await x.xadd(stream, "*", "a", "1234", "d", 4567))
print("x.xadd", await x.xadd(stream, "a", "1234", "d", 4567))
print("xadd", await x.fetch_str("XADD", stream, "*", "a", "1234", "d", 4567))
print("xread", await x.execute("XREAD", "STREAMS", stream, 0))
print("xread", await x.fetch_dict("XREAD", "STREAMS", stream, 0, encoding="int"))
print("x.xread", await x.xread({stream: 0}, encoding="int"))
print("x.xread", await x.xread(stream, id=0, encoding="int"))
print("x.xread", await x.xread(stream, stream))
asyncio.run(main())
Development
-----------
.. code-block:: python
cargo fmt
cargo clippy
maturin develop
or use hatch envs:
.. code-block:: python
hatch run fmt
hatch run check
hatch run build
Raw data
{
"_id": null,
"home_page": null,
"name": "redis-rs",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "redis, redis-cluster, rust",
"author": null,
"author_email": "Alexander Malev <yttrium@somedev.ru>",
"download_url": "https://files.pythonhosted.org/packages/b9/b4/cf8816cd7782bf289028473e0547bb05cfb2c39aa8c02ea4e88a3e9dd99e/redis_rs-0.15.0.tar.gz",
"platform": null,
"description": "redis-rs\n========\n\n.. image:: https://img.shields.io/badge/License-MIT-blue.svg\n :target: https://lbesson.mit-license.org/\n\n.. image:: https://img.shields.io/pypi/v/redis-rs.svg\n :target: https://pypi.org/project/redis-rs\n\n.. image:: https://img.shields.io/pypi/pyversions/redis-rs.svg\n :target: https://pypi.org/project/redis-rs\n :alt: Python versions\n\n.. image:: https://readthedocs.org/projects/redis-rs/badge/?version=latest\n :target: https://github.com/aamalev/redis-rs-py#redis-rs\n :alt: Documentation Status\n\n.. image:: https://github.com/aamalev/redis-rs-py/workflows/Tests/badge.svg\n :target: https://github.com/aamalev/redis-rs-py/actions?query=workflow%3ATests\n\n.. image:: https://img.shields.io/pypi/dm/redis-rs.svg\n :target: https://pypistats.org/packages/redis-rs\n\n|\n\n.. image:: https://img.shields.io/badge/Rustc-1.73.0-blue?logo=rust\n :target: https://www.rust-lang.org/\n\n.. image:: https://img.shields.io/badge/cargo-clippy-blue?logo=rust\n :target: https://doc.rust-lang.org/stable/clippy/\n\n.. image:: https://img.shields.io/badge/PyO3-maturin-blue.svg\n :target: https://github.com/PyO3/maturin\n\n.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json\n :target: https://github.com/astral-sh/ruff\n :alt: Linter: ruff\n\n.. image:: https://img.shields.io/badge/code%20style-ruff-000000.svg\n :target: https://github.com/astral-sh/ruff\n :alt: Code style: ruff\n\n.. image:: https://img.shields.io/badge/types-Mypy-blue.svg\n :target: https://github.com/python/mypy\n :alt: Code style: Mypy\n\n.. image:: https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg\n :alt: Hatch project\n :target: https://github.com/pypa/hatch\n\n\nPython wrapper for:\n | `redis-rs <https://github.com/redis-rs/redis-rs>`_,\n | `bb8 <https://github.com/djc/bb8>`_,\n | bb8-redis,\n\n\nFeatures\n--------\n\n* Async client for single and cluster\n* Support typing\n* Encoding values from str, int, float\n* Decoding values to str, int, float, list, dict\n* Partial implementation redis mock-client for testing mode\n\n\nInstall\n-------\n\n.. code-block:: shell\n\n pip install redis-rs\n\n\nUsing\n-----\n\n.. code-block:: python\n\n import asyncio\n import redis_rs\n\n\n async def main():\n async with redis_rs.create_client(\n \"redis://redis-node001\",\n \"redis://redis-node002\",\n max_size=1,\n cluster=True,\n features=[\n \"mock\", # enable implementation for testing\n ],\n ) as x:\n info = await x.execute(\"INFO\", \"SERVER\", encoding=\"info\")\n print(info[\"redis_version\"])\n\n # parse value as json\n print(await x.get(\"foo\", encoding=\"json\"))\n\n print(await x.execute(b\"HSET\", \"fooh\", \"a\", b\"asdfg\"))\n print(await x.fetch_int(\"HSET\", \"fooh\", \"b\", 11234567890))\n print(await x.fetch_int(\"HGET\", \"fooh\", \"b\"))\n print(await x.fetch_str(\"HGET\", \"fooh\", \"a\"))\n print(await x.fetch_dict(\"HGETALL\", \"fooh\", encoding=\"utf-8\"))\n print(await x.hgetall(\"fooh\", encoding=\"utf-8\"))\n print(await x.execute(\"CLUSTER\", \"NODES\"))\n print(await x.fetch_bytes(\"GET\", \"foo\"))\n print(await x.fetch_int(\"GET\", \"foo\"))\n print(await x.execute(\"HGETALL\", \"fooh\"))\n print(await x.execute(\"ZADD\", \"fooz\", 1.5678, \"b\"))\n print(await x.fetch_scores(\"ZRANGE\", \"fooz\", 0, -1, \"WITHSCORES\"))\n print(x.status())\n\n stream = \"redis-rs\"\n print(\"x.xadd\", await x.xadd(stream, \"*\", {\"a\": \"1234\", \"d\": 4567}))\n print(\"x.xadd\", await x.xadd(stream, items={\"a\": \"1234\", \"d\": 4567}))\n print(\"x.xadd\", await x.xadd(stream, {\"a\": \"1234\", \"d\": 4567}))\n print(\"x.xadd\", await x.xadd(stream, \"*\", \"a\", \"1234\", \"d\", 4567))\n print(\"x.xadd\", await x.xadd(stream, \"a\", \"1234\", \"d\", 4567))\n print(\"xadd\", await x.fetch_str(\"XADD\", stream, \"*\", \"a\", \"1234\", \"d\", 4567))\n print(\"xread\", await x.execute(\"XREAD\", \"STREAMS\", stream, 0))\n print(\"xread\", await x.fetch_dict(\"XREAD\", \"STREAMS\", stream, 0, encoding=\"int\"))\n print(\"x.xread\", await x.xread({stream: 0}, encoding=\"int\"))\n print(\"x.xread\", await x.xread(stream, id=0, encoding=\"int\"))\n print(\"x.xread\", await x.xread(stream, stream))\n\n\n asyncio.run(main())\n\n\nDevelopment\n-----------\n\n.. code-block:: python\n\n cargo fmt\n cargo clippy\n maturin develop\n\n\nor use hatch envs:\n\n.. code-block:: python\n\n hatch run fmt\n hatch run check\n hatch run build\n\n",
"bugtrack_url": null,
"license": null,
"summary": "Python wrapper for redis-rs",
"version": "0.15.0",
"project_urls": {
"Changelog": "https://github.com/aamalev/redis-rs-py/releases",
"Documentation": "https://github.com/aamalev/redis-rs-py#using",
"Issues": "https://github.com/aamalev/redis-rs-py/issues",
"Source Code": "https://github.com/aamalev/redis-rs-py"
},
"split_keywords": [
"redis",
" redis-cluster",
" rust"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "3b744578393dba44cbab390e9bbd7257f8a9860067e91efbfc0adf43d6cb9f3c",
"md5": "d28b199af81b11db82ac7b3c7ca62475",
"sha256": "ce26775fe14f6958eaf3523023577448e98b7d2a933f2b2358ef38f4caf0c614"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d28b199af81b11db82ac7b3c7ca62475",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1623770,
"upload_time": "2025-02-12T13:47:54",
"upload_time_iso_8601": "2025-02-12T13:47:54.220975Z",
"url": "https://files.pythonhosted.org/packages/3b/74/4578393dba44cbab390e9bbd7257f8a9860067e91efbfc0adf43d6cb9f3c/redis_rs-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fa6917171537a0e143891100f037cd9471ac45c9b6a615962e5d10d47040ba61",
"md5": "ebb9bec7881d50bcaf2fa285e4b00527",
"sha256": "5f62375b074ccef622b8f6a0af43d186bae291d0e60abcd76a63b5d1cd4b5e33"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ebb9bec7881d50bcaf2fa285e4b00527",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1617888,
"upload_time": "2025-02-12T13:48:18",
"upload_time_iso_8601": "2025-02-12T13:48:18.420713Z",
"url": "https://files.pythonhosted.org/packages/fa/69/17171537a0e143891100f037cd9471ac45c9b6a615962e5d10d47040ba61/redis_rs-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c10695ae20a39fc10fb0cb42f978cadf1643ba3f2a290794033f214eb2c041e4",
"md5": "e5e6f0e9be2dd1c371294b8df78b60a6",
"sha256": "797291e06dcc782fdec6ac3aa8680af6d1cebf05a50a28b8771719c50b2b6d2f"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e5e6f0e9be2dd1c371294b8df78b60a6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1789701,
"upload_time": "2025-02-12T13:49:26",
"upload_time_iso_8601": "2025-02-12T13:49:26.664204Z",
"url": "https://files.pythonhosted.org/packages/c1/06/95ae20a39fc10fb0cb42f978cadf1643ba3f2a290794033f214eb2c041e4/redis_rs-0.15.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d50920aa8397bf18302c7ea60530a12b923f1bfe9be1f11e1afd176a92aca586",
"md5": "0065bb376b6558e575e8bbf43629a955",
"sha256": "57020a22430816e3f2429648a09344ae700b52ec1f92480d095e4a5d42db4bd8"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "0065bb376b6558e575e8bbf43629a955",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1778160,
"upload_time": "2025-02-12T13:48:42",
"upload_time_iso_8601": "2025-02-12T13:48:42.799540Z",
"url": "https://files.pythonhosted.org/packages/d5/09/20aa8397bf18302c7ea60530a12b923f1bfe9be1f11e1afd176a92aca586/redis_rs-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d5ecb6a88dac876be21bbce81c2112647a9f90fa75c1d2762916596c32c2616a",
"md5": "0cc40e90ddc98d72fa6456f315bd4300",
"sha256": "c615c2b7c54185fac0242639354fee1477a876456833cdf5957a7acb06c5d03b"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0cc40e90ddc98d72fa6456f315bd4300",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1915802,
"upload_time": "2025-02-12T13:49:05",
"upload_time_iso_8601": "2025-02-12T13:49:05.800175Z",
"url": "https://files.pythonhosted.org/packages/d5/ec/b6a88dac876be21bbce81c2112647a9f90fa75c1d2762916596c32c2616a/redis_rs-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7da49e5d1cd9c8958c8c597f3d8073cb0cc30f7eb03431c95dadf24dbe6040d1",
"md5": "19caa02e9e6635385ef9291260ce9b44",
"sha256": "3e83a77f731d3e4c26bc03b471fcb5bd6c0a7fee88601452fed669e8eb0f42e8"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "19caa02e9e6635385ef9291260ce9b44",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1675946,
"upload_time": "2025-02-12T13:49:43",
"upload_time_iso_8601": "2025-02-12T13:49:43.752631Z",
"url": "https://files.pythonhosted.org/packages/7d/a4/9e5d1cd9c8958c8c597f3d8073cb0cc30f7eb03431c95dadf24dbe6040d1/redis_rs-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "154b7a7c05fdfa2cd58f9c31af90973557074bf4ad70d00c0535c7ed82eccfe5",
"md5": "5e0feae5239202dbc8e3bb674f347eda",
"sha256": "ae98275f4feeaf4f64154dedf6dec56c930f62b9d3b887b5577d1f312390e0b4"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "5e0feae5239202dbc8e3bb674f347eda",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1756007,
"upload_time": "2025-02-12T13:50:17",
"upload_time_iso_8601": "2025-02-12T13:50:17.788198Z",
"url": "https://files.pythonhosted.org/packages/15/4b/7a7c05fdfa2cd58f9c31af90973557074bf4ad70d00c0535c7ed82eccfe5/redis_rs-0.15.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f0a22c07c4b8059b0a44cfbb6ef4c57791ef32769a1bca7a64d3b50b884b639c",
"md5": "bbce0c161b0f7212c02185e83559f1b2",
"sha256": "c5d1471b158962a49451bf81756880dc0aedf59c70b02aa2c242182a3a5e7b31"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "bbce0c161b0f7212c02185e83559f1b2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1850657,
"upload_time": "2025-02-12T13:50:40",
"upload_time_iso_8601": "2025-02-12T13:50:40.660659Z",
"url": "https://files.pythonhosted.org/packages/f0/a2/2c07c4b8059b0a44cfbb6ef4c57791ef32769a1bca7a64d3b50b884b639c/redis_rs-0.15.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "464b48cd934d88c65730ba17ab9f2aa708e28218a0168ab25a2f65695466d7eb",
"md5": "17c1264f48f903ca9753ede248aa874b",
"sha256": "b43edb5b8e578bd730085c91aeb947d95651b2ef403e1d69a678d3aa3f034163"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "17c1264f48f903ca9753ede248aa874b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1879889,
"upload_time": "2025-02-12T13:51:07",
"upload_time_iso_8601": "2025-02-12T13:51:07.004445Z",
"url": "https://files.pythonhosted.org/packages/46/4b/48cd934d88c65730ba17ab9f2aa708e28218a0168ab25a2f65695466d7eb/redis_rs-0.15.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ef9edbb34e98594f74bfab4412f0a7a4bc7b845e484ea0a07afdaca8ba289eba",
"md5": "c1c533228c220a5780df9c04caa749ba",
"sha256": "4f3f12ee547291bee62c2eb717509ba499d310eda038d314477c6cb4b27cb91c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c1c533228c220a5780df9c04caa749ba",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1820299,
"upload_time": "2025-02-12T13:51:27",
"upload_time_iso_8601": "2025-02-12T13:51:27.542769Z",
"url": "https://files.pythonhosted.org/packages/ef/9e/dbb34e98594f74bfab4412f0a7a4bc7b845e484ea0a07afdaca8ba289eba/redis_rs-0.15.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "26893b48582f8605b84d5e370dd60a5a0ff52a06136c70e620de4360ce38aded",
"md5": "de4b684e161aeafc2e5e7ee50bf164ef",
"sha256": "ee7aeec74e4959809ed29aa4b80c1be491369bb437d452a697782d729482b767"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "de4b684e161aeafc2e5e7ee50bf164ef",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1293220,
"upload_time": "2025-02-12T13:52:05",
"upload_time_iso_8601": "2025-02-12T13:52:05.742427Z",
"url": "https://files.pythonhosted.org/packages/26/89/3b48582f8605b84d5e370dd60a5a0ff52a06136c70e620de4360ce38aded/redis_rs-0.15.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80522538a85219a43b0a245bc2aae052efd6d60a07fb729c8299878bfad32415",
"md5": "340c6d014cc0d884974690b2016e522e",
"sha256": "1d690bbe93e7439dee0030703345d4581b5b646793e8362eea71dae288c997fa"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "340c6d014cc0d884974690b2016e522e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1421126,
"upload_time": "2025-02-12T13:51:50",
"upload_time_iso_8601": "2025-02-12T13:51:50.199454Z",
"url": "https://files.pythonhosted.org/packages/80/52/2538a85219a43b0a245bc2aae052efd6d60a07fb729c8299878bfad32415/redis_rs-0.15.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "87380a0e5b1b8e52692aa6f3f5b3d476f8d5177f0511e3c8a03c4e43ee58e8ba",
"md5": "f3fccd8ee49f29dc058429fe5933aa7a",
"sha256": "e485ceffdb2a35ef63d7c2da44bc09fe3cdf5cdd27551707defeb2fb6ff30655"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f3fccd8ee49f29dc058429fe5933aa7a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1585740,
"upload_time": "2025-02-12T13:50:10",
"upload_time_iso_8601": "2025-02-12T13:50:10.201983Z",
"url": "https://files.pythonhosted.org/packages/87/38/0a0e5b1b8e52692aa6f3f5b3d476f8d5177f0511e3c8a03c4e43ee58e8ba/redis_rs-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "991d55c20e20eb5490dd6b2dff8604b512e9764cf7b1578eeace6139799b1466",
"md5": "64671dc596dc3b3884904079f8789055",
"sha256": "652196172bcf227354dbdbb8ac59c9ccc9652aa01ad7a7c2468552e4aeb127f6"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "64671dc596dc3b3884904079f8789055",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1502903,
"upload_time": "2025-02-12T13:50:00",
"upload_time_iso_8601": "2025-02-12T13:50:00.209668Z",
"url": "https://files.pythonhosted.org/packages/99/1d/55c20e20eb5490dd6b2dff8604b512e9764cf7b1578eeace6139799b1466/redis_rs-0.15.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b5c1d5a6b3fbe11b99054accf50fd1926285e54ea27d4b97c5522b857bada0f",
"md5": "da12dbdc0dba32e161930ac1bb8a33e5",
"sha256": "7aebcbeca2f638086896b226eadedaabf566628516f5027233ef30ecdc52d0b9"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "da12dbdc0dba32e161930ac1bb8a33e5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1624132,
"upload_time": "2025-02-12T13:47:56",
"upload_time_iso_8601": "2025-02-12T13:47:56.281999Z",
"url": "https://files.pythonhosted.org/packages/0b/5c/1d5a6b3fbe11b99054accf50fd1926285e54ea27d4b97c5522b857bada0f/redis_rs-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "436b0d7315efb2c1e82c375edb360483bda888de049ebf7704a58dafa6370766",
"md5": "695abc530fb9c4b4337bce3e746bf263",
"sha256": "2174369351a4e9dee3557d1c98183f678f1f4ff6af0e2dcb31ab63ddbf342d82"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "695abc530fb9c4b4337bce3e746bf263",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1617430,
"upload_time": "2025-02-12T13:48:21",
"upload_time_iso_8601": "2025-02-12T13:48:21.436506Z",
"url": "https://files.pythonhosted.org/packages/43/6b/0d7315efb2c1e82c375edb360483bda888de049ebf7704a58dafa6370766/redis_rs-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "345c23eb25e0f7bdc40fef1c143a3b5bf7d4022a5cd8534755f320e23503d758",
"md5": "abae2d4ec653c5a93f9f226ace4cde45",
"sha256": "fe8c003e45740b28fa554774d85d15a9de118988211857959a8572aaf70c4b1f"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "abae2d4ec653c5a93f9f226ace4cde45",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1790273,
"upload_time": "2025-02-12T13:49:28",
"upload_time_iso_8601": "2025-02-12T13:49:28.526626Z",
"url": "https://files.pythonhosted.org/packages/34/5c/23eb25e0f7bdc40fef1c143a3b5bf7d4022a5cd8534755f320e23503d758/redis_rs-0.15.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f79f16866eb1f02782534d13232c2563609675c5d7a83e39671733c81e1558a1",
"md5": "892c29cebad8f955798d1f4352c68523",
"sha256": "ef9f6d66cea8ee7854756f4a248e1f87ad214b239c73a34970041394c2b805a8"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "892c29cebad8f955798d1f4352c68523",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1777348,
"upload_time": "2025-02-12T13:48:44",
"upload_time_iso_8601": "2025-02-12T13:48:44.635465Z",
"url": "https://files.pythonhosted.org/packages/f7/9f/16866eb1f02782534d13232c2563609675c5d7a83e39671733c81e1558a1/redis_rs-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b3dce10797e837af26456bd649d9ab0a6c689adef4efb736a02a74d476308a1",
"md5": "5f9433dd5f33d120a82f744a1b0ddd87",
"sha256": "a517d5d9ec19b7563f40f03f37fd3f8726ea561e86d92af705c246cfd71830dd"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "5f9433dd5f33d120a82f744a1b0ddd87",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1914213,
"upload_time": "2025-02-12T13:49:07",
"upload_time_iso_8601": "2025-02-12T13:49:07.641789Z",
"url": "https://files.pythonhosted.org/packages/0b/3d/ce10797e837af26456bd649d9ab0a6c689adef4efb736a02a74d476308a1/redis_rs-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c410de532f0f621fa460ab1716bfc6989aca7a8f30ed9d41f9c67b3a1ef664cd",
"md5": "4f862d81bd38ae4f8b9b9d4ebd08b4d7",
"sha256": "5a9f27faca4659a8b0dd01193f6b6b0748a22c3dba48767147d9c92c509491b4"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4f862d81bd38ae4f8b9b9d4ebd08b4d7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1675465,
"upload_time": "2025-02-12T13:49:45",
"upload_time_iso_8601": "2025-02-12T13:49:45.886883Z",
"url": "https://files.pythonhosted.org/packages/c4/10/de532f0f621fa460ab1716bfc6989aca7a8f30ed9d41f9c67b3a1ef664cd/redis_rs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ea1df426078e67272c8eeeb52c2e5b75014126bc1c518015540b999e6105c8e4",
"md5": "dd1980b7443d966a37113681a6086784",
"sha256": "b15ed505385660c49e9813ab23b787f4c9a5dc98dfcc068b9a23fd8a6a3703c0"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "dd1980b7443d966a37113681a6086784",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1756706,
"upload_time": "2025-02-12T13:50:19",
"upload_time_iso_8601": "2025-02-12T13:50:19.677351Z",
"url": "https://files.pythonhosted.org/packages/ea/1d/f426078e67272c8eeeb52c2e5b75014126bc1c518015540b999e6105c8e4/redis_rs-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "edc7bfd82b9fcb45fa4bd1e972abea98052c007608558a7284c5657f47edefd3",
"md5": "0729c2e0470348b02df6c5a6aab99132",
"sha256": "a0edbe70e438c7cdbc860f58f75705fc2056ed3c9ccd6c9d29417d058bcbea81"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0729c2e0470348b02df6c5a6aab99132",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1851328,
"upload_time": "2025-02-12T13:50:44",
"upload_time_iso_8601": "2025-02-12T13:50:44.608527Z",
"url": "https://files.pythonhosted.org/packages/ed/c7/bfd82b9fcb45fa4bd1e972abea98052c007608558a7284c5657f47edefd3/redis_rs-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "729673ca8db2b42fe544ef4af4fd8a68bfa3fba6b0ae5f11bb5757f85d1bf3e0",
"md5": "1685bfd8c733b41030a7228661947520",
"sha256": "90baebca1c1dd61c93f9a23e2d11347eb2566157e658598c6d25ad97c412f465"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1685bfd8c733b41030a7228661947520",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1880422,
"upload_time": "2025-02-12T13:51:09",
"upload_time_iso_8601": "2025-02-12T13:51:09.549821Z",
"url": "https://files.pythonhosted.org/packages/72/96/73ca8db2b42fe544ef4af4fd8a68bfa3fba6b0ae5f11bb5757f85d1bf3e0/redis_rs-0.15.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db848219cf3361f1e0c7870a5e96d38be10d23208d0d088f3af64524f86f5f91",
"md5": "6c65a5bfe7022efb547d28d235ba4e1c",
"sha256": "c1123c705f7ed114979d5511530970044a0e861e440c26fd40e5f752255da6d4"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "6c65a5bfe7022efb547d28d235ba4e1c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1820416,
"upload_time": "2025-02-12T13:51:29",
"upload_time_iso_8601": "2025-02-12T13:51:29.573225Z",
"url": "https://files.pythonhosted.org/packages/db/84/8219cf3361f1e0c7870a5e96d38be10d23208d0d088f3af64524f86f5f91/redis_rs-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "df2feeb9e36a131c4d42a4941b76297d547ac1ca3dfb5831de82bc83d25f5ec9",
"md5": "ffd2fc261b463974906c66c3b790d289",
"sha256": "ade5e17271ce1235ecda475afbe3e22e68c54c1cd12d6dd218e062d7ce356417"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "ffd2fc261b463974906c66c3b790d289",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1292942,
"upload_time": "2025-02-12T13:52:08",
"upload_time_iso_8601": "2025-02-12T13:52:08.281145Z",
"url": "https://files.pythonhosted.org/packages/df/2f/eeb9e36a131c4d42a4941b76297d547ac1ca3dfb5831de82bc83d25f5ec9/redis_rs-0.15.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c874098a9c50159192a1c59d99b2addfba6b2c8dc92517d6c80c05be1d72c4b9",
"md5": "af99cf52bf0833870dc6a15ab081491b",
"sha256": "476717cf897336153563cf22bd747418175273229d723995f6c9aaea0509115c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "af99cf52bf0833870dc6a15ab081491b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1421500,
"upload_time": "2025-02-12T13:51:52",
"upload_time_iso_8601": "2025-02-12T13:51:52.550242Z",
"url": "https://files.pythonhosted.org/packages/c8/74/098a9c50159192a1c59d99b2addfba6b2c8dc92517d6c80c05be1d72c4b9/redis_rs-0.15.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f044101d9d356259ed4b4749a3a996f0ed7ebace9036d3b89cf0d2dd30b367ea",
"md5": "ae98999023c6dc2633eb3deed4767b37",
"sha256": "a4ce61c93b23cd98524b892f1c72edeafb1c1c1174932ffc3e2cde27ecf34a4e"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "ae98999023c6dc2633eb3deed4767b37",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1577170,
"upload_time": "2025-02-12T13:50:12",
"upload_time_iso_8601": "2025-02-12T13:50:12.627697Z",
"url": "https://files.pythonhosted.org/packages/f0/44/101d9d356259ed4b4749a3a996f0ed7ebace9036d3b89cf0d2dd30b367ea/redis_rs-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b09f3117475623493ac08c78b4ba9253711d8a5912259cc6f57f292f110654fe",
"md5": "6670f23bfdea84e930eef3b21692c674",
"sha256": "582944d77c37a61b78e2130a9627ed244d88240aa5ba1ecf6c22b27e3161f6af"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6670f23bfdea84e930eef3b21692c674",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1498962,
"upload_time": "2025-02-12T13:50:03",
"upload_time_iso_8601": "2025-02-12T13:50:03.089236Z",
"url": "https://files.pythonhosted.org/packages/b0/9f/3117475623493ac08c78b4ba9253711d8a5912259cc6f57f292f110654fe/redis_rs-0.15.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3c802309c2f8511d2167e45a0295bfc6a4d567eb439cda042512dcb888a42778",
"md5": "c2d872e9646c3878b253aaaf28331d9a",
"sha256": "2408613fe926f76fd19d1e8e7394013966386ee5a80b8a474573667db5d8d0e8"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "c2d872e9646c3878b253aaaf28331d9a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1628342,
"upload_time": "2025-02-12T13:47:59",
"upload_time_iso_8601": "2025-02-12T13:47:59.118806Z",
"url": "https://files.pythonhosted.org/packages/3c/80/2309c2f8511d2167e45a0295bfc6a4d567eb439cda042512dcb888a42778/redis_rs-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a606663109fa17b01642f40423bdcf3582985f1bda22f064c7b3bde9d3f8e2e6",
"md5": "d348aea654d347eb895cdd518f1efa2f",
"sha256": "71294512ca9a575c981e0c726ba9c32439970a1a93542b7aeebdb0cf00fc4fac"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "d348aea654d347eb895cdd518f1efa2f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1615893,
"upload_time": "2025-02-12T13:48:26",
"upload_time_iso_8601": "2025-02-12T13:48:26.623402Z",
"url": "https://files.pythonhosted.org/packages/a6/06/663109fa17b01642f40423bdcf3582985f1bda22f064c7b3bde9d3f8e2e6/redis_rs-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a5eec4fcd36008e83deae20e49ea31757327c060cf8cc593ceb6d024e6dd4106",
"md5": "789211b47ee07befba6553ee1473136b",
"sha256": "84a88ae5b3311c1a3f97cf5aa523f632360bfd856ed0c59cd6406f6b2c3bb838"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "789211b47ee07befba6553ee1473136b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1788473,
"upload_time": "2025-02-12T13:49:32",
"upload_time_iso_8601": "2025-02-12T13:49:32.237113Z",
"url": "https://files.pythonhosted.org/packages/a5/ee/c4fcd36008e83deae20e49ea31757327c060cf8cc593ceb6d024e6dd4106/redis_rs-0.15.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "34e114528110bcf00a72eb672b3f16c6e70b52144644ba4b1984e650a83b0115",
"md5": "30fdbc1beff7ed2ee3bbef9f24d989e0",
"sha256": "3fdf01223311c8ca4024f380f1546f2a7724ad53628b4d8e7b407987d5028fa2"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "30fdbc1beff7ed2ee3bbef9f24d989e0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1775962,
"upload_time": "2025-02-12T13:48:46",
"upload_time_iso_8601": "2025-02-12T13:48:46.580984Z",
"url": "https://files.pythonhosted.org/packages/34/e1/14528110bcf00a72eb672b3f16c6e70b52144644ba4b1984e650a83b0115/redis_rs-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e7a7bb0516e514728f784d45961b96d4475fa63e0957ff37209f6ff4333fe540",
"md5": "0b13b5be023b1258a8a6c631f25907b8",
"sha256": "30e53e8a5988092ecdd1d0695f3260ad40eae10d64bbe8e73de349666ffdb62f"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0b13b5be023b1258a8a6c631f25907b8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1929198,
"upload_time": "2025-02-12T13:49:09",
"upload_time_iso_8601": "2025-02-12T13:49:09.485952Z",
"url": "https://files.pythonhosted.org/packages/e7/a7/bb0516e514728f784d45961b96d4475fa63e0957ff37209f6ff4333fe540/redis_rs-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "55b52baecb40e21d0b900d925b9f39127d91da298a8275f5cefe322a6011cda9",
"md5": "1b2b00affb9cd8e3fa6b95137df77fe3",
"sha256": "ebe77b3fdea4602a73d61130fd0212c4cc2930c5a5809c1dd10fa71fed7293d5"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "1b2b00affb9cd8e3fa6b95137df77fe3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1675537,
"upload_time": "2025-02-12T13:49:50",
"upload_time_iso_8601": "2025-02-12T13:49:50.574786Z",
"url": "https://files.pythonhosted.org/packages/55/b5/2baecb40e21d0b900d925b9f39127d91da298a8275f5cefe322a6011cda9/redis_rs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cefded60df53448b05172b6f4d77cb41f4107217ebaa8ad025d994eb50daa210",
"md5": "867075530e67274047b1a9fa82148a75",
"sha256": "267a0f4a82f3d97e3dbb729e616c11c0a1f8dd1261a8fb9a65370de433b38116"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "867075530e67274047b1a9fa82148a75",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1757879,
"upload_time": "2025-02-12T13:50:21",
"upload_time_iso_8601": "2025-02-12T13:50:21.858413Z",
"url": "https://files.pythonhosted.org/packages/ce/fd/ed60df53448b05172b6f4d77cb41f4107217ebaa8ad025d994eb50daa210/redis_rs-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "333e3de2b3638ac718dae60488da84897e647225e0788688a6020e1390822b97",
"md5": "df253f8457229c2ff41a4950788cdfae",
"sha256": "44c6f0ea7e04e4703aa5b9604fe9254d18b2c2cccf258785dba42400708a6bdb"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "df253f8457229c2ff41a4950788cdfae",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1851737,
"upload_time": "2025-02-12T13:50:47",
"upload_time_iso_8601": "2025-02-12T13:50:47.840418Z",
"url": "https://files.pythonhosted.org/packages/33/3e/3de2b3638ac718dae60488da84897e647225e0788688a6020e1390822b97/redis_rs-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "13cf21e4905448177a29c51a36b8a7c035eb82c0a40d2e30ea9b4c769fa6afc5",
"md5": "8c24b2ff341d7efb3cb3369aa5370a70",
"sha256": "80016e5930da5a7875f2f5803db90c6024a47886cd2e2c381442495085a09f0a"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "8c24b2ff341d7efb3cb3369aa5370a70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1879462,
"upload_time": "2025-02-12T13:51:11",
"upload_time_iso_8601": "2025-02-12T13:51:11.765511Z",
"url": "https://files.pythonhosted.org/packages/13/cf/21e4905448177a29c51a36b8a7c035eb82c0a40d2e30ea9b4c769fa6afc5/redis_rs-0.15.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e0d2f7c691df355773d8bccffed6dc90e1ff81fe4a3c652644dc68b7154c7ee",
"md5": "44b7f65691e67aff229a3e483952fef7",
"sha256": "3212bfeb57d9dc396255b85a31b9db405f02f8b2bdcb7ef3e44bb9682bc7e3c1"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "44b7f65691e67aff229a3e483952fef7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1818365,
"upload_time": "2025-02-12T13:51:31",
"upload_time_iso_8601": "2025-02-12T13:51:31.631401Z",
"url": "https://files.pythonhosted.org/packages/1e/0d/2f7c691df355773d8bccffed6dc90e1ff81fe4a3c652644dc68b7154c7ee/redis_rs-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3b32c4209bb1785ca470d4812355e3b1a8cd9bf39a727044df284a492bc6f16e",
"md5": "be4fdeb1ad127188a4c71706e62a3e3e",
"sha256": "32016fb6c038e61b82379021281b852e26e00f02e3dc9ab1fff45ed08b7d0ec0"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "be4fdeb1ad127188a4c71706e62a3e3e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1287593,
"upload_time": "2025-02-12T13:52:10",
"upload_time_iso_8601": "2025-02-12T13:52:10.920999Z",
"url": "https://files.pythonhosted.org/packages/3b/32/c4209bb1785ca470d4812355e3b1a8cd9bf39a727044df284a492bc6f16e/redis_rs-0.15.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "25097cf63b164d073e7d0b123c28d28798e14ab08ecad8c06b266c56c1c84971",
"md5": "f93ade2e4705b934558d28f386b72aa5",
"sha256": "5fa6e8125f5f74f17b550301a601d7b86b4d2aebcc371b083a10dbc30de56569"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f93ade2e4705b934558d28f386b72aa5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1424062,
"upload_time": "2025-02-12T13:51:54",
"upload_time_iso_8601": "2025-02-12T13:51:54.731713Z",
"url": "https://files.pythonhosted.org/packages/25/09/7cf63b164d073e7d0b123c28d28798e14ab08ecad8c06b266c56c1c84971/redis_rs-0.15.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "93d61c9e6d1bb2b2d4c2d79a45b1bc8963bf3b83d55a0af8fd9028d521f0b776",
"md5": "695445e1dfe0668d7f1985b3dca0d0da",
"sha256": "1b54c32dfe8ed748042ded5fccc207b9341296b1abef412b7cfbc160f287c079"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "695445e1dfe0668d7f1985b3dca0d0da",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1576948,
"upload_time": "2025-02-12T13:50:14",
"upload_time_iso_8601": "2025-02-12T13:50:14.788334Z",
"url": "https://files.pythonhosted.org/packages/93/d6/1c9e6d1bb2b2d4c2d79a45b1bc8963bf3b83d55a0af8fd9028d521f0b776/redis_rs-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cedf1c19c147e947548530561c4fbab5824b5ad7b0d7ee011446a547410d4447",
"md5": "7d6542d2b48f7df0f351643fd4e742f4",
"sha256": "549f8909bf06719f34fc20384d1a5a3688fecc155a70da22474bd13b01b0b4c7"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "7d6542d2b48f7df0f351643fd4e742f4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1498394,
"upload_time": "2025-02-12T13:50:07",
"upload_time_iso_8601": "2025-02-12T13:50:07.265673Z",
"url": "https://files.pythonhosted.org/packages/ce/df/1c19c147e947548530561c4fbab5824b5ad7b0d7ee011446a547410d4447/redis_rs-0.15.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d61d77fdbe844433177b9936c3915f439d03599929f4d8023e5b0b21793e29c9",
"md5": "8c904d5b02715724194285b838b3179b",
"sha256": "1fad48fd311bec8e62d0faa98eddec32605ae173eddcf42a0fd78e383dfc1cbc"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8c904d5b02715724194285b838b3179b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1628463,
"upload_time": "2025-02-12T13:48:01",
"upload_time_iso_8601": "2025-02-12T13:48:01.425777Z",
"url": "https://files.pythonhosted.org/packages/d6/1d/77fdbe844433177b9936c3915f439d03599929f4d8023e5b0b21793e29c9/redis_rs-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "01169ba32780810795dabd21f84876d407968c123860549a421f83448fec2935",
"md5": "cf417b28fa59d2f73a780ce63588ef82",
"sha256": "3e78ada565fc4a3bfbf0c51f7689a5cf187b1f79bb7a0f23e417e45e4e3968e2"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "cf417b28fa59d2f73a780ce63588ef82",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1615830,
"upload_time": "2025-02-12T13:48:29",
"upload_time_iso_8601": "2025-02-12T13:48:29.667412Z",
"url": "https://files.pythonhosted.org/packages/01/16/9ba32780810795dabd21f84876d407968c123860549a421f83448fec2935/redis_rs-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d8a7a5fea475062fe25f7704acece3a0dc24408513b8c23d36bb38c2f033a3c3",
"md5": "61d8d65f8ede4d1c34034ae63627781c",
"sha256": "6434ed656d39ae5248727b96cacaf6991721cc3d935901450e18020adc402599"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "61d8d65f8ede4d1c34034ae63627781c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1788288,
"upload_time": "2025-02-12T13:49:34",
"upload_time_iso_8601": "2025-02-12T13:49:34.385578Z",
"url": "https://files.pythonhosted.org/packages/d8/a7/a5fea475062fe25f7704acece3a0dc24408513b8c23d36bb38c2f033a3c3/redis_rs-0.15.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21a9b21b6f8944ef28b07e9a756202fae33dff28e3f25099060380daddc1310c",
"md5": "fbf800388c15532f4230111da1c3db93",
"sha256": "5809311d488603f762fd9f9e350b776b11d35ef8e29a66b26a268c1870f1c69a"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fbf800388c15532f4230111da1c3db93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1775773,
"upload_time": "2025-02-12T13:48:49",
"upload_time_iso_8601": "2025-02-12T13:48:49.375849Z",
"url": "https://files.pythonhosted.org/packages/21/a9/b21b6f8944ef28b07e9a756202fae33dff28e3f25099060380daddc1310c/redis_rs-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7d895a1186c1b26efc6b6babbab5063079feb05b8442a20a1ce9ae86377e8130",
"md5": "bc382a40850f32bb6f8f961be6d2081f",
"sha256": "6326b0141ade5bbc6390365dc4e40aefb7017eca43e302e90ad5594c6c68f3c8"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "bc382a40850f32bb6f8f961be6d2081f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1929006,
"upload_time": "2025-02-12T13:49:14",
"upload_time_iso_8601": "2025-02-12T13:49:14.695993Z",
"url": "https://files.pythonhosted.org/packages/7d/89/5a1186c1b26efc6b6babbab5063079feb05b8442a20a1ce9ae86377e8130/redis_rs-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "013573cd91f4054e9230c8d37963f6f4c9d94d7de5470ed7c2bec2d991af08ea",
"md5": "271d7ef670ffc5b889d163796fdb594c",
"sha256": "5c832634a275a1bd2bc0c38163cfb16da74c314680bb056272d86f91a7da50f0"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "271d7ef670ffc5b889d163796fdb594c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1675084,
"upload_time": "2025-02-12T13:49:52",
"upload_time_iso_8601": "2025-02-12T13:49:52.389621Z",
"url": "https://files.pythonhosted.org/packages/01/35/73cd91f4054e9230c8d37963f6f4c9d94d7de5470ed7c2bec2d991af08ea/redis_rs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "23d26dae04c9c5830c230756dc7b799d67f0b43aada88f79ad360e3a832ec31e",
"md5": "1658cbcd3b469e09a4e5fb39bdbbd54b",
"sha256": "3ebd1f1f590e2fef702ffefd51b55466f96daa2970e82fd10dfdcb4994631da2"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1658cbcd3b469e09a4e5fb39bdbbd54b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1757132,
"upload_time": "2025-02-12T13:50:25",
"upload_time_iso_8601": "2025-02-12T13:50:25.264242Z",
"url": "https://files.pythonhosted.org/packages/23/d2/6dae04c9c5830c230756dc7b799d67f0b43aada88f79ad360e3a832ec31e/redis_rs-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74bbd191107f709dff658a35a3d72a1ea908bf8b7c0f3a4ad66162c9e33ffdb1",
"md5": "b33c994993e3074d057108b3921bbfa9",
"sha256": "a97cbfa70b0e50f5228ed655d4edc2fe7a9f1870784149035cd9fff595eb3839"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b33c994993e3074d057108b3921bbfa9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1850582,
"upload_time": "2025-02-12T13:50:50",
"upload_time_iso_8601": "2025-02-12T13:50:50.865602Z",
"url": "https://files.pythonhosted.org/packages/74/bb/d191107f709dff658a35a3d72a1ea908bf8b7c0f3a4ad66162c9e33ffdb1/redis_rs-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2bed8a20a27bd301ad46c56f44aee1152b8bd984b6379d2a2a3c4af55de75506",
"md5": "5825319179a6037a8afe41ab440092b0",
"sha256": "d98c4118d231e000c1c5914a9ce4363fee80ed446ccd24e5ae570597d408049c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5825319179a6037a8afe41ab440092b0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1878605,
"upload_time": "2025-02-12T13:51:13",
"upload_time_iso_8601": "2025-02-12T13:51:13.827820Z",
"url": "https://files.pythonhosted.org/packages/2b/ed/8a20a27bd301ad46c56f44aee1152b8bd984b6379d2a2a3c4af55de75506/redis_rs-0.15.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c0d8701887a70789010e1da6f719acbff7cb0b7ade35316fe7347389f578e901",
"md5": "202329f2283d5fb3e939afdf4ce44278",
"sha256": "d9b03f8874ddac8c6e483e79298cdb41e28ee43112c4b9ebe9a7ce89f82ce26c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "202329f2283d5fb3e939afdf4ce44278",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1817782,
"upload_time": "2025-02-12T13:51:33",
"upload_time_iso_8601": "2025-02-12T13:51:33.564014Z",
"url": "https://files.pythonhosted.org/packages/c0/d8/701887a70789010e1da6f719acbff7cb0b7ade35316fe7347389f578e901/redis_rs-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4a70173c8237f12ca160e715996a236c3b4dc559de4cc9bc5ffe93737a06bb8",
"md5": "478557e37c5bc671f8aa85a9b1eac369",
"sha256": "b7fa43d87933e5f0cc3d34af76912579028de168fb7a75f02bfb4024a2f1bf4d"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "478557e37c5bc671f8aa85a9b1eac369",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1623336,
"upload_time": "2025-02-12T13:48:04",
"upload_time_iso_8601": "2025-02-12T13:48:04.353117Z",
"url": "https://files.pythonhosted.org/packages/c4/a7/0173c8237f12ca160e715996a236c3b4dc559de4cc9bc5ffe93737a06bb8/redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c380f429bdbbb84c5c08fc3be4c5ef23a0c80fbeb0a83fd2ca123b10a99fcef",
"md5": "279a911bb597586167e4ba5779823cce",
"sha256": "f5d9fda05abeccca3835215cd820433b9f6bb1ef1ba6dcc4c25f97611ca54b38"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "279a911bb597586167e4ba5779823cce",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1614669,
"upload_time": "2025-02-12T13:48:31",
"upload_time_iso_8601": "2025-02-12T13:48:31.402328Z",
"url": "https://files.pythonhosted.org/packages/7c/38/0f429bdbbb84c5c08fc3be4c5ef23a0c80fbeb0a83fd2ca123b10a99fcef/redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "941b8edaac671aff4cfaee63f404da9bcb99009ec392cba01f6b41ab0db83c1b",
"md5": "af99ab51d53e35a9f1b5dc29588e079e",
"sha256": "f5375cbf98cc461b8521138b02a4e130b64b3c9f4d70df3dc05000d8241b84cd"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "af99ab51d53e35a9f1b5dc29588e079e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1777257,
"upload_time": "2025-02-12T13:48:51",
"upload_time_iso_8601": "2025-02-12T13:48:51.359539Z",
"url": "https://files.pythonhosted.org/packages/94/1b/8edaac671aff4cfaee63f404da9bcb99009ec392cba01f6b41ab0db83c1b/redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a04c44aff0441bba3eb3d9cd4661af346f6212f7e7328f209d92abbda551605f",
"md5": "0efff94949fc70b879c3da7367c5e0c0",
"sha256": "c06c65608670b6c3ef958600e3bf2e3deee3163fb2722422360b3d09877effdb"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "0efff94949fc70b879c3da7367c5e0c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1927430,
"upload_time": "2025-02-12T13:49:16",
"upload_time_iso_8601": "2025-02-12T13:49:16.588264Z",
"url": "https://files.pythonhosted.org/packages/a0/4c/44aff0441bba3eb3d9cd4661af346f6212f7e7328f209d92abbda551605f/redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "985672e7773f04ebcd70bcfa35442999a705f53ed2fa9e8e73088a851ead0a5f",
"md5": "1fc73df37a18b5db710b37763b69a840",
"sha256": "c041bc4f1af294b5b8579c643c240fef4d90c62a5a6701adbf3aff69232b9c4e"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "1fc73df37a18b5db710b37763b69a840",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1753494,
"upload_time": "2025-02-12T13:50:28",
"upload_time_iso_8601": "2025-02-12T13:50:28.087052Z",
"url": "https://files.pythonhosted.org/packages/98/56/72e7773f04ebcd70bcfa35442999a705f53ed2fa9e8e73088a851ead0a5f/redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e442e69cb80f4dad221ba4f26885b202548595c3da5763b06de8637bdc785ce6",
"md5": "0ea228faa55b32bcb846996f57fefd8b",
"sha256": "403f2b2ea5c9d33bf130b3e2302775548cb24db0878393226d84fe90ead629b0"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "0ea228faa55b32bcb846996f57fefd8b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1847683,
"upload_time": "2025-02-12T13:50:53",
"upload_time_iso_8601": "2025-02-12T13:50:53.872335Z",
"url": "https://files.pythonhosted.org/packages/e4/42/e69cb80f4dad221ba4f26885b202548595c3da5763b06de8637bdc785ce6/redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b5a998998d3f869a070c00019385203fd877e65efd481a2972ae31cb94a4d152",
"md5": "5f1f02cc4152453a4721f29f50259a86",
"sha256": "73dc40cb99fe3e40e23ce06ef5acb920b81d9300b57a9e6bf6d90a9a7e6b8750"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "5f1f02cc4152453a4721f29f50259a86",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1872463,
"upload_time": "2025-02-12T13:51:15",
"upload_time_iso_8601": "2025-02-12T13:51:15.755245Z",
"url": "https://files.pythonhosted.org/packages/b5/a9/98998d3f869a070c00019385203fd877e65efd481a2972ae31cb94a4d152/redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2598563b6f8ceaf1d9551814f65096b40a40aaed752f941c2da336c46728294a",
"md5": "4ccdb602945d8ac832d59917ab629740",
"sha256": "26083bc7ac0240792608e770450b4d9660a6d1e0837b3f1564120d17e68493ee"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "4ccdb602945d8ac832d59917ab629740",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1821937,
"upload_time": "2025-02-12T13:51:36",
"upload_time_iso_8601": "2025-02-12T13:51:36.325412Z",
"url": "https://files.pythonhosted.org/packages/25/98/563b6f8ceaf1d9551814f65096b40a40aaed752f941c2da336c46728294a/redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d9e0cfe60b89875536fdbbb9084cc51d1d93aa90004516c1f128e54680f784d6",
"md5": "166f9e6c31fb0c2e0e944c2b18998cbf",
"sha256": "9d8c0121a0b3a1d3bf43a2384990423fd40ca0285c55854451ec54fef08603c3"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "166f9e6c31fb0c2e0e944c2b18998cbf",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1287151,
"upload_time": "2025-02-12T13:52:14",
"upload_time_iso_8601": "2025-02-12T13:52:14.322892Z",
"url": "https://files.pythonhosted.org/packages/d9/e0/cfe60b89875536fdbbb9084cc51d1d93aa90004516c1f128e54680f784d6/redis_rs-0.15.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "50d86009811c59cb86157077364c7446a700901da1fdbfd1e4c5dd3f03636541",
"md5": "1c5fe7ff472e8a1e7a76f239cc3aad6f",
"sha256": "f18c5f08dc5bde91c28c6f5668995f16d1937922147f50ad090f8ef945f32f7c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "1c5fe7ff472e8a1e7a76f239cc3aad6f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 1423280,
"upload_time": "2025-02-12T13:51:57",
"upload_time_iso_8601": "2025-02-12T13:51:57.792309Z",
"url": "https://files.pythonhosted.org/packages/50/d8/6009811c59cb86157077364c7446a700901da1fdbfd1e4c5dd3f03636541/redis_rs-0.15.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4c5fa87d69a4959141d79ff5cc32212c85c99bee192f2abfba7b665129f2f75e",
"md5": "d1ca5ba1b0cd95f3fbaadf61b10b61ab",
"sha256": "27b240503b0923bb96e437f0b05294e4e089ef786b26c87f1d7e27a8adbe79a9"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d1ca5ba1b0cd95f3fbaadf61b10b61ab",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1626034,
"upload_time": "2025-02-12T13:48:06",
"upload_time_iso_8601": "2025-02-12T13:48:06.221872Z",
"url": "https://files.pythonhosted.org/packages/4c/5f/a87d69a4959141d79ff5cc32212c85c99bee192f2abfba7b665129f2f75e/redis_rs-0.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5dba7ac63acf7722af0968644fb0da98c7587ac964d4753d9b076baa759df34",
"md5": "f69979ce7ef55a0229abec7ab9e8dbc1",
"sha256": "c1e81fb792e48f088de789948aee704cafe700a792b4407d30d561fe9461a995"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f69979ce7ef55a0229abec7ab9e8dbc1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1618391,
"upload_time": "2025-02-12T13:48:33",
"upload_time_iso_8601": "2025-02-12T13:48:33.388564Z",
"url": "https://files.pythonhosted.org/packages/e5/db/a7ac63acf7722af0968644fb0da98c7587ac964d4753d9b076baa759df34/redis_rs-0.15.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a4c3a30d3221ca9ee3a986c9e80b88f46c9b63250bf83d61d99c9c34d2d29d69",
"md5": "829b11826318ac1674ce6630989c7f73",
"sha256": "d4c2762905a479e11d9be9b0e432acfbcf47778d1f702110a740eb4dfe56874b"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "829b11826318ac1674ce6630989c7f73",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1790298,
"upload_time": "2025-02-12T13:49:36",
"upload_time_iso_8601": "2025-02-12T13:49:36.350508Z",
"url": "https://files.pythonhosted.org/packages/a4/c3/a30d3221ca9ee3a986c9e80b88f46c9b63250bf83d61d99c9c34d2d29d69/redis_rs-0.15.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d3db0f1ef74947bdfebe1cb1e189a9da50a45d15da8d249349e145cf7a80d2c3",
"md5": "6e90e3fadf7ce54399dc7be06304c3c7",
"sha256": "1593c3158ec3dafeacae13be63e2bdd3ac41f7f132c756f1f94dd82cc7c8d603"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6e90e3fadf7ce54399dc7be06304c3c7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1778514,
"upload_time": "2025-02-12T13:48:53",
"upload_time_iso_8601": "2025-02-12T13:48:53.227448Z",
"url": "https://files.pythonhosted.org/packages/d3/db/0f1ef74947bdfebe1cb1e189a9da50a45d15da8d249349e145cf7a80d2c3/redis_rs-0.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "507a767cf3fbb89537c0e1a288c6f37b27a924d488948ae384c6cb47b22f077b",
"md5": "71048b115f70ee622102a0aab7b42ee3",
"sha256": "db0f5412718062ad8eeb2f7b9a23c7052e625689e97d42d83a4819b272fb713e"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "71048b115f70ee622102a0aab7b42ee3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1917443,
"upload_time": "2025-02-12T13:49:18",
"upload_time_iso_8601": "2025-02-12T13:49:18.439870Z",
"url": "https://files.pythonhosted.org/packages/50/7a/767cf3fbb89537c0e1a288c6f37b27a924d488948ae384c6cb47b22f077b/redis_rs-0.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b354d4fd7568670ba63eafcd4aca42bb69d92f7e5001ba5459583b6dce0b539",
"md5": "0eeb6b6d62e43d96bc4097ac0505d755",
"sha256": "23672eaa6cd0c7be21dadaeedd2d451c71c4f681506510fd995b936913942825"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0eeb6b6d62e43d96bc4097ac0505d755",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1677473,
"upload_time": "2025-02-12T13:49:54",
"upload_time_iso_8601": "2025-02-12T13:49:54.166620Z",
"url": "https://files.pythonhosted.org/packages/9b/35/4d4fd7568670ba63eafcd4aca42bb69d92f7e5001ba5459583b6dce0b539/redis_rs-0.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b40b8fe8eb99a2d9ebe46a3fbdbf55e10c3808e96209bbf0cc0df89a04cec3d7",
"md5": "2bf908c7549ffb0a7120f855ba18a395",
"sha256": "6901239c15b3fb3fbb5e7953674dd016c158dae26f13a8d13bf32f14933128e8"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2bf908c7549ffb0a7120f855ba18a395",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1757061,
"upload_time": "2025-02-12T13:50:30",
"upload_time_iso_8601": "2025-02-12T13:50:30.163842Z",
"url": "https://files.pythonhosted.org/packages/b4/0b/8fe8eb99a2d9ebe46a3fbdbf55e10c3808e96209bbf0cc0df89a04cec3d7/redis_rs-0.15.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a2132731cc1e9321e38256d485071e40bfead62e28a04e35b38e2167cd872c42",
"md5": "a743a5c31e73867c30e6b007bc6803ac",
"sha256": "42b655fc1d0ecaa4ea6b03b5cc6ac555b7f0239071ff8ac018d9d4f2a0158c87"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "a743a5c31e73867c30e6b007bc6803ac",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1851878,
"upload_time": "2025-02-12T13:50:56",
"upload_time_iso_8601": "2025-02-12T13:50:56.881164Z",
"url": "https://files.pythonhosted.org/packages/a2/13/2731cc1e9321e38256d485071e40bfead62e28a04e35b38e2167cd872c42/redis_rs-0.15.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e56a61eecdfcc8281d0fa38fa968ad1bb77601566f6f79dffe886322708f0cef",
"md5": "1c777ab11655c28b153805f4183f7b3a",
"sha256": "6c341f42bbd188edd2f02b04321c1627732fe97bc80985405fe6de820e17615c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1c777ab11655c28b153805f4183f7b3a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1880878,
"upload_time": "2025-02-12T13:51:17",
"upload_time_iso_8601": "2025-02-12T13:51:17.628067Z",
"url": "https://files.pythonhosted.org/packages/e5/6a/61eecdfcc8281d0fa38fa968ad1bb77601566f6f79dffe886322708f0cef/redis_rs-0.15.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "186029e88f02f81f558ebbe1ec67e714c7d8ac683a5a3dbc08a97343985ec5a2",
"md5": "ff3564337afde5978ad17838bbd81a26",
"sha256": "6dad0efc53b759db4f1b15efb559bba6699c0efa63fb51483e4efc930ec54a12"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "ff3564337afde5978ad17838bbd81a26",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1820840,
"upload_time": "2025-02-12T13:51:38",
"upload_time_iso_8601": "2025-02-12T13:51:38.357354Z",
"url": "https://files.pythonhosted.org/packages/18/60/29e88f02f81f558ebbe1ec67e714c7d8ac683a5a3dbc08a97343985ec5a2/redis_rs-0.15.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fe75efe96d65467d05bcf0553136ba418e1e9d6601d36651c287f6f32a5de8dc",
"md5": "75196d04bc27152bd684127bfd86db2c",
"sha256": "07512caed07a9f33f68ee2be5656050a93f86026efb7eae0e7c9f07a373b3e3d"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "75196d04bc27152bd684127bfd86db2c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1292361,
"upload_time": "2025-02-12T13:52:18",
"upload_time_iso_8601": "2025-02-12T13:52:18.530852Z",
"url": "https://files.pythonhosted.org/packages/fe/75/efe96d65467d05bcf0553136ba418e1e9d6601d36651c287f6f32a5de8dc/redis_rs-0.15.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a05307ca33252560f53206ebe7796c1ede1717ca05648eca14613e18cc94d8ba",
"md5": "44205958691b7245da3b3bcd50292e1d",
"sha256": "5892dd0749e558814c97c1d34e21e77524d155b087cb9a59d6aa3cd5e80b5402"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "44205958691b7245da3b3bcd50292e1d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1421690,
"upload_time": "2025-02-12T13:52:00",
"upload_time_iso_8601": "2025-02-12T13:52:00.018763Z",
"url": "https://files.pythonhosted.org/packages/a0/53/07ca33252560f53206ebe7796c1ede1717ca05648eca14613e18cc94d8ba/redis_rs-0.15.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7d5a8220403611b94d1cd0f9639eee8e6cb4a4fa5b960ef3c494b6bcccdc3cb",
"md5": "9c01619b2bc5d5b01aa98ac96307b653",
"sha256": "55a156424384ddd289756f12ef36831cbf05978680fd75336739f60921b0562c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9c01619b2bc5d5b01aa98ac96307b653",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1625125,
"upload_time": "2025-02-12T13:48:09",
"upload_time_iso_8601": "2025-02-12T13:48:09.003322Z",
"url": "https://files.pythonhosted.org/packages/a7/d5/a8220403611b94d1cd0f9639eee8e6cb4a4fa5b960ef3c494b6bcccdc3cb/redis_rs-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "400d5ae54c2a124578948a21df7696d7ae74687d0411afd99a00e91065479db8",
"md5": "c861c2ddca958ff80bddba5d53e8162b",
"sha256": "043830c658b11f5ea9a3cc5a4c996c891dbbd957790c0542bfade4ad447264e9"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c861c2ddca958ff80bddba5d53e8162b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1618362,
"upload_time": "2025-02-12T13:48:35",
"upload_time_iso_8601": "2025-02-12T13:48:35.275130Z",
"url": "https://files.pythonhosted.org/packages/40/0d/5ae54c2a124578948a21df7696d7ae74687d0411afd99a00e91065479db8/redis_rs-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32ba43f265f0198fd449de25c41f8c20c8a76cfdfe1093205483d9d78aff6dc7",
"md5": "3af7bb1c7de9510c472c1b6f99f61ba6",
"sha256": "58a6382916a2429b061de3a8e59acd0037d5309823c8acb183bdfa548fc871e4"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "3af7bb1c7de9510c472c1b6f99f61ba6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1790508,
"upload_time": "2025-02-12T13:49:38",
"upload_time_iso_8601": "2025-02-12T13:49:38.168214Z",
"url": "https://files.pythonhosted.org/packages/32/ba/43f265f0198fd449de25c41f8c20c8a76cfdfe1093205483d9d78aff6dc7/redis_rs-0.15.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "57ab29b2d3f8b2e99ea6045fa06e98a8f3c71c8d07f25bafd4f7f7220719e7cf",
"md5": "e87a0edea5e0e28142b758444d192803",
"sha256": "e84c1b508aaed1436a375465814f2d5381b513809ac81be2dbff1bed4e5eec3a"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e87a0edea5e0e28142b758444d192803",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1779054,
"upload_time": "2025-02-12T13:48:55",
"upload_time_iso_8601": "2025-02-12T13:48:55.898749Z",
"url": "https://files.pythonhosted.org/packages/57/ab/29b2d3f8b2e99ea6045fa06e98a8f3c71c8d07f25bafd4f7f7220719e7cf/redis_rs-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "56138249e96989184f65328f88781c6f7d9bd429ddf8627b60dd217a06b76991",
"md5": "92ac1bf2bff1741fba8d1c05286b3ec2",
"sha256": "10d8c8113bce987503e456a89632fe6b30a7b903f67efe8cca15337b747a30c1"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "92ac1bf2bff1741fba8d1c05286b3ec2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1917417,
"upload_time": "2025-02-12T13:49:20",
"upload_time_iso_8601": "2025-02-12T13:49:20.269421Z",
"url": "https://files.pythonhosted.org/packages/56/13/8249e96989184f65328f88781c6f7d9bd429ddf8627b60dd217a06b76991/redis_rs-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b646d01161a9355bdc6528b416006f510103ff1553bc364c43589ac7728a9d38",
"md5": "48b0e81d7ef812fc2687ee5d472419d7",
"sha256": "8a7ddede31a94d5296b470291d6c6cfc4c8b9d6c348a9505fb0409fba00bfd58"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "48b0e81d7ef812fc2687ee5d472419d7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1677725,
"upload_time": "2025-02-12T13:49:56",
"upload_time_iso_8601": "2025-02-12T13:49:56.181385Z",
"url": "https://files.pythonhosted.org/packages/b6/46/d01161a9355bdc6528b416006f510103ff1553bc364c43589ac7728a9d38/redis_rs-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "eb2ce836314a3553b23b46035146c65da4ca61d3ddd8aa91daca9d58446b7626",
"md5": "089a20deeffe29efa8b8788c431ab60f",
"sha256": "88c9d82241256c2c7b4b33529d57ad020922388668905cfa184a9826fc604755"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "089a20deeffe29efa8b8788c431ab60f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1756929,
"upload_time": "2025-02-12T13:50:32",
"upload_time_iso_8601": "2025-02-12T13:50:32.705414Z",
"url": "https://files.pythonhosted.org/packages/eb/2c/e836314a3553b23b46035146c65da4ca61d3ddd8aa91daca9d58446b7626/redis_rs-0.15.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fa3f8a0692901030fa0eb7e5c754dbc565aaeca967e5564fc243d5584481fd1",
"md5": "e89a62b82c8d471094f3f3494ece55e8",
"sha256": "2db9de381fd22353b7b1216a24f52101a1f07258b9c1839dea34a7e1c98edc63"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "e89a62b82c8d471094f3f3494ece55e8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1851121,
"upload_time": "2025-02-12T13:50:59",
"upload_time_iso_8601": "2025-02-12T13:50:59.633642Z",
"url": "https://files.pythonhosted.org/packages/0f/a3/f8a0692901030fa0eb7e5c754dbc565aaeca967e5564fc243d5584481fd1/redis_rs-0.15.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aa96c578739638c3e0fc02c2f1f5a16ff90091196401c639f703ec33ee0a28b8",
"md5": "453b00fc6b2d7306022ccca6df17879f",
"sha256": "5074791c1ede6ee36d4770ee9c8dd55d085ea565bcad0cf349b20d437a0cce1d"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "453b00fc6b2d7306022ccca6df17879f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1880700,
"upload_time": "2025-02-12T13:51:19",
"upload_time_iso_8601": "2025-02-12T13:51:19.744793Z",
"url": "https://files.pythonhosted.org/packages/aa/96/c578739638c3e0fc02c2f1f5a16ff90091196401c639f703ec33ee0a28b8/redis_rs-0.15.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "30043cf880a470ccd45b4ea7e980f0270bddb72383eb3a3a0f7e7d0d9ae86bca",
"md5": "a59ae738ffb1fe4c75f2fcfa4f78c88c",
"sha256": "4b6034d83c09aa6f4a37f999cff616e4340499385957206be2c55985fd91be7b"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a59ae738ffb1fe4c75f2fcfa4f78c88c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1820928,
"upload_time": "2025-02-12T13:51:41",
"upload_time_iso_8601": "2025-02-12T13:51:41.387310Z",
"url": "https://files.pythonhosted.org/packages/30/04/3cf880a470ccd45b4ea7e980f0270bddb72383eb3a3a0f7e7d0d9ae86bca/redis_rs-0.15.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a28cd74ebff01bd8bb79a26dab8a7f8fc036015b99a6cbe8bc8e8d83f38647a3",
"md5": "c0e756364c8e91ddf0ee6c425092d70e",
"sha256": "a55066ba54e2257742cabff56d4510af624823d79c8016ddf24fa34ec18d6e1c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "c0e756364c8e91ddf0ee6c425092d70e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1293041,
"upload_time": "2025-02-12T13:52:21",
"upload_time_iso_8601": "2025-02-12T13:52:21.171131Z",
"url": "https://files.pythonhosted.org/packages/a2/8c/d74ebff01bd8bb79a26dab8a7f8fc036015b99a6cbe8bc8e8d83f38647a3/redis_rs-0.15.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99ed0225619c004c3fa282ea736bf779c6ecc8d5a1389c04ed3cd4324972d486",
"md5": "072795abdd04b34b20cbbd31a7c6416f",
"sha256": "938be2e69a9b65159484cb69e26b88153588fa8b838473e48639e63d629e823b"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "072795abdd04b34b20cbbd31a7c6416f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1421483,
"upload_time": "2025-02-12T13:52:03",
"upload_time_iso_8601": "2025-02-12T13:52:03.674255Z",
"url": "https://files.pythonhosted.org/packages/99/ed/0225619c004c3fa282ea736bf779c6ecc8d5a1389c04ed3cd4324972d486/redis_rs-0.15.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7c577d993e2001a5b45ed915ba1f3cccfc5c1e42bc631d2eb69d519dc59684a9",
"md5": "4ae5db8dec0fe28f8a611a5dbedaaee6",
"sha256": "f38cf642396e940e007695c278b0c9b8f3484cd29ce76e6d81beec8053adb4f0"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4ae5db8dec0fe28f8a611a5dbedaaee6",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1626599,
"upload_time": "2025-02-12T13:48:11",
"upload_time_iso_8601": "2025-02-12T13:48:11.826347Z",
"url": "https://files.pythonhosted.org/packages/7c/57/7d993e2001a5b45ed915ba1f3cccfc5c1e42bc631d2eb69d519dc59684a9/redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0fc3d789f3698e757e4fa577c39446c9780b0490bb8291f99b8ea8f8f2f3dca7",
"md5": "9489ee821d0e85293d0bb7154982ecdd",
"sha256": "21465da8ec853bcea48e1f59a85a1fdce663b0ef169f81b39dd93116ce318451"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9489ee821d0e85293d0bb7154982ecdd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1618354,
"upload_time": "2025-02-12T13:48:37",
"upload_time_iso_8601": "2025-02-12T13:48:37.988611Z",
"url": "https://files.pythonhosted.org/packages/0f/c3/d789f3698e757e4fa577c39446c9780b0490bb8291f99b8ea8f8f2f3dca7/redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c47e837529cafcdd64d7c76cd670340acb2132bff4648aa7cf73cbd04a7ced06",
"md5": "625095b25a7dfb5eb61d9d1e5856248b",
"sha256": "6e20121989f8d10094780c3dbd2c12170c1ffb3300bdee841d4ad0e6496df942"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "625095b25a7dfb5eb61d9d1e5856248b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1790960,
"upload_time": "2025-02-12T13:49:40",
"upload_time_iso_8601": "2025-02-12T13:49:40.122187Z",
"url": "https://files.pythonhosted.org/packages/c4/7e/837529cafcdd64d7c76cd670340acb2132bff4648aa7cf73cbd04a7ced06/redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2077afd698a27d5a6a71a817af42a94fd3d3e25e129b3d208b21fa7f6f8aa9ec",
"md5": "7a8e75dfb58b9eeb3490c02d7e0776ec",
"sha256": "38a595e87a075bc3ae1f9bd9e7a9b521e3f2d40b78d0c33020523b46cc822541"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7a8e75dfb58b9eeb3490c02d7e0776ec",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1779692,
"upload_time": "2025-02-12T13:48:58",
"upload_time_iso_8601": "2025-02-12T13:48:58.664893Z",
"url": "https://files.pythonhosted.org/packages/20/77/afd698a27d5a6a71a817af42a94fd3d3e25e129b3d208b21fa7f6f8aa9ec/redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8d089035b94d8bb490b20cd855ede098ad03e84ca454e61a48785e243dc042d5",
"md5": "caa6c1bab5b6e94aa1746ad598a6f6f5",
"sha256": "829227d9c4ad5e77adaf5369fa9babad74b8d31cd71fe4e6ab19ada0d5e9d0de"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "caa6c1bab5b6e94aa1746ad598a6f6f5",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1914010,
"upload_time": "2025-02-12T13:49:22",
"upload_time_iso_8601": "2025-02-12T13:49:22.535658Z",
"url": "https://files.pythonhosted.org/packages/8d/08/9035b94d8bb490b20cd855ede098ad03e84ca454e61a48785e243dc042d5/redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06a26458c1d4b4265c906c71e8835f5904385fd279a19f305395efd17b6ea646",
"md5": "c384a546663a2a22ac801977d1a37201",
"sha256": "29b079848a1667a16d73efed1d249a1f9cf8ce3e4cde4a90c3043b530757c37e"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c384a546663a2a22ac801977d1a37201",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1676599,
"upload_time": "2025-02-12T13:49:57",
"upload_time_iso_8601": "2025-02-12T13:49:57.985073Z",
"url": "https://files.pythonhosted.org/packages/06/a2/6458c1d4b4265c906c71e8835f5904385fd279a19f305395efd17b6ea646/redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3439b6e4f693c965f4061b58668817d8f18e3332650a3826c7870b51fd82ac52",
"md5": "ecb0f0f011ef29bc16f20de7c96937f2",
"sha256": "4faa1819b46059aaa6bf60e3ca1449960e0e0be3edd3558945373f76eb1fbf1c"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ecb0f0f011ef29bc16f20de7c96937f2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1757752,
"upload_time": "2025-02-12T13:50:35",
"upload_time_iso_8601": "2025-02-12T13:50:35.468230Z",
"url": "https://files.pythonhosted.org/packages/34/39/b6e4f693c965f4061b58668817d8f18e3332650a3826c7870b51fd82ac52/redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d372ae519e342eff7c466906ee78760fea663cf0b8a6df7bd643028a637e0b54",
"md5": "08833c5ce2975c49b2e8e021c677b334",
"sha256": "c218f44f6d43d6b1e53ab836f257c0fed00e56c9bec2ea1f669e3ff6e785919f"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "08833c5ce2975c49b2e8e021c677b334",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1853268,
"upload_time": "2025-02-12T13:51:01",
"upload_time_iso_8601": "2025-02-12T13:51:01.648901Z",
"url": "https://files.pythonhosted.org/packages/d3/72/ae519e342eff7c466906ee78760fea663cf0b8a6df7bd643028a637e0b54/redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8aa81198b059005acfdb8f4c932ae293f4d420a35b8afe9908f2f8a3453f0a92",
"md5": "a150fba9d9ac0823b0978219c34e44fd",
"sha256": "9e02a9abf7d5cab2152cc6daff66638c6d1c276da5e6615704d06f93e4e67d9f"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a150fba9d9ac0823b0978219c34e44fd",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1881145,
"upload_time": "2025-02-12T13:51:21",
"upload_time_iso_8601": "2025-02-12T13:51:21.668533Z",
"url": "https://files.pythonhosted.org/packages/8a/a8/1198b059005acfdb8f4c932ae293f4d420a35b8afe9908f2f8a3453f0a92/redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8bb0790b4162946df4cad2ac2d96a38e5f952069f221a2d74c9ab5a1e6a4e57d",
"md5": "a0f0360fd34ae39fb90de7459b9f1d3d",
"sha256": "7d104ed14426e52ce55593e9c211fb1a0d9b601d53d8e94188c35a468fc11176"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a0f0360fd34ae39fb90de7459b9f1d3d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 1821080,
"upload_time": "2025-02-12T13:51:44",
"upload_time_iso_8601": "2025-02-12T13:51:44.867680Z",
"url": "https://files.pythonhosted.org/packages/8b/b0/790b4162946df4cad2ac2d96a38e5f952069f221a2d74c9ab5a1e6a4e57d/redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f912d8ce6cebe4182acd2ba4d1e6aef8015a4dd60f968c8f00d48f672df1807a",
"md5": "58bcaddad4b0effa08ec9cf56caf4126",
"sha256": "3e244bef5a3d08d332ef779c278b4c63a4731dfa136c0f56555d7ab9baad33b7"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "58bcaddad4b0effa08ec9cf56caf4126",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1627341,
"upload_time": "2025-02-12T13:48:14",
"upload_time_iso_8601": "2025-02-12T13:48:14.812082Z",
"url": "https://files.pythonhosted.org/packages/f9/12/d8ce6cebe4182acd2ba4d1e6aef8015a4dd60f968c8f00d48f672df1807a/redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f213159ffb992001fe66d73206e7f049dfe50992a7823d6ea26dd85312a6bd52",
"md5": "c117587ab0c23e2e63ce3440f07a15ee",
"sha256": "f15e6b4f9faee6004e9d517841322f91437b0d7532db8c9bd3cb5eca7ea89096"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "c117587ab0c23e2e63ce3440f07a15ee",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1620101,
"upload_time": "2025-02-12T13:48:40",
"upload_time_iso_8601": "2025-02-12T13:48:40.655510Z",
"url": "https://files.pythonhosted.org/packages/f2/13/159ffb992001fe66d73206e7f049dfe50992a7823d6ea26dd85312a6bd52/redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1550aca714b9e3d3ce734ba4eacd32d2e9316cc001093053b394b4dcf5589bcf",
"md5": "6c38f3fb669a25a81668a866bec11365",
"sha256": "6552abbd289ed51adbc3fa2261a760c7568a4d701c4401eb0e301e3296a116ea"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6c38f3fb669a25a81668a866bec11365",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1779764,
"upload_time": "2025-02-12T13:49:03",
"upload_time_iso_8601": "2025-02-12T13:49:03.065518Z",
"url": "https://files.pythonhosted.org/packages/15/50/aca714b9e3d3ce734ba4eacd32d2e9316cc001093053b394b4dcf5589bcf/redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a095f1cc10a49bedceafbfc7e0a09cc1e01c119adb3f424dd9b51d029d088012",
"md5": "2a3689e6478a0f64601ddfb0cc4cf021",
"sha256": "debf87d39fa1fed383ab0828805d1500a78ac287b055b810048815cbabdc5ffc"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2a3689e6478a0f64601ddfb0cc4cf021",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1915791,
"upload_time": "2025-02-12T13:49:24",
"upload_time_iso_8601": "2025-02-12T13:49:24.833197Z",
"url": "https://files.pythonhosted.org/packages/a0/95/f1cc10a49bedceafbfc7e0a09cc1e01c119adb3f424dd9b51d029d088012/redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "61c66784bd9ae0fb1f082ab54a63c686f487a1906834b9a46be3088f7526ac1e",
"md5": "6a30f496b6ce0eb6a5ed30944b58d6d2",
"sha256": "a7627b5f61a5f1ccee129018d5b871437196b85ea3bb6af510423057b9aacc92"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6a30f496b6ce0eb6a5ed30944b58d6d2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1759030,
"upload_time": "2025-02-12T13:50:38",
"upload_time_iso_8601": "2025-02-12T13:50:38.129466Z",
"url": "https://files.pythonhosted.org/packages/61/c6/6784bd9ae0fb1f082ab54a63c686f487a1906834b9a46be3088f7526ac1e/redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0dafb83337bf69fc75e58c917d4788af4d64f2c9d704de0580155124c65d4017",
"md5": "9fdd7990e17a3703af2552831975b107",
"sha256": "cf1db0da4003a84f1a680e3269ae9b4443acf05039c4809e112348716c54cac4"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "9fdd7990e17a3703af2552831975b107",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1852789,
"upload_time": "2025-02-12T13:51:04",
"upload_time_iso_8601": "2025-02-12T13:51:04.542719Z",
"url": "https://files.pythonhosted.org/packages/0d/af/b83337bf69fc75e58c917d4788af4d64f2c9d704de0580155124c65d4017/redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "44d84c362f5625f6ac3757a790b9fa663411debe86d598827eeefaf5556c94da",
"md5": "0d4b563c55d3f27f73a24f498e997ed1",
"sha256": "7db78b6982d66ded74b353f3eec0fe689d28084fb21562774fcae131601f3a5e"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0d4b563c55d3f27f73a24f498e997ed1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1883925,
"upload_time": "2025-02-12T13:51:25",
"upload_time_iso_8601": "2025-02-12T13:51:25.265576Z",
"url": "https://files.pythonhosted.org/packages/44/d8/4c362f5625f6ac3757a790b9fa663411debe86d598827eeefaf5556c94da/redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a8897834da8d0453ded6419a237ac83856d35dd2438badfcb460072477267e7",
"md5": "394201adb5ae4d83e2fbd60a44a082df",
"sha256": "ff8b6c5b06e5ddc88d7eb3722d939c1e90f617c83bb37788a42dffb92adceb05"
},
"downloads": -1,
"filename": "redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "394201adb5ae4d83e2fbd60a44a082df",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 1821979,
"upload_time": "2025-02-12T13:51:47",
"upload_time_iso_8601": "2025-02-12T13:51:47.012231Z",
"url": "https://files.pythonhosted.org/packages/0a/88/97834da8d0453ded6419a237ac83856d35dd2438badfcb460072477267e7/redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9b4cf8816cd7782bf289028473e0547bb05cfb2c39aa8c02ea4e88a3e9dd99e",
"md5": "13b8433f85746b2227e03b88d2c99bdb",
"sha256": "05c0026a87ae08657f1c7eba94c788e13f367c5b18521363eee0929b14692218"
},
"downloads": -1,
"filename": "redis_rs-0.15.0.tar.gz",
"has_sig": false,
"md5_digest": "13b8433f85746b2227e03b88d2c99bdb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 42070,
"upload_time": "2025-02-12T13:51:48",
"upload_time_iso_8601": "2025-02-12T13:51:48.749059Z",
"url": "https://files.pythonhosted.org/packages/b9/b4/cf8816cd7782bf289028473e0547bb05cfb2c39aa8c02ea4e88a3e9dd99e/redis_rs-0.15.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-12 13:51:48",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "aamalev",
"github_project": "redis-rs-py",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "redis-rs"
}