Skip to main content

Fast, async, fully-typed Redis client with support for cluster and sentinel

Project description

docs codecov Latest Version in PyPI ci Supported Python versions

[!IMPORTANT] To learn about breaking changes and migration steps for version 6 please see Migrating from 5.x to 6.0.

If you are looking for the 5.x implementation, please refer to the 5.x branch.

coredis

Fast, async, fully-typed Redis client with support for cluster and sentinel

Features

Installation

$ pip install coredis

Getting started

Single node or cluster

import anyio
import coredis

async def main() -> None:
    client = coredis.Redis(host='127.0.0.1', port=6379, db=0, decode_responses=True)
    # or cluster
    # client = coredis.RedisCluster(startup_nodes=[coredis.connection.TCPLocation("127.0.0.1", 6379)], decode_responses=True)
    async with client:
        await client.flushdb()

        await client.set("foo", 1)
        assert await client.exists(["foo"]) == 1
        assert await client.incr("foo") == 2
        assert await client.expire("foo", 1)
        await anyio.sleep(0.1)
        assert await client.ttl("foo") == 1
        await anyio.sleep(1)
        assert not await client.exists(["foo"])

        async with client.pipeline() as pipeline:
            pipeline.incr("foo")
            value = pipeline.get("foo")
            pipeline.delete(["foo"])

        assert await value == "1"

anyio.run(main, backend="asyncio") # or trio

Sentinel

import anyio
import coredis

async def main() -> None:
    sentinel = coredis.Sentinel(sentinels=[("localhost", 26379)])
    async with sentinel:
        primary: coredis.Redis  = sentinel.primary_for("myservice")
        replica: coredis.Redis  = sentinel.replica_for("myservice")

        async with primary, replica:
            assert await primary.set("fubar", 1)
            assert int(await replica.get("fubar")) == 1

anyio.run(main, backend="asyncio") # or trio

Compatibility

To see a full list of supported Redis commands refer to the Command compatibility documentation. Details about supported Redis modules and their commands can be found here.

coredis is tested against redis versions >= 7.0 The test matrix status can be reviewed here

coredis is additionally tested against:

  • uvloop >= 0.15.0
  • trio

Supported python versions

  • 3.10
  • 3.11
  • 3.12
  • 3.13
  • 3.14
  • PyPy 3.10
  • PyPy 3.11

Redis API compatible databases

coredis is known to work with the following databases that have redis protocol compatibility:

References

Project details


Release history Release notifications | RSS feed

This version

6.4.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coredis-6.4.0.tar.gz (205.3 kB view details)

Uploaded Source

Built Distributions

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

coredis-6.4.0-py3-none-any.whl (248.3 kB view details)

Uploaded Python 3

