Skip to main content
https://img.shields.io/badge/License-MIT-blue.svg https://img.shields.io/pypi/v/redis-rs.svg Python versions Documentation Status https://github.com/aamalev/redis-rs-py/workflows/Tests/badge.svg https://img.shields.io/pypi/dm/redis-rs.svg

https://img.shields.io/badge/Rustc-1.73.0-blue?logo=rust https://img.shields.io/badge/cargo-clippy-blue?logo=rust https://img.shields.io/badge/PyO3-maturin-blue.svg Linter: ruff Code style: ruff Code style: Mypy Hatch project
Python wrapper for:
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

pip install redis-rs

Using

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

cargo fmt
cargo clippy
maturin develop

or use hatch envs:

hatch run fmt
hatch run check
hatch run build

Release files for redis-rs 0.15.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for redis-rs 0.15.0
File Size Uploaded
redis_rs-0.15.0.tar.gz 42.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for redis-rs 0.15.0
File
redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
redis_rs-0.15.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
redis_rs-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
redis_rs-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
redis_rs-0.15.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
redis_rs-0.15.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
redis_rs-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
redis_rs-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
redis_rs-0.15.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
redis_rs-0.15.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
redis_rs-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
redis_rs-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
redis_rs-0.15.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
redis_rs-0.15.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
redis_rs-0.15.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
redis_rs-0.15.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
redis_rs-0.15.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
redis_rs-0.15.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
redis_rs-0.15.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
redis_rs-0.15.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
redis_rs-0.15.0-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
redis_rs-0.15.0-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
redis_rs-0.15.0-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
redis_rs-0.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
redis_rs-0.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
redis_rs-0.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
redis_rs-0.15.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
redis_rs-0.15.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
redis_rs-0.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size:178.1 MB

Release files / redis_rs-0.15.0.tar.gz

