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

For OpenTelemetry support

$ pip install "coredis[otel]"

To install any dependencies required by the recipes

$ pip install "coredis[recipes]"

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.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.8.0.tar.gz (217.7 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.8.0-py3-none-any.whl (263.1 kB view details)

Uploaded Python 3

coredis-6.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (450.4 kB view details)

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

coredis-6.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (450.1 kB view details)

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

coredis-6.8.0-cp314-cp314t-macosx_11_0_arm64.whl (428.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.8.0-cp314-cp314t-macosx_10_13_x86_64.whl (430.3 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (438.0 kB view details)

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

coredis-6.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (437.2 kB view details)

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

coredis-6.8.0-cp314-cp314-macosx_11_0_arm64.whl (416.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.8.0-cp314-cp314-macosx_10_13_x86_64.whl (418.8 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (438.1 kB view details)

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

coredis-6.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.0 kB view details)

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

coredis-6.8.0-cp313-cp313-macosx_11_0_arm64.whl (416.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.8.0-cp313-cp313-macosx_10_13_x86_64.whl (419.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (438.7 kB view details)

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

coredis-6.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.8 kB view details)

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

coredis-6.8.0-cp312-cp312-macosx_11_0_arm64.whl (417.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.8.0-cp312-cp312-macosx_10_13_x86_64.whl (420.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (436.4 kB view details)

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

coredis-6.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.0 kB view details)

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

coredis-6.8.0-cp311-cp311-macosx_11_0_arm64.whl (414.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.8.0-cp311-cp311-macosx_10_9_x86_64.whl (417.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (437.6 kB view details)

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

coredis-6.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (436.5 kB view details)

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

coredis-6.8.0-cp310-cp310-macosx_11_0_arm64.whl (415.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.8.0-cp310-cp310-macosx_10_9_x86_64.whl (418.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for coredis-6.8.0.tar.gz
Algorithm Hash digest
SHA256 38df4b8b3a43db193bcbe7a4bdb3c7d6da5636e73800fad790381a13e8c65e33
MD5 8a07aa2f70c9ac9ab9d0bbdd00a4fb23
BLAKE2b-256 701d8fa182615b8f93e1d7c5fb727ffb324cb67ed8c6af769227f6c875bc5f33

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for coredis-6.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7dd68f408a0a39efb125de3a2c453d4285a6ded84ba9c7367338464f69000a3d
MD5 3eaf0f0669741f969873e7893373eebf
BLAKE2b-256 fc440beecccfce8add1bce7d196a0522bc95b035ad109e77524d645d16ba0699

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.8.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.8.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.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f94aa7922b4c9d79a41f1f2ba6572623e2559bec2b2584db1579636c33d32c3e
MD5 914a54b3f55e15966f799dc48b2f8a26
BLAKE2b-256 91740aaba87ce3c648fe2201c67a758eb7be37cc4d1c3381b945343795ec87f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c9856dc6cce25c6899782712ccba024b3659d79397da43b9609b6b47368be2c
MD5 75cdd72df6b84e541bb145041bdc13ec
BLAKE2b-256 8556898566b8af134ac7d9d996db54e50ad0e0a8829279ea05b03f1685789195

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 973ac6cf1396f6f25e7e73fdd44fc2ac0987f01d88ccd438e16d34fbd361e861
MD5 97dc23d44d86a95aa962d0a3af884aad
BLAKE2b-256 e63509d033696f1b97337e0a153909b594270b17603cada9c2e9f798530d21bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 08a9671f894fa2cf97fab641d389004d3096fa846f37c59d0537050a3cb72db5
MD5 f16cd4d5bad25988fee3646366a4aec6
BLAKE2b-256 0e431a26c15318920008983319c6decb032ed7d22f735d4f0cb0d5b6db507098

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.8.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.8.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.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 572a53ae78020e43afeed318be7082581d5ccd158d53617da612e38e6f79276d
MD5 ff8a7c7b7cc31a6aea16a2fae1f81fea
BLAKE2b-256 7cb5f3f66d497047c69176457cfcbc8e998157db942a6f1cefa9ed9049c5aa4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e75f6411d6ee4515d977678aee5c58c95e9dd92e137836abbad94b549cff465
MD5 42572974d91ad257203536a1e34fd2ec
BLAKE2b-256 c5c9f95ef3cb92dd4e113ba3ea5b083b0a0af9e9d66acf4e47172d304c6f04eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c86bbd9a743ad9ca7c05478ab48cab641810710087ddd63151a674e47775367
MD5 7f15ae10c153af4a068b7d4983ecc84e
BLAKE2b-256 7a0c94f991a79bedd0d991d800286e45619efe781f08c25a53ab4bc5757f749d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c834a43e32da2a768fb94ac5934d2689173ddcef3a244e697955dce946c0348
MD5 3a2d9e72638a194d52ad831e1b05368f
BLAKE2b-256 5c26398d475eb66fa81fa25914ca83f26081fa80729a8984dd6a382107dc1dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.8.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.8.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.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e58bc56bdb6d72b809f3f8337ce9d321fb62b9854eef19f3a2f734f92a87cebe
MD5 fb520520f3658dd582e7a2811add76a8
BLAKE2b-256 4f5433447c94f18fde1484ea71298aade643d7c9d2a7a504cf67bcbac96627f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6c2d03aab5bbcec81662ccca35827218353ccf3b7fa26d11f5f9df232b403a9
MD5 b5c22001a796d38690a501d6d70571d9
BLAKE2b-256 4d66500e56e9913b4eecf3cb0de0bb0df5f6197e2fc969df014ceb5c30cc7780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f47eb301e758c8255fbb0a313a94d567cc646ed8556c9881c790aaaed34e91
MD5 41ec751cb5574dec2aabe877ebc6f467
BLAKE2b-256 3e44829e8c92e9be5f0a77773b7ea1181645cf020723421b34451ad0851adda2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f3f4bfb3c177e0e5b09314e3663eafd815d018fa73a4d77c0595a5c4fdf2009
MD5 862b950b3e282f7a7223ed2dae6f222f
BLAKE2b-256 b3bee7d95919026f4e5bbaa981dc7adae505b21d377a47a954cd09f5cfebe9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.8.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.8.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.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b59035730bf137c54e5fcbc3c76ffc5429169022e42ac6a0ebe466ddc4620c67
MD5 7e56ec1c8d7df44a90b77fdcc43a9634
BLAKE2b-256 87f36b69550e6e91e40fdbcad384c7c197b0f3269796914345080da7d000586d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ca10d5b90623bbcaf7040a7ac00a62e8ae7e2239fb7030cbc190fc45ef29ce7
MD5 de8befaa58a1fbb2e078f25e7c45f1a8
BLAKE2b-256 d576750a6448c3ce851ce40d488c1e40f1abf5e5f1e67e3112bf51033dfbf9a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce032157df3345ee97493ed6360f2acaef6972380d2d8d608140ad48c994b0fc
MD5 a77ca719fe2932ca9e1cd3c97445fc1b
BLAKE2b-256 6fd8f2449c18bb8b9dcc701b81d6e75a74a330e8c11c3b2e5950b2a54d4ea50d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a2265636d9feb10d7c7d72a744bb2fd438d5aabea74dace3c8a59614492f6ba6
MD5 5f34805b088da7d660b3b7bf8d00943b
BLAKE2b-256 5a14f9e82c1f9fa4cdc27f226bf6661f6ee8a7d352424a627fb598c5e0156c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.8.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.8.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.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af3ac9066b61db22575eb4eb4b047993d73f1373c8c939586ffe6761d7b4d73f
MD5 b9f88317afd4f3bdfa479ee39f36caf2
BLAKE2b-256 447d0e6abdee3036a4dfc55856463d1f11273196140ca6ac05e932c3a6244ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2dbae5accc0ba39f14e259a79c66f258320abcef8f0ed8e62b84d1262a945177
MD5 d580ee40492ea3256ca2e835e41e56df
BLAKE2b-256 9dd4073d667ebb95806e071b526c846e7572e9ceddfbcb23dc501286c43bc9e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd65729bb93309ced2139aa26aace535f6e808c4437a6b03eb5ebfd26b0e6e00
MD5 e1bf9d65e4ac24489480b2f81eb216aa
BLAKE2b-256 344efe9751a337d5049ac4d6a9af4ac01e978354d17771697b712721026d66d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c53ae6a92b0e4c67e69627bfc3c7d0d082d964fb213981f5281618dcff7034d1
MD5 86776b0bdfbe4c6f2d7e48b10b10277c
BLAKE2b-256 6065fac1ef77579de2bab17b7fe4f64af131cd692d4faba9c7a8fa315e66ff27

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.8.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.8.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.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55357965e61938ccca753811eacdc55c5438b2e958296693c5906d6b1b484667
MD5 112828ee40dc470999c314eba8f9ec9d
BLAKE2b-256 892fd78baf255e844c067a831f0bcdfd4feff0a065631887785a220567704bc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1dabee96b8fae889ac8e928b9e95a4b3e29b1e96fd8f7ad426fd2affef70442
MD5 63cf58270e20cb90d5a4453647e3f01a
BLAKE2b-256 728303f099878aece71af5317d60de0d72dc4bd6acdcf648dde86addce411041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7fe1203510c4c87223505dc4cd2bbbb42643268140641612dadcec4035c1d7f
MD5 095da132326e095dd17a35132abd205f
BLAKE2b-256 a1d46b214a04cceca2d4f3ac7405eebf3f81f9b0a21dee8927ff67f736c486c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a4152f5d76ac5a4841cf492335b572b0eb8786cb0d457fd8dc0b48490c5f1a3
MD5 c5c970cdcc0fad7472f72586acd0d896
BLAKE2b-256 fa7c0dcb7999b835f95cb51d851189c5ece5dd12fcd50c5f79e66d249bbbc92e

See more details on using hashes here.

Provenance

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