coredis-6.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (404.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

coredis-6.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

coredis-6.4.0-cp314-cp314t-macosx_11_0_arm64.whl (385.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.4.0-cp314-cp314t-macosx_10_13_x86_64.whl (388.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (391.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

coredis-6.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (390.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

coredis-6.4.0-cp314-cp314-macosx_11_0_arm64.whl (374.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.4.0-cp314-cp314-macosx_10_13_x86_64.whl (378.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (392.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

coredis-6.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (388.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

coredis-6.4.0-cp313-cp313-macosx_11_0_arm64.whl (374.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.4.0-cp313-cp313-macosx_10_13_x86_64.whl (379.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (392.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

coredis-6.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (389.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

coredis-6.4.0-cp312-cp312-macosx_11_0_arm64.whl (374.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.4.0-cp312-cp312-macosx_10_13_x86_64.whl (379.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (390.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

coredis-6.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (388.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

coredis-6.4.0-cp311-cp311-macosx_11_0_arm64.whl (371.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.4.0-cp311-cp311-macosx_10_9_x86_64.whl (376.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (391.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

coredis-6.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (389.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

coredis-6.4.0-cp310-cp310-macosx_11_0_arm64.whl (372.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.4.0-cp310-cp310-macosx_10_9_x86_64.whl (377.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file coredis-6.4.0.tar.gz.

File metadata

  • Download URL: coredis-6.4.0.tar.gz
  • Upload date:
  • Size: 205.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coredis-6.4.0.tar.gz
Algorithm Hash digest
SHA256 c8af096a12418447f51d7405ad85d1e382ae51fe8535ece19c2a1829f5bc6484
MD5 20382f4e9fda875e65010efea45208ce
BLAKE2b-256 cbbf2fcec4c34ace8dac737489573e57d17a76ee659694a04473b9ac56533542

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0.tar.gz:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-py3-none-any.whl.

File metadata

  • Download URL: coredis-6.4.0-py3-none-any.whl
  • Upload date:
  • Size: 248.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coredis-6.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3caaa5b0e8b8476650fd77b150472ed34c918e878217f5d519bfda72a800602d
MD5 e2c98cc7e2dda407368a9f082347380d
BLAKE2b-256 4fcedbc8b0dcc8342d2feb9e46defe9ac66e43a582f7178a2dd722253234f42f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-py3-none-any.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7f5f3e154e90ed62dfff9210fa1b1a5b9f3ab02d4081fc700ac29bc8d0c2bfc
MD5 809d9865ee71c8bc66b48e5659464bfe
BLAKE2b-256 9490217f9a9227f27ac914ca3672dea342aabc7de8444e0b62a6700e44e3f6af

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a27cf115838b939ff3726c09b1b46ef18a75c650042a96b3336c293ec7caf238
MD5 e8e86a4956ee2af551ede827ae0ea28c
BLAKE2b-256 0404d028db1a4c81744d9b0d1b771b48c8aa38ba954538fde003b6e198eca7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb95d4582029d6131d0bf4d9eb990c4fd977b59137d59195586c9e0bbd261fa
MD5 cf34eef520e386d6e5c26165aac6e660
BLAKE2b-256 436b6a2e86665e56b15a6227065fd0adab79f507d6e60c6d4d71e87d65a2e646

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90ad185154b87f33ad2a425b1650c0294cc941873c2c00659011deff5852ee26
MD5 47d0ff9f3e2635e6db4a515b726a04b1
BLAKE2b-256 9d6187129c92d4601667885b8ca1ecdce5f2d2b669ba4664b22e47c3949d899c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31e06002af78980a46060221161b0c394454baa067b0d2f58d29606615228235
MD5 df19f2150654a34f15135b30d20bd27b
BLAKE2b-256 d80d6539788c457e93e6c8f1e91a23a04eee35cb31c9105a953648e701b93ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fb7ded0376499a4c22b0124b8baf6786976eaca5d7b5e122b93660352271a2d
MD5 7af6651f0b890e0fac719f92d310fe9f
BLAKE2b-256 daf858f6f8695005517d52779a92cea182e488b27393c0c23dc81672893aae4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2af294580183535f422b04ad5bfffad0a97bc092a49ba65f47cabccafab41b9d
MD5 79b95b5d177f3f00a6444016c7986bdc
BLAKE2b-256 c626f1bed2a05a311b93065d4b93967214589018c2060ab9a30df43027f02596

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a10a450a1f53c09fa03e0f11c2600d7fb4e273a11840de0579d3ed9327088a26
MD5 92ef32652e28894add1140485b8a22e5
BLAKE2b-256 90dea7fc4e5599ff666e39d1703dfffd4a9b939e1a53d96d510971663af35d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 738bc6adb2a70dc253b9e5ee2ec23d52c3be8b54db896d8e1315012991287746
MD5 d99050f07bb09d86fee7e30ef8537d9b
BLAKE2b-256 9cd28320763b64160981125f2542f96c6e22473dc9718b156c6fbd0502d84461

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e147ef9d60645adc099fab401c26ccd17bc8cd36ce018ae0666abbb56db1223c
MD5 ba972eabab114f807caa954e8b34582e
BLAKE2b-256 accd69ea2a501ed6e9328a9a00aa8b806cce1b0879060b4096a69c4a8f3ab42e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 502c0bc26f3e8c615cb582907394194621adc03f1a651df3492cbc1c1d1c98ff
MD5 f5559c3b03495f32f2b7ed9b3fe0bd8b
BLAKE2b-256 0d977eea5dbeaaf031441118b4460c2d13a131b20a256352ef14e5fcfc3403b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cf0f392ad9472a53e3b7ab188b3ea49f51eca0948e34a80a02ad766a1f3d15ae
MD5 7dff7a98341bda3110ed45afdb32dab5
BLAKE2b-256 68579ae96b413992c206273fa1792e366d1018127499cdeb27312248bb136c10

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52eadb1f41bc1cbe9a1fe6de9cd7ec2a9e6f56f521b5024ecfe14eef95d9a9e3
MD5 1b7ce04f74b9026a3b1adb45bae7d7c8
BLAKE2b-256 ada9ef5305f167276d24f3358dec5df337ff8d9e6efa773a1b4aebf785c400c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de7c7e0ba9e86996457520ab082ab0d42f21bc6073411cdda1c8c15ad3b3f6bf
MD5 09656336a28abcd6e7f7d5bb1579498c
BLAKE2b-256 e0d0906abfbfe452ce8a0757a944310ca930e4442bc27b656882574e86d12a06

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65a572d255e40c2a6c4724d23b654d4ad0cfaf79e12537c9d6c30a9364ab074e
MD5 9f70e6915f83c6ff49bc01fd2c52ec95
BLAKE2b-256 7373a1accbd901c968689ebbf77f2297cde3cec90de0eb6d6af343af25ada267

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7ae0644cdb8058671a00d1d2d22fca4b3d0da655c7295ed1de171c150cf2d64a
MD5 dce4d4278e71618e0e9d36d442d0501d
BLAKE2b-256 8465639a463fd1d8e85ca7efe3d062822cdfe8d8fda9331ddc92bc766ff8fc05

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c66d8f6e7656247fa250bef2fbe45343322b4337e74a3d0d86fa961150644fe
MD5 ecafeea0748de3729e83f754c9064e2c
BLAKE2b-256 a3c83339ea5edb3e903951ea3423a8352f8ba8ee816b2f59a2bc120045f9eb94

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a130b526a46b44dc973f005fb291693bf92ba301a739e741ece82557d421254
MD5 44b981a3964f0cc20bbc6e466365fce6
BLAKE2b-256 6b7397c1ea1ca85cb7efb487b53474ca40ba28c96e5b725b959a455800994118

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 259bfb8170045575661d92e62d035305b6eae1fa12fd4c8395732862a00cbfe2
MD5 cca0b8d0b86449b3f643e8f857fe95e5
BLAKE2b-256 264093dadcb1778d9efb5f83991ead88c31e0ce0042cfb4fcd26684a52af9e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99a44605811b7e9289c76998dad29915fb4b3405c7f54f8ed53a5971e4167a3a
MD5 e51625a44a8216ead8cd40e8ab4d1452
BLAKE2b-256 ba788e4863cafa8264314846afebabd75020f3ec2dd91c7eecbb47a1ba75f30a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 62b4f011633c39bc120d3652ab2e047e41ccdf69ab10c562e1aa58e6a81393bb
MD5 b42f0c7f2e54d30efe2acd9e247ef8bc
BLAKE2b-256 03b912264122e39f340945e9ac8ea1abf2eeadcc4bd9ec2ed22409dd94bcc9ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c80f7615bdc311397c8927f197765072cbb5961ad5716f393b6fcfe26fff10ac
MD5 27943ca78f22027a3651a782579fec3e
BLAKE2b-256 23f815295ba07ee6eb1a5661c3ffca3a7d513e06be2804466fa4bd3ff1a12bf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5c3056ccecae19b2fb224bb64a8f6f5e208d5b2bd4459ae8f007e7ac2da4bed
MD5 89e2bdd5f9aef6de792314913cb10cd6
BLAKE2b-256 9d79337ea49b3892f296af0f1350f721deec05a6d6e223890c7530a75f43b1e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coredis-6.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b2a71f9daa3c6ae888f019f597ac7a56ff0f96acb47aea17251586de7326891
MD5 386f66ebc3e1c97ab55b393cc96ffd99
BLAKE2b-256 9f7dd66e0f042398b02231207875fe67f2fdc88832bf7d2e2f9a0a05f87b5b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: main.yml on alisaifee/coredis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page