Download URL redis_rs-0.15.0.tar.gz
Size 42.1 kB
Tags Source
SHA-256 checksum
How to use checksums
05c0026a87ae08657f1c7eba94c788e13f367c5b18521363eee0929b14692218
BLAKE2b-256 checksum
How to use checksums
b9b4cf8816cd7782bf289028473e0547bb05cfb2c39aa8c02ea4e88a3e9dd99e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
7d104ed14426e52ce55593e9c211fb1a0d9b601d53d8e94188c35a468fc11176
BLAKE2b-256 checksum
How to use checksums
8bb0790b4162946df4cad2ac2d96a38e5f952069f221a2d74c9ab5a1e6a4e57d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Size 1.9 MB
Tags Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
9e02a9abf7d5cab2152cc6daff66638c6d1c276da5e6615704d06f93e4e67d9f
BLAKE2b-256 checksum
How to use checksums
8aa81198b059005acfdb8f4c932ae293f4d420a35b8afe9908f2f8a3453f0a92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c218f44f6d43d6b1e53ab836f257c0fed00e56c9bec2ea1f669e3ff6e785919f
BLAKE2b-256 checksum
How to use checksums
d372ae519e342eff7c466906ee78760fea663cf0b8a6df7bd643028a637e0b54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
4faa1819b46059aaa6bf60e3ca1449960e0e0be3edd3558945373f76eb1fbf1c
BLAKE2b-256 checksum
How to use checksums
3439b6e4f693c965f4061b58668817d8f18e3332650a3826c7870b51fd82ac52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
29b079848a1667a16d73efed1d249a1f9cf8ce3e4cde4a90c3043b530757c37e
BLAKE2b-256 checksum
How to use checksums
06a26458c1d4b4265c906c71e8835f5904385fd279a19f305395efd17b6ea646
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
829227d9c4ad5e77adaf5369fa9babad74b8d31cd71fe4e6ab19ada0d5e9d0de
BLAKE2b-256 checksum
How to use checksums
8d089035b94d8bb490b20cd855ede098ad03e84ca454e61a48785e243dc042d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
38a595e87a075bc3ae1f9bd9e7a9b521e3f2d40b78d0c33020523b46cc822541
BLAKE2b-256 checksum
How to use checksums
2077afd698a27d5a6a71a817af42a94fd3d3e25e129b3d208b21fa7f6f8aa9ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags Linux glibc 2.17+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
6e20121989f8d10094780c3dbd2c12170c1ffb3300bdee841d4ad0e6496df942
BLAKE2b-256 checksum
How to use checksums
c47e837529cafcdd64d7c76cd670340acb2132bff4648aa7cf73cbd04a7ced06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
21465da8ec853bcea48e1f59a85a1fdce663b0ef169f81b39dd93116ce318451
BLAKE2b-256 checksum
How to use checksums
0fc3d789f3698e757e4fa577c39446c9780b0490bb8291f99b8ea8f8f2f3dca7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
f38cf642396e940e007695c278b0c9b8f3484cd29ce76e6d81beec8053adb4f0
BLAKE2b-256 checksum
How to use checksums
7c577d993e2001a5b45ed915ba1f3cccfc5c1e42bc631d2eb69d519dc59684a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
ff8b6c5b06e5ddc88d7eb3722d939c1e90f617c83bb37788a42dffb92adceb05
BLAKE2b-256 checksum
How to use checksums
0a8897834da8d0453ded6419a237ac83856d35dd2438badfcb460072477267e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Size 1.9 MB
Tags Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
7db78b6982d66ded74b353f3eec0fe689d28084fb21562774fcae131601f3a5e
BLAKE2b-256 checksum
How to use checksums
44d84c362f5625f6ac3757a790b9fa663411debe86d598827eeefaf5556c94da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
cf1db0da4003a84f1a680e3269ae9b4443acf05039c4809e112348716c54cac4
BLAKE2b-256 checksum
How to use checksums
0dafb83337bf69fc75e58c917d4788af4d64f2c9d704de0580155124c65d4017
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
a7627b5f61a5f1ccee129018d5b871437196b85ea3bb6af510423057b9aacc92
BLAKE2b-256 checksum
How to use checksums
61c66784bd9ae0fb1f082ab54a63c686f487a1906834b9a46be3088f7526ac1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
debf87d39fa1fed383ab0828805d1500a78ac287b055b810048815cbabdc5ffc
BLAKE2b-256 checksum
How to use checksums
a095f1cc10a49bedceafbfc7e0a09cc1e01c119adb3f424dd9b51d029d088012
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
6552abbd289ed51adbc3fa2261a760c7568a4d701c4401eb0e301e3296a116ea
BLAKE2b-256 checksum
How to use checksums
1550aca714b9e3d3ce734ba4eacd32d2e9316cc001093053b394b4dcf5589bcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
f15e6b4f9faee6004e9d517841322f91437b0d7532db8c9bd3cb5eca7ea89096
BLAKE2b-256 checksum
How to use checksums
f213159ffb992001fe66d73206e7f049dfe50992a7823d6ea26dd85312a6bd52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
3e244bef5a3d08d332ef779c278b4c63a4731dfa136c0f56555d7ab9baad33b7
BLAKE2b-256 checksum
How to use checksums
f912d8ce6cebe4182acd2ba4d1e6aef8015a4dd60f968c8f00d48f672df1807a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
26083bc7ac0240792608e770450b4d9660a6d1e0837b3f1564120d17e68493ee
BLAKE2b-256 checksum
How to use checksums
2598563b6f8ceaf1d9551814f65096b40a40aaed752f941c2da336c46728294a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
73dc40cb99fe3e40e23ce06ef5acb920b81d9300b57a9e6bf6d90a9a7e6b8750
BLAKE2b-256 checksum
How to use checksums
b5a998998d3f869a070c00019385203fd877e65efd481a2972ae31cb94a4d152
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Size 1.8 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
403f2b2ea5c9d33bf130b3e2302775548cb24db0878393226d84fe90ead629b0
BLAKE2b-256 checksum
How to use checksums
e442e69cb80f4dad221ba4f26885b202548595c3da5763b06de8637bdc785ce6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c041bc4f1af294b5b8579c643c240fef4d90c62a5a6701adbf3aff69232b9c4e
BLAKE2b-256 checksum
How to use checksums
985672e7773f04ebcd70bcfa35442999a705f53ed2fa9e8e73088a851ead0a5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c06c65608670b6c3ef958600e3bf2e3deee3163fb2722422360b3d09877effdb
BLAKE2b-256 checksum
How to use checksums
a04c44aff0441bba3eb3d9cd4661af346f6212f7e7328f209d92abbda551605f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f5375cbf98cc461b8521138b02a4e130b64b3c9f4d70df3dc05000d8241b84cd
BLAKE2b-256 checksum
How to use checksums
941b8edaac671aff4cfaee63f404da9bcb99009ec392cba01f6b41ab0db83c1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f5d9fda05abeccca3835215cd820433b9f6bb1ef1ba6dcc4c25f97611ca54b38
BLAKE2b-256 checksum
How to use checksums
7c380f429bdbbb84c5c08fc3be4c5ef23a0c80fbeb0a83fd2ca123b10a99fcef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b7fa43d87933e5f0cc3d34af76912579028de168fb7a75f02bfb4024a2f1bf4d
BLAKE2b-256 checksum
How to use checksums
c4a70173c8237f12ca160e715996a236c3b4dc559de4cc9bc5ffe93737a06bb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-win_amd64.whl

