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

Optional extras

$ pip install "coredis[otel]"

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

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.5.0.tar.gz (210.4 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.5.0-py3-none-any.whl (255.7 kB view details)

Uploaded Python 3

coredis-6.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (420.6 kB view details)

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

coredis-6.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (419.8 kB view details)

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

coredis-6.5.0-cp314-cp314t-macosx_11_0_arm64.whl (400.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.5.0-cp314-cp314t-macosx_10_13_x86_64.whl (405.5 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.6 kB view details)

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

coredis-6.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (406.6 kB view details)

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

coredis-6.5.0-cp314-cp314-macosx_11_0_arm64.whl (389.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.5.0-cp314-cp314-macosx_10_13_x86_64.whl (394.8 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.7 kB view details)

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

coredis-6.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.6 kB view details)

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

coredis-6.5.0-cp313-cp313-macosx_11_0_arm64.whl (389.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.5.0-cp313-cp313-macosx_10_13_x86_64.whl (395.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (409.6 kB view details)

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

coredis-6.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.4 kB view details)

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

coredis-6.5.0-cp312-cp312-macosx_11_0_arm64.whl (389.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.5.0-cp312-cp312-macosx_10_13_x86_64.whl (395.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (407.3 kB view details)

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

coredis-6.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.9 kB view details)

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

coredis-6.5.0-cp311-cp311-macosx_11_0_arm64.whl (387.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl (392.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.5 kB view details)

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

coredis-6.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.9 kB view details)

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

coredis-6.5.0-cp310-cp310-macosx_11_0_arm64.whl (388.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for coredis-6.5.0.tar.gz
Algorithm Hash digest
SHA256 5a5a626c6ff0f018666a1a827ea5664a3c91eab1fd640b08e82c9c815697d1c3
MD5 b2c4306857ccc2dee8e3ffe9694a9355
BLAKE2b-256 8a7e75e0de9749a31ac5de3fd1330c32c24aa804b1d52d1a6db411ac174ca7b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-py3-none-any.whl.

File metadata

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

File hashes

Hashes for coredis-6.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 46241b6826c907c251ef1c65ae2e00a7306dcf1ee9dda88a7156a762496b41ed
MD5 ca77fd3b43ebe7192753295b2da3df95
BLAKE2b-256 6b9e33f26673bb3c346e5e8d85ebb758144836a1eaecc4d7b20b6e7b473eca55

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7340738b83f1ebb8d7fdf5904a62a9cfc1369caa425eb0251829be692a45cad
MD5 41714c03ff5215d72184603c0327de83
BLAKE2b-256 3050abb859c19aaaba26dcfd3241436e7071bbf297e91890faf49dd76cf8d537

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3480bd0421ed792ba923f2b3e8403186db48ec7fca420639e617442db4855c7
MD5 c60d3c8d914519dd7fffa390fa17ee91
BLAKE2b-256 52c30d521a4b5d69b7575ffdd2f0ebd589db409d4f4047c882118c3c08d56433

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eff16baab51d83293f9173111b5fa95c5ddf2a04a5bc1c179576e38c9ef98e16
MD5 689185967810a1d4f4196a6ea2597ee4
BLAKE2b-256 cc5b77ac8f8e0585c55e3397f9caf2d5cbcd0c2506e3ce6a8e7790aab8a01398

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 73395df3ff38bbc36de6384780e7c8b66530803685a1ef3c1a0068c732629eba
MD5 aa48d5e8b27506ecd5fbf54f9ac84c3c
BLAKE2b-256 beb4b0ea95d8a398ff906e95c213c566d122d62b4d77c2161f55c7c84fe9b6fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a5db88ed35384eb0b98b14b6d338ce7a4e68ac1a6d9b20a920311a85e88d7aa
MD5 244cc4a8ff806e1383dbfd0e0dc95a20
BLAKE2b-256 08e30d4f587c7a8ad435717a999e5ff7963e0db654d14787118567e5479953ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 242ea9ce85c6125735697039152827318af94f676774c3b7f667292131211bae
MD5 fde560fd50aa0d3dafb5e48616bc6b91
BLAKE2b-256 460554061ca0a0e3eb2c3a8a312e1ebd5670530744fc72b5d90920ba91f2ea03

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2682224f1fabe72bab9bc57558ecfb0f5e5e8a8e7eaccf8eacda7934a65aa5a
MD5 b3042f6227e514ea167fb1b41d126b3b
BLAKE2b-256 f0886fe9e85b8a04a5bf5c1708ec7a6340aa3b83564092da315dd0bc1de98f48

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bed26f4b269b222c130fafe0425b0d00f0fa9d6e59052155da415215a978b9d3
MD5 286c5c4f70f0359edebfe716bd1a0140
BLAKE2b-256 e9f44096a99a0fcde52093e54c47ae60bc0d2a3720381d3b2a7474dbc44385eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de127b3a29c5cd38568349495902f45986b297f45998fad7be1016944ec3b539
MD5 4313b4c99343df00673f56d0d7a55787
BLAKE2b-256 e0578457c2f1b3b971f6c59f017ac0f1b64d1bba88ce5e3b1f3f8f084d02256a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04a368e5da8a8363c88bd76865dfe8318cb0c2a4cb8271aa5a82d3f2417a83d7
MD5 bbc4f3290918df6d7a9a55e1367151b3
BLAKE2b-256 9d7ef2c0092f323b96ae30abb68d744e58fc2ad622076fcbef5a8d3bb3dfaa8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4c61c25e3d1f7ba94af098315dc1280722b79eb4ed92449ec3a9f99e7d4549a
MD5 5341a22c7f3d863c5e5c4a56b4e79751
BLAKE2b-256 f56411755780160e53358ce7588d6ad48b979fd23c327135239a01667f8f4e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d34a2c4454ddb8b61329f321502734ae0eae66b0ed22c067bc7ff36f325f75b
MD5 a044c42e9bc8412ee01efebc6253e348
BLAKE2b-256 8f8c795f959d508336a746430f14fd9b242784482ee2632b8add41b8215f32fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ebc5d35945a38253c08d8a6c6ab58a57ba10411f3b5ed34268ac956b44b69b6
MD5 12e8f959951a71319c89e16e8004c1ec
BLAKE2b-256 8c146ce43caa415c72bf1018f70c07f3de562017d0bbed0ec2d6b3c1ee5f93c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 580e24b5c5033e1f28d231bfaec8e40db29daef15d7babc371547c4d3fc274c4
MD5 79ce9d7d8c3b284cfd0776fac79034d5
BLAKE2b-256 d9ae3c316e5583c34c8b546d86ccb87b9e8e6f449595da438d7a17af4644efc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2314c621e3ec18806c9836b9bacd19ae1edbe25612e9bde490359a8e0107197
MD5 7fa50f7e807d3b8a035cd4fa89b32216
BLAKE2b-256 70f83d1c67196bcae67665b49a71175d202331db377d832509fbd505777c470c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4048c171dfc66fcbbdf857602e80453cd8cba487e734eed35d61caadd074e77d
MD5 0872bd39f21991aa1d13732879a7de45
BLAKE2b-256 d956e405d2440cfb5ec4495f461655bb693cd04a278351c2528e97606320ea1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cd8866a2a9b28ab79001fdc1f66399beadca84ed3de7c95e5d36e4b8c0ca4a6
MD5 661bc317f95f65057bea0e49f39c48a5
BLAKE2b-256 f2db0214fa7921452db9bd179172808388b2f3477701741d241fde8b639b402a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8f15047e3f017aeeddc5dc01eb5fba4087f1e4cec77eb86f498c725ccb64247
MD5 6393362554d249aa70575d0dabaf9032
BLAKE2b-256 a686e151924b71c9a22c5bf9b7846e1df109a3cb2afafa8c2be9ee6bdfcfc4a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af809fdeb14fdff76f2fb3f3fa0a2c7612ca269f1f30cb56e096f30909268367
MD5 2316d9429f1faa5afbf4d309bd0aff32
BLAKE2b-256 ec57eaf162a54b490058cf3789312f72c3d64815bc655c58dde2336840d65f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 184ddcc7afae4c7ee5fb423a07b0afc80357dc142ea663894bbf212be338e3d5
MD5 991cbec40d42bc624bdb0c6116410d1a
BLAKE2b-256 ee1b2be97a49f26e6ffa2f75208dab9e06bd65a4c86cdd2a069963c1a236e9e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20eebca548a024bc3423e90948b03358f3c7a1e89a1debb4a5454fac5b3dcb11
MD5 2fb3c47cf5e910e4958b7c995cc714dd
BLAKE2b-256 4b00b4d3a980aee400b29c8a9b67960657647147d3795c588d501de745927e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 257313c22e9ac0aeefdba6d2f3ad5d93e99bfe62b4cb47c7d2b91268ba464f76
MD5 3a52125355356b3ccc9c4140f5bae3c6
BLAKE2b-256 4e09fa584c744322c80ae5bde88653e6a7ab4b99b06abb6f868114f4d83f7f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3783b18cbac9d221106d163a6137029f3e4f57e2eb38b1203860e22c76f67398
MD5 efa57f7c9f5077342b96513fa87cef7a
BLAKE2b-256 3c55bcd66798110bd5968dfca567aa2a8665c5d9fada8fcc2c047fb6b7a9422f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coredis-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dca8c551a55275e74f51d8ec0f0f6ddfec0b1b17c8df47341824b9b7912cf5de
MD5 8cf48884c45da4dbddbe4a96d16aacfe
BLAKE2b-256 d45c2ffdfd493bf7121d442bd51382530039fc90d10baee632becb4a661c0b8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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