Skip to main content

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

Reason this release was yanked:

Potential backward incompatable change in compiled units.

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.6.0.tar.gz (210.0 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.6.0-py3-none-any.whl (255.3 kB view details)

Uploaded Python 3

coredis-6.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (439.7 kB view details)

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

coredis-6.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (440.1 kB view details)

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

coredis-6.6.0-cp314-cp314t-macosx_11_0_arm64.whl (417.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.6.0-cp314-cp314t-macosx_10_13_x86_64.whl (422.2 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.7 kB view details)

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

coredis-6.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (425.7 kB view details)

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

coredis-6.6.0-cp314-cp314-macosx_11_0_arm64.whl (405.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.6.0-cp314-cp314-macosx_10_13_x86_64.whl (411.0 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.6 kB view details)

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

coredis-6.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (423.6 kB view details)

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

coredis-6.6.0-cp313-cp313-macosx_11_0_arm64.whl (405.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.6.0-cp313-cp313-macosx_10_13_x86_64.whl (411.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (427.4 kB view details)

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

coredis-6.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (424.3 kB view details)

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

coredis-6.6.0-cp312-cp312-macosx_11_0_arm64.whl (406.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.6.0-cp312-cp312-macosx_10_13_x86_64.whl (412.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (425.3 kB view details)

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

coredis-6.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (423.6 kB view details)

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

coredis-6.6.0-cp311-cp311-macosx_11_0_arm64.whl (403.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.6.0-cp311-cp311-macosx_10_9_x86_64.whl (409.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (426.4 kB view details)

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

coredis-6.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (424.9 kB view details)

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

coredis-6.6.0-cp310-cp310-macosx_11_0_arm64.whl (404.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.6.0-cp310-cp310-macosx_10_9_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for coredis-6.6.0.tar.gz
Algorithm Hash digest
SHA256 de095cbc9136fbb90390d1f494534af9282924c3ce8877571498f88c6b97a61c
MD5 bb9433dd8ab80a33813f3bc775b39468
BLAKE2b-256 c6124b5b9118bee0acc8798eb26f7087c3db86bcb4399255d0710eff8f22b53e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: coredis-6.6.0-py3-none-any.whl
  • Upload date:
  • Size: 255.3 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.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 39387f48fe061ca7f9950c812696fd46b379a5f02eb6c8fbecd773eea3fcdfd8
MD5 49bd25a618ef2971d581d1efd77ff811
BLAKE2b-256 53e2353b7300de85d8c3566c0593644bbab4900a7d59a922d596c2541b55ecc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.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.6.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.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bdd42581dc7a16c5b3e79f426a951d03fc1239c7ce5e2569ddc397d321136ec
MD5 131e0dc4aa99fe9b8fdf408887b991e7
BLAKE2b-256 baea67c4c44fe5805cef0b9dd502329e436160c04e889dfe77e8af98e52ec406

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54a50e1fbd89e82fa84b2983dde08934710e101f5223f7e355327e2748c5a1f5
MD5 07d70db8e63d0f17863eb598042d50a1
BLAKE2b-256 404cbbe05bf654e44c90ec1474fc9a159f4945ac4e34bd8ed625448bbc7840f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f02c9e1849c543ec987e68d5255d7d4f33e5f741e8f93cfd5df8485a5dc1f9b7
MD5 85bd8a5a22d82f277b2db2e13996c220
BLAKE2b-256 69f9d00898d2c6e0c9a3e46e5418358d9c074036361ec94aca0d39bb4e423c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1e0f61f82e516039f049cb3f8301ea8fe55d011c6f4ea7621fc09a4c565038b7
MD5 fcec92d94e300d210b55cec958f6e7e0
BLAKE2b-256 61dc3b0993e89eeda6973c02fea3349d6f197d3416ea1788eb44c8ebfbb86cb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.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.6.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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bc92122a740fcf85d82454afd79c3d54bd7bd904d629a48195f6cb25195288e
MD5 9bd13003b4d72d19a2bb80ca42724ba3
BLAKE2b-256 4b33a1a8a0f4be8780594caaff83852a6ea325a3f1db652f73f7f5dd56ee6cd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0224e8917f5564735b9f62bb0985ab9b7a7fdbce648c0b568338f9fd6c7e6208
MD5 6b4d8854a5f32ee2de97ab2fec81d892
BLAKE2b-256 6f184a21a46785207777e9b73dbce2d9cbe22cf172656e26ce0b419f17f5ba43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55db02a486ae3ebe71b74a775ad6130ba20ca8877ec54ff40b77d3cab7b03402
MD5 9f5113250145197013e25382a21ae988
BLAKE2b-256 5a1ff316061a00304dc28282bf2d19d86f7bb99d6c5860d8087029f2f7a91cff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9cd44afc9da2214eca0bcaac03f8f27ea07320aeca58316b9d5d57319249915d
MD5 c4f375ed8122687b3bf71a3bf50bacdc
BLAKE2b-256 c4c147addc911ceea711f388f14d26510996e9bad5014043f7463f94f8662298

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92c8a69b82bf0dc4d4bfd6e34c05de0891d025be184aa6bb087897a924327ad2
MD5 b1a3d86613acd0b7fbbb50ac3c2866e2
BLAKE2b-256 8f9bacbee033bcdc324065837a1e19188e9780cc07ddfed3c1c72be4912883c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d16d095a19ac55b4fab2a68d56fa7ce0e1bb22efdf7331e46c756d53f1d6880e
MD5 56d3d1457acee63617fae60f7be61131
BLAKE2b-256 6af7c4b30076610cee2ea0d9be95ec5e851cc8f46eb2ea4cb46a3c6e0797e513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7eacb097627c5c096b3f264d60131b1e22a20ec601e5aee1cc3088bd4dd8fd2
MD5 62baf9a93ee2a95ff06af332812b9220
BLAKE2b-256 d1f3b67b2bf29ff057d6bb0b62fa54be1a3a1556729eb145071888aaa4862029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4592ccd12f1ce7d785053ba47ff3042b7e1c926e7f1bf6de7d897c4d78279b9c
MD5 3b3cfe4225eb6e27c925a395bca5e651
BLAKE2b-256 f27e611edd55c1afcaa65363232b755f0acaba916eb0682324e8d6ac761a707b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67119d6c3682a1e914fc8ceae46975eb8ef2774cc10772bc6fd798f372e7f641
MD5 ffe09a651b1d2d8bcd8760112b498c9b
BLAKE2b-256 ba333dbe7afbbf164ab7aca9d035f10441b807aeeae07c7d673faa86adb7e60a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85c3b9d671281f46935719bcd4a7eb3c209bfe622ed1ccfaa672fcb1ba591e11
MD5 7749a843ad6d2c020e6a9ef095ad3992
BLAKE2b-256 e082a1e5c5d4307a08b40b287ee63aa141487dc3ce37443e9422e904c970db44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c07e7cc95bc1b3f501ff170e68caff29a58e4a407c1249245a84249f8dad83
MD5 c1a4a5daaf456cbc2678bdb76eb7a033
BLAKE2b-256 921b65a37258149f3ef654bfd427482d140bc3bd413bb2f57df5fc10209eea4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87d82b6c837d960aafb19d6a50dbf6cd51f3c57451c88c7d5b94340f7fe065ea
MD5 e65372862e791940d8b910ffcc8fa2f0
BLAKE2b-256 9654d1e17bb1fa4b8be711c1fff291fb052a21bb7a80a9b1a56875262fae5e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18f34f3b4aa500525c47ed93ebeb751a78789672759bae69844d7da6eb4d7711
MD5 c18f453cbc64c6e638f87e2559a342c0
BLAKE2b-256 10dac25c6565464071c35fa53aaa3ee951affab282013b9266bf15142d254fd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 500903d41d45b0ed461ee4873e99716a30188fa0de131122a04c839c9e1939a8
MD5 fc52793c8656f52b97897ed0d7ebfb14
BLAKE2b-256 9b659cac978e93c79ebba023ff5051e126eb1c5fd45cf0aa28954f3cd2f1b91d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67d5c5c93c11eba1ad590e0b2f6d74e94fc7432644d41a2bd487096fec725d58
MD5 3205c48ef8a95282c5baa500a92fc039
BLAKE2b-256 101ea1335760cd038b76d334863475e8fb6505da14b7913c61f2d45b80a17132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28310e56b2b4ab7b3303b5e2e26cbef2721eb87b45e3b44615f6139e8de865c5
MD5 cb0aa8c3b0c71a91ef976b3682006c20
BLAKE2b-256 d1558e9c529d667df7152a35a1c46ecf4ad7f7cafbafa25fa9f473529766bc65

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5a9cb3773686d95929934219c799f9a51563b64119c4519505f321d35b03c9d
MD5 1067228bfa6a18ebd76b5d19cf83a6a4
BLAKE2b-256 f49232cac0996b3dcbb9a3b50fab1d3d2a1165c23ee8167c4563e631feaf9fa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bab2ae0e4c3951ae90d45adb4840cc78d8672eef6919cd801283311934bd01cb
MD5 e7b73e9af42a19b9c24ca2811e1754d9
BLAKE2b-256 af3a91b68dd04cd608eb586a2587e1b068dc3107299593daab31b679857bc663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5940d62e56b6f668b1c1dfab660c8a68e56af08adb75c4b65ae8bb05615aa5c
MD5 0ce2132a8aa3ab126c1ed4e83f373061
BLAKE2b-256 b20e3f2ea208b0d3d049ffa2a79b55a43493ee1cda70a18feb4eb36ea138ebe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b0fb29719779ad274472c5ae1469daaa1d911ab9ffab6303c70bdc24499643c
MD5 760bc9838dceab55763afcf28bd48565
BLAKE2b-256 809eba05c99c59a4094cb0ecdd6da6cb4ee1150fa02e270d9ab599e49335343e

See more details on using hashes here.

Provenance

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