Download URL redis_rs-0.15.0-cp313-cp313-win_amd64.whl
Size 1.4 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f18c5f08dc5bde91c28c6f5668995f16d1937922147f50ad090f8ef945f32f7c
BLAKE2b-256 checksum
How to use checksums
50d86009811c59cb86157077364c7446a700901da1fdbfd1e4c5dd3f03636541
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-win32.whl

Download URL redis_rs-0.15.0-cp313-cp313-win32.whl
Size 1.3 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
9d8c0121a0b3a1d3bf43a2384990423fd40ca0285c55854451ec54fef08603c3
BLAKE2b-256 checksum
How to use checksums
d9e0cfe60b89875536fdbbb9084cc51d1d93aa90004516c1f128e54680f784d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d9b03f8874ddac8c6e483e79298cdb41e28ee43112c4b9ebe9a7ce89f82ce26c
BLAKE2b-256 checksum
How to use checksums
c0d8701887a70789010e1da6f719acbff7cb0b7ade35316fe7347389f578e901
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp313-cp313-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d98c4118d231e000c1c5914a9ce4363fee80ed446ccd24e5ae570597d408049c
BLAKE2b-256 checksum
How to use checksums
2bed8a20a27bd301ad46c56f44aee1152b8bd984b6379d2a2a3c4af55de75506
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a97cbfa70b0e50f5228ed655d4edc2fe7a9f1870784149035cd9fff595eb3839
BLAKE2b-256 checksum
How to use checksums
74bbd191107f709dff658a35a3d72a1ea908bf8b7c0f3a4ad66162c9e33ffdb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3ebd1f1f590e2fef702ffefd51b55466f96daa2970e82fd10dfdcb4994631da2
BLAKE2b-256 checksum
How to use checksums
23d26dae04c9c5830c230756dc7b799d67f0b43aada88f79ad360e3a832ec31e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5c832634a275a1bd2bc0c38163cfb16da74c314680bb056272d86f91a7da50f0
BLAKE2b-256 checksum
How to use checksums
013573cd91f4054e9230c8d37963f6f4c9d94d7de5470ed7c2bec2d991af08ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
6326b0141ade5bbc6390365dc4e40aefb7017eca43e302e90ad5594c6c68f3c8
BLAKE2b-256 checksum
How to use checksums
7d895a1186c1b26efc6b6babbab5063079feb05b8442a20a1ce9ae86377e8130
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5809311d488603f762fd9f9e350b776b11d35ef8e29a66b26a268c1870f1c69a
BLAKE2b-256 checksum
How to use checksums
21a9b21b6f8944ef28b07e9a756202fae33dff28e3f25099060380daddc1310c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6434ed656d39ae5248727b96cacaf6991721cc3d935901450e18020adc402599
BLAKE2b-256 checksum
How to use checksums
d8a7a5fea475062fe25f7704acece3a0dc24408513b8c23d36bb38c2f033a3c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
3e78ada565fc4a3bfbf0c51f7689a5cf187b1f79bb7a0f23e417e45e4e3968e2
BLAKE2b-256 checksum
How to use checksums
01169ba32780810795dabd21f84876d407968c123860549a421f83448fec2935
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1fad48fd311bec8e62d0faa98eddec32605ae173eddcf42a0fd78e383dfc1cbc
BLAKE2b-256 checksum
How to use checksums
d61d77fdbe844433177b9936c3915f439d03599929f4d8023e5b0b21793e29c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL redis_rs-0.15.0-cp313-cp313-macosx_11_0_arm64.whl
Size 1.5 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
549f8909bf06719f34fc20384d1a5a3688fecc155a70da22474bd13b01b0b4c7
BLAKE2b-256 checksum
How to use checksums
cedf1c19c147e947548530561c4fbab5824b5ad7b0d7ee011446a547410d4447
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL redis_rs-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1b54c32dfe8ed748042ded5fccc207b9341296b1abef412b7cfbc160f287c079
BLAKE2b-256 checksum
How to use checksums
93d61c9e6d1bb2b2d4c2d79a45b1bc8963bf3b83d55a0af8fd9028d521f0b776
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-win_amd64.whl

Download URL redis_rs-0.15.0-cp312-cp312-win_amd64.whl
Size 1.4 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
5fa6e8125f5f74f17b550301a601d7b86b4d2aebcc371b083a10dbc30de56569
BLAKE2b-256 checksum
How to use checksums
25097cf63b164d073e7d0b123c28d28798e14ab08ecad8c06b266c56c1c84971
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-win32.whl

Download URL redis_rs-0.15.0-cp312-cp312-win32.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
32016fb6c038e61b82379021281b852e26e00f02e3dc9ab1fff45ed08b7d0ec0
BLAKE2b-256 checksum
How to use checksums
3b32c4209bb1785ca470d4812355e3b1a8cd9bf39a727044df284a492bc6f16e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3212bfeb57d9dc396255b85a31b9db405f02f8b2bdcb7ef3e44bb9682bc7e3c1
BLAKE2b-256 checksum
How to use checksums
1e0d2f7c691df355773d8bccffed6dc90e1ff81fe4a3c652644dc68b7154c7ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp312-cp312-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
80016e5930da5a7875f2f5803db90c6024a47886cd2e2c381442495085a09f0a
BLAKE2b-256 checksum
How to use checksums
13cf21e4905448177a29c51a36b8a7c035eb82c0a40d2e30ea9b4c769fa6afc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
44c6f0ea7e04e4703aa5b9604fe9254d18b2c2cccf258785dba42400708a6bdb
BLAKE2b-256 checksum
How to use checksums
333e3de2b3638ac718dae60488da84897e647225e0788688a6020e1390822b97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
267a0f4a82f3d97e3dbb729e616c11c0a1f8dd1261a8fb9a65370de433b38116
BLAKE2b-256 checksum
How to use checksums
cefded60df53448b05172b6f4d77cb41f4107217ebaa8ad025d994eb50daa210
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ebe77b3fdea4602a73d61130fd0212c4cc2930c5a5809c1dd10fa71fed7293d5
BLAKE2b-256 checksum
How to use checksums
55b52baecb40e21d0b900d925b9f39127d91da298a8275f5cefe322a6011cda9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
30e53e8a5988092ecdd1d0695f3260ad40eae10d64bbe8e73de349666ffdb62f
BLAKE2b-256 checksum
How to use checksums
e7a7bb0516e514728f784d45961b96d4475fa63e0957ff37209f6ff4333fe540
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3fdf01223311c8ca4024f380f1546f2a7724ad53628b4d8e7b407987d5028fa2
BLAKE2b-256 checksum
How to use checksums
34e114528110bcf00a72eb672b3f16c6e70b52144644ba4b1984e650a83b0115
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
84a88ae5b3311c1a3f97cf5aa523f632360bfd856ed0c59cd6406f6b2c3bb838
BLAKE2b-256 checksum
How to use checksums
a5eec4fcd36008e83deae20e49ea31757327c060cf8cc593ceb6d024e6dd4106
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
71294512ca9a575c981e0c726ba9c32439970a1a93542b7aeebdb0cf00fc4fac
BLAKE2b-256 checksum
How to use checksums
a606663109fa17b01642f40423bdcf3582985f1bda22f064c7b3bde9d3f8e2e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2408613fe926f76fd19d1e8e7394013966386ee5a80b8a474573667db5d8d0e8
BLAKE2b-256 checksum
How to use checksums
3c802309c2f8511d2167e45a0295bfc6a4d567eb439cda042512dcb888a42778
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL redis_rs-0.15.0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.5 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
582944d77c37a61b78e2130a9627ed244d88240aa5ba1ecf6c22b27e3161f6af
BLAKE2b-256 checksum
How to use checksums
b09f3117475623493ac08c78b4ba9253711d8a5912259cc6f57f292f110654fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL redis_rs-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
a4ce61c93b23cd98524b892f1c72edeafb1c1c1174932ffc3e2cde27ecf34a4e
BLAKE2b-256 checksum
How to use checksums
f044101d9d356259ed4b4749a3a996f0ed7ebace9036d3b89cf0d2dd30b367ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-win_amd64.whl

Download URL redis_rs-0.15.0-cp311-cp311-win_amd64.whl
Size 1.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
476717cf897336153563cf22bd747418175273229d723995f6c9aaea0509115c
BLAKE2b-256 checksum
How to use checksums
c874098a9c50159192a1c59d99b2addfba6b2c8dc92517d6c80c05be1d72c4b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-win32.whl

Download URL redis_rs-0.15.0-cp311-cp311-win32.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ade5e17271ce1235ecda475afbe3e22e68c54c1cd12d6dd218e062d7ce356417
BLAKE2b-256 checksum
How to use checksums
df2feeb9e36a131c4d42a4941b76297d547ac1ca3dfb5831de82bc83d25f5ec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c1123c705f7ed114979d5511530970044a0e861e440c26fd40e5f752255da6d4
BLAKE2b-256 checksum
How to use checksums
db848219cf3361f1e0c7870a5e96d38be10d23208d0d088f3af64524f86f5f91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp311-cp311-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
90baebca1c1dd61c93f9a23e2d11347eb2566157e658598c6d25ad97c412f465
BLAKE2b-256 checksum
How to use checksums
729673ca8db2b42fe544ef4af4fd8a68bfa3fba6b0ae5f11bb5757f85d1bf3e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a0edbe70e438c7cdbc860f58f75705fc2056ed3c9ccd6c9d29417d058bcbea81
BLAKE2b-256 checksum
How to use checksums
edc7bfd82b9fcb45fa4bd1e972abea98052c007608558a7284c5657f47edefd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b15ed505385660c49e9813ab23b787f4c9a5dc98dfcc068b9a23fd8a6a3703c0
BLAKE2b-256 checksum
How to use checksums
ea1df426078e67272c8eeeb52c2e5b75014126bc1c518015540b999e6105c8e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5a9f27faca4659a8b0dd01193f6b6b0748a22c3dba48767147d9c92c509491b4
BLAKE2b-256 checksum
How to use checksums
c410de532f0f621fa460ab1716bfc6989aca7a8f30ed9d41f9c67b3a1ef664cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a517d5d9ec19b7563f40f03f37fd3f8726ea561e86d92af705c246cfd71830dd
BLAKE2b-256 checksum
How to use checksums
0b3dce10797e837af26456bd649d9ab0a6c689adef4efb736a02a74d476308a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ef9f6d66cea8ee7854756f4a248e1f87ad214b239c73a34970041394c2b805a8
BLAKE2b-256 checksum
How to use checksums
f79f16866eb1f02782534d13232c2563609675c5d7a83e39671733c81e1558a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
fe8c003e45740b28fa554774d85d15a9de118988211857959a8572aaf70c4b1f
BLAKE2b-256 checksum
How to use checksums
345c23eb25e0f7bdc40fef1c143a3b5bf7d4022a5cd8534755f320e23503d758
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2174369351a4e9dee3557d1c98183f678f1f4ff6af0e2dcb31ab63ddbf342d82
BLAKE2b-256 checksum
How to use checksums
436b0d7315efb2c1e82c375edb360483bda888de049ebf7704a58dafa6370766
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7aebcbeca2f638086896b226eadedaabf566628516f5027233ef30ecdc52d0b9
BLAKE2b-256 checksum
How to use checksums
0b5c1d5a6b3fbe11b99054accf50fd1926285e54ea27d4b97c5522b857bada0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL redis_rs-0.15.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.5 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
652196172bcf227354dbdbb8ac59c9ccc9652aa01ad7a7c2468552e4aeb127f6
BLAKE2b-256 checksum
How to use checksums
991d55c20e20eb5490dd6b2dff8604b512e9764cf7b1578eeace6139799b1466
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL redis_rs-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
e485ceffdb2a35ef63d7c2da44bc09fe3cdf5cdd27551707defeb2fb6ff30655
BLAKE2b-256 checksum
How to use checksums
87380a0e5b1b8e52692aa6f3f5b3d476f8d5177f0511e3c8a03c4e43ee58e8ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-win_amd64.whl

Download URL redis_rs-0.15.0-cp310-cp310-win_amd64.whl
Size 1.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1d690bbe93e7439dee0030703345d4581b5b646793e8362eea71dae288c997fa
BLAKE2b-256 checksum
How to use checksums
80522538a85219a43b0a245bc2aae052efd6d60a07fb729c8299878bfad32415
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-win32.whl

Download URL redis_rs-0.15.0-cp310-cp310-win32.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
ee7aeec74e4959809ed29aa4b80c1be491369bb437d452a697782d729482b767
BLAKE2b-256 checksum
How to use checksums
26893b48582f8605b84d5e370dd60a5a0ff52a06136c70e620de4360ce38aded
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f3f12ee547291bee62c2eb717509ba499d310eda038d314477c6cb4b27cb91c
BLAKE2b-256 checksum
How to use checksums
ef9edbb34e98594f74bfab4412f0a7a4bc7b845e484ea0a07afdaca8ba289eba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp310-cp310-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b43edb5b8e578bd730085c91aeb947d95651b2ef403e1d69a678d3aa3f034163
BLAKE2b-256 checksum
How to use checksums
464b48cd934d88c65730ba17ab9f2aa708e28218a0168ab25a2f65695466d7eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
c5d1471b158962a49451bf81756880dc0aedf59c70b02aa2c242182a3a5e7b31
BLAKE2b-256 checksum
How to use checksums
f0a22c07c4b8059b0a44cfbb6ef4c57791ef32769a1bca7a64d3b50b884b639c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ae98275f4feeaf4f64154dedf6dec56c930f62b9d3b887b5577d1f312390e0b4
BLAKE2b-256 checksum
How to use checksums
154b7a7c05fdfa2cd58f9c31af90973557074bf4ad70d00c0535c7ed82eccfe5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3e83a77f731d3e4c26bc03b471fcb5bd6c0a7fee88601452fed669e8eb0f42e8
BLAKE2b-256 checksum
How to use checksums
7da49e5d1cd9c8958c8c597f3d8073cb0cc30f7eb03431c95dadf24dbe6040d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c615c2b7c54185fac0242639354fee1477a876456833cdf5957a7acb06c5d03b
BLAKE2b-256 checksum
How to use checksums
d5ecb6a88dac876be21bbce81c2112647a9f90fa75c1d2762916596c32c2616a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
57020a22430816e3f2429648a09344ae700b52ec1f92480d095e4a5d42db4bd8
BLAKE2b-256 checksum
How to use checksums
d50920aa8397bf18302c7ea60530a12b923f1bfe9be1f11e1afd176a92aca586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
797291e06dcc782fdec6ac3aa8680af6d1cebf05a50a28b8771719c50b2b6d2f
BLAKE2b-256 checksum
How to use checksums
c10695ae20a39fc10fb0cb42f978cadf1643ba3f2a290794033f214eb2c041e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
5f62375b074ccef622b8f6a0af43d186bae291d0e60abcd76a63b5d1cd4b5e33
BLAKE2b-256 checksum
How to use checksums
fa6917171537a0e143891100f037cd9471ac45c9b6a615962e5d10d47040ba61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ce26775fe14f6958eaf3523023577448e98b7d2a933f2b2358ef38f4caf0c614
BLAKE2b-256 checksum
How to use checksums
3b744578393dba44cbab390e9bbd7257f8a9860067e91efbfc0adf43d6cb9f3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-win_amd64.whl

Download URL redis_rs-0.15.0-cp39-cp39-win_amd64.whl
Size 1.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
938be2e69a9b65159484cb69e26b88153588fa8b838473e48639e63d629e823b
BLAKE2b-256 checksum
How to use checksums
99ed0225619c004c3fa282ea736bf779c6ecc8d5a1389c04ed3cd4324972d486
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-win32.whl

Download URL redis_rs-0.15.0-cp39-cp39-win32.whl
Size 1.3 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
a55066ba54e2257742cabff56d4510af624823d79c8016ddf24fa34ec18d6e1c
BLAKE2b-256 checksum
How to use checksums
a28cd74ebff01bd8bb79a26dab8a7f8fc036015b99a6cbe8bc8e8d83f38647a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4b6034d83c09aa6f4a37f999cff616e4340499385957206be2c55985fd91be7b
BLAKE2b-256 checksum
How to use checksums
30043cf880a470ccd45b4ea7e980f0270bddb72383eb3a3a0f7e7d0d9ae86bca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp39-cp39-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5074791c1ede6ee36d4770ee9c8dd55d085ea565bcad0cf349b20d437a0cce1d
BLAKE2b-256 checksum
How to use checksums
aa96c578739638c3e0fc02c2f1f5a16ff90091196401c639f703ec33ee0a28b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp39-cp39-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2db9de381fd22353b7b1216a24f52101a1f07258b9c1839dea34a7e1c98edc63
BLAKE2b-256 checksum
How to use checksums
0fa3f8a0692901030fa0eb7e5c754dbc565aaeca967e5564fc243d5584481fd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
88c9d82241256c2c7b4b33529d57ad020922388668905cfa184a9826fc604755
BLAKE2b-256 checksum
How to use checksums
eb2ce836314a3553b23b46035146c65da4ca61d3ddd8aa91daca9d58446b7626
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8a7ddede31a94d5296b470291d6c6cfc4c8b9d6c348a9505fb0409fba00bfd58
BLAKE2b-256 checksum
How to use checksums
b646d01161a9355bdc6528b416006f510103ff1553bc364c43589ac7728a9d38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
10d8c8113bce987503e456a89632fe6b30a7b903f67efe8cca15337b747a30c1
BLAKE2b-256 checksum
How to use checksums
56138249e96989184f65328f88781c6f7d9bd429ddf8627b60dd217a06b76991
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e84c1b508aaed1436a375465814f2d5381b513809ac81be2dbff1bed4e5eec3a
BLAKE2b-256 checksum
How to use checksums
57ab29b2d3f8b2e99ea6045fa06e98a8f3c71c8d07f25bafd4f7f7220719e7cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
58a6382916a2429b061de3a8e59acd0037d5309823c8acb183bdfa548fc871e4
BLAKE2b-256 checksum
How to use checksums
32ba43f265f0198fd449de25c41f8c20c8a76cfdfe1093205483d9d78aff6dc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
043830c658b11f5ea9a3cc5a4c996c891dbbd957790c0542bfade4ad447264e9
BLAKE2b-256 checksum
How to use checksums
400d5ae54c2a124578948a21df7696d7ae74687d0411afd99a00e91065479db8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
55a156424384ddd289756f12ef36831cbf05978680fd75336739f60921b0562c
BLAKE2b-256 checksum
How to use checksums
a7d5a8220403611b94d1cd0f9639eee8e6cb4a4fa5b960ef3c494b6bcccdc3cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-win_amd64.whl

Download URL redis_rs-0.15.0-cp38-cp38-win_amd64.whl
Size 1.4 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
5892dd0749e558814c97c1d34e21e77524d155b087cb9a59d6aa3cd5e80b5402
BLAKE2b-256 checksum
How to use checksums
a05307ca33252560f53206ebe7796c1ede1717ca05648eca14613e18cc94d8ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-win32.whl

Download URL redis_rs-0.15.0-cp38-cp38-win32.whl
Size 1.3 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
07512caed07a9f33f68ee2be5656050a93f86026efb7eae0e7c9f07a373b3e3d
BLAKE2b-256 checksum
How to use checksums
fe75efe96d65467d05bcf0553136ba418e1e9d6601d36651c287f6f32a5de8dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL redis_rs-0.15.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.8 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6dad0efc53b759db4f1b15efb559bba6699c0efa63fb51483e4efc930ec54a12
BLAKE2b-256 checksum
How to use checksums
186029e88f02f81f558ebbe1ec67e714c7d8ac683a5a3dbc08a97343985ec5a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-musllinux_1_2_i686.whl

Download URL redis_rs-0.15.0-cp38-cp38-musllinux_1_2_i686.whl
Size 1.9 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6c341f42bbd188edd2f02b04321c1627732fe97bc80985405fe6de820e17615c
BLAKE2b-256 checksum
How to use checksums
e56a61eecdfcc8281d0fa38fa968ad1bb77601566f6f79dffe886322708f0cef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL redis_rs-0.15.0-cp38-cp38-musllinux_1_2_armv7l.whl
Size 1.9 MB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
42b655fc1d0ecaa4ea6b03b5cc6ac555b7f0239071ff8ac018d9d4f2a0158c87
BLAKE2b-256 checksum
How to use checksums
a2132731cc1e9321e38256d485071e40bfead62e28a04e35b38e2167cd872c42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL redis_rs-0.15.0-cp38-cp38-musllinux_1_2_aarch64.whl
Size 1.8 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6901239c15b3fb3fbb5e7953674dd016c158dae26f13a8d13bf32f14933128e8
BLAKE2b-256 checksum
How to use checksums
b40b8fe8eb99a2d9ebe46a3fbdbf55e10c3808e96209bbf0cc0df89a04cec3d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL redis_rs-0.15.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.7 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
23672eaa6cd0c7be21dadaeedd2d451c71c4f681506510fd995b936913942825
BLAKE2b-256 checksum
How to use checksums
9b354d4fd7568670ba63eafcd4aca42bb69d92f7e5001ba5459583b6dce0b539
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL redis_rs-0.15.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.9 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
db0f5412718062ad8eeb2f7b9a23c7052e625689e97d42d83a4819b272fb713e
BLAKE2b-256 checksum
How to use checksums
507a767cf3fbb89537c0e1a288c6f37b27a924d488948ae384c6cb47b22f077b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL redis_rs-0.15.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.8 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1593c3158ec3dafeacae13be63e2bdd3ac41f7f132c756f1f94dd82cc7c8d603
BLAKE2b-256 checksum
How to use checksums
d3db0f1ef74947bdfebe1cb1e189a9da50a45d15da8d249349e145cf7a80d2c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL redis_rs-0.15.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.8 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d4c2762905a479e11d9be9b0e432acfbcf47778d1f702110a740eb4dfe56874b
BLAKE2b-256 checksum
How to use checksums
a4c3a30d3221ca9ee3a986c9e80b88f46c9b63250bf83d61d99c9c34d2d29d69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL redis_rs-0.15.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 1.6 MB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c1e81fb792e48f088de789948aee704cafe700a792b4407d30d561fe9461a995
BLAKE2b-256 checksum
How to use checksums
e5dba7ac63acf7722af0968644fb0da98c7587ac964d4753d9b076baa759df34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release files / redis_rs-0.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL redis_rs-0.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.6 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
27b240503b0923bb96e437f0b05294e4e089ef786b26c87f1d7e27a8adbe79a9
BLAKE2b-256 checksum
How to use checksums
4c5fa87d69a4959141d79ff5cc32212c85c99bee192f2abfba7b665129f2f75e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.8.2

Release history Release notifications | RSS feed

This release

0.15.0 This release

105 release files

0.9.0

17 release files

0.7.0

16 release files

0.6.8

15 release files

0.6.7

11 release files

0.6.6

11 release files

0.6.5

16 release files

0.5.2

17 release files

0.4.0

21 release files

0.3.0

19 release files

0.2.0

19 release files

0.1.0

19 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page