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.6.1.tar.gz (210.2 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.1-py3-none-any.whl (255.5 kB view details)

Uploaded Python 3

coredis-6.6.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (420.3 kB view details)

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

coredis-6.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (419.6 kB view details)

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

coredis-6.6.1-cp314-cp314t-macosx_11_0_arm64.whl (400.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.6.1-cp314-cp314t-macosx_10_13_x86_64.whl (405.2 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.6.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.4 kB view details)

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

coredis-6.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (406.4 kB view details)

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

coredis-6.6.1-cp314-cp314-macosx_11_0_arm64.whl (388.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.6.1-cp314-cp314-macosx_10_13_x86_64.whl (394.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.6.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.5 kB view details)

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

coredis-6.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.4 kB view details)

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

coredis-6.6.1-cp313-cp313-macosx_11_0_arm64.whl (388.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.6.1-cp313-cp313-macosx_10_13_x86_64.whl (394.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.6.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (409.4 kB view details)

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

coredis-6.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.1 kB view details)

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

coredis-6.6.1-cp312-cp312-macosx_11_0_arm64.whl (389.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.6.1-cp312-cp312-macosx_10_13_x86_64.whl (395.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.6.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (407.0 kB view details)

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

coredis-6.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.6 kB view details)

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

coredis-6.6.1-cp311-cp311-macosx_11_0_arm64.whl (386.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.6.1-cp311-cp311-macosx_10_9_x86_64.whl (392.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.6.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (408.3 kB view details)

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

coredis-6.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (405.7 kB view details)

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

coredis-6.6.1-cp310-cp310-macosx_11_0_arm64.whl (387.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.6.1-cp310-cp310-macosx_10_9_x86_64.whl (393.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: coredis-6.6.1.tar.gz
  • Upload date:
  • Size: 210.2 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.1.tar.gz
Algorithm Hash digest
SHA256 7d6dafc2dfb049ef5d835d5e98589fdd9e5ed0502e3caf34e1f0a9dc663b8704
MD5 9778e1da1c5208381b8f8afa32539f4d
BLAKE2b-256 3c2cfee0befb601c7450e0c97a1bc215ba04efff403befd2b0c78fa4f1d0700a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: coredis-6.6.1-py3-none-any.whl
  • Upload date:
  • Size: 255.5 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0bbd0ee3ed12165b0ea093760aab6db1fc45e7ec0c38a0ef920c8ba44d732a84
MD5 e35d544ab70ca7b8ece916b22dd23a64
BLAKE2b-256 4ed408cdc7e1875c7273efdfd24ac15685518f4ee72e0f1d879553487b021427

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 491b489435b7454d47c717e85ae8997496ce16f29dd4d752a05b244273bce78b
MD5 8c50a5e465b401c893caa92692b0980e
BLAKE2b-256 306977d389d6587aa15ce769a11db27bfac6804a6091c1bc5608f439c186fca9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 faeb160b886c7a5a643ad38a64adabc1e8581aaeac5e5d6eb48e27537e3ecd6d
MD5 ab7933fd00a8f836bd0e969861eb19da
BLAKE2b-256 262aa74f2544c788aee0d87884af2acf4f4856d6f358d2c7c889a3d3c79729bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d8a828b1aa386717aeefc3135958e0965104180888196090c03cd28f91ca452
MD5 40be09d0ed270dfbbbac3650af8d8e3d
BLAKE2b-256 350f302aa38235b0d9709a4f32b788226731aa98d61d513a81c1574b31be8f97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9273f461c58ec54a7f04c551502870f351f92c16b436224666b81094c5688b3b
MD5 8d9e11ede12446458ff09116527dfb18
BLAKE2b-256 21cdf7ebf362c5f4cd0d1179c705791a5ac11eefc64881cba713bcbb03946a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6417be0a9ddddabbc95a9e94634fad38065de77f4694e24c8c5110cd88591511
MD5 94b803a44946e5d1d25c9de6042dcccf
BLAKE2b-256 dcbe46ab57a86bf28d5691f69867c2e3fec1c767205f7a69059ddaf1b2485b13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2edc914ba2f48605ea4f91058d7972559cabeeea2ccd41f3f44ad0556ca1ce0a
MD5 f85efec2f669a3265901fd15274cc2ab
BLAKE2b-256 cc438416eca8c8c4957ea2720e7ec5b898b4400c270f1b7fd3f7122d8898f0e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89c87ff98e368af422b7751955f25cf97d95ad6654400fc29da409fa1cbc3c03
MD5 d9e7d4f0585887514be4bbcb0d269c11
BLAKE2b-256 89ac9b4191e8cc286d6aaef9ab76551630880f61abadc46840ddfbd86914ef5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c0dd57212c5aa736a8c10e416c9a0c37ecbe463ef4de6d07e1cf24837cdeb0a
MD5 84203595e0eb25af45b4588d4a4f1a3b
BLAKE2b-256 3c0993927c40de9792388a092073f8422454805c23c7d259afe94d7bb7c411da

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1977aa81957e453333acf1a56540aedf599bd2f758fe7743681a1ec404e34578
MD5 895f34bd8a93b36a372858c24cf50a27
BLAKE2b-256 2ad77da903467ab98ecfced19146866b89aa65a6f0df29b74663e87a27206e3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7cc84bb847c109fa9fa6876c5055b4d5d1c3484d2830120149418ec7fd2fb52
MD5 cc7efb2993349f69cb8bc4545fd50f7b
BLAKE2b-256 59ab368012154074fcd2a4bfd8f20c7982d2cc454128a53e300efb0334a2a388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86b9a73e67951d293fd2086fa83375fd359e23f465a0fcb707918ad7eacb3614
MD5 ea99965b1338313fca6b49d514423d5e
BLAKE2b-256 825d9cc2a2c5cb960c8f5084718ed989ec8c3d66ddf82d09515850beb286ff2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93139543f3bf736b4f0b95beec50992c7ae0fa676669b86dbd112f3015bfbb88
MD5 dca7bea2967e05f3ae671d7401e1bad7
BLAKE2b-256 f3b21e685ba3f272e3c824e2d367a56f22242bc0d10752c84da9128654ba78bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5253ba496f92ba1ec50e2f4a72c071d0722573c870a73a8c15a62fd87c7c4b7
MD5 ea7a71ceb4ec8c6aa54483cb7ddface2
BLAKE2b-256 dc1a31df52a862094d2747b1572ac6229b1f4cd5a9cb6cfa53fc9f56ac930568

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41a85f3fb2051667adb4e647895c10ff2c2270601fd7385a92bd1c3013bd52c9
MD5 e4e22e1588097909610693b5827a9086
BLAKE2b-256 c72de217128c4cb9652e5a923480f0cafae871e2e36dafe3bd1cca0a5ca0d8d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f8c2a3657f8f2c96f4e6ad758a8cee5bb16a01d3949c56ca076f545daf87295
MD5 d896ff84619869b67a5a85570e6da5b2
BLAKE2b-256 6b2d8202fbc504483e0cfcea095bd3e0cbb9c9777ff03ac5f36a1e44965ec0c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0e895dc506dadf28e9ff44d0a47e50ed4c7f86d513fb44385a698ea24e0adf95
MD5 eb8840def4d50e4ac2a40c425ee7e5d2
BLAKE2b-256 a5d0360ff4bd5c03746d5890b8eb94bae2049b5c9a8037f634ba6ecf2eab4b5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 494f5dfb263ecca0ac585eb0a24d6f2457b95eb655798e8e69b3040089545023
MD5 13f1782aec42067a92518ca99463eeed
BLAKE2b-256 4c7b728ddadd04184194fc3b3e3f1ee6f527547e113cb58d883ea3e3fe8d7968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dac88e3b746299d0107447601d84774840d3fcd52da4de8fccba0a66571c4df
MD5 be15e7f5358515ca7405f51691082287
BLAKE2b-256 3fd7d823ce24cbc3a7a0841c9a176c0bd350cd836776c63ef644a109ea2c5bce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30867684bf068a359a065be56f4f4b607fea5fc26b077d9deceef3c35e21316b
MD5 3e85d604f6db0530db83e778121ac9a5
BLAKE2b-256 5d9d471cd0ed7ba728b8c4352c6a1b751b8a79b47bc3e6908082d90936599fcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d0267463cd30c4a5600945f00629d7c69eec6841966d2f022a71389cd2871c1
MD5 f27c1f33913dd2cf55a6ed2f242a2fb1
BLAKE2b-256 cfd4c8da3c4272dd7a9cae315a702ebdd5c8f1beb880f83debf7eaaabd0ca5fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.6.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66a8f9d5b4f42831ae4e740785997bc4fb836097860252b0b1de6ad73ef27035
MD5 4ba194825969192db497572103868438
BLAKE2b-256 b2cb5cd46f06b49008b31ce3ff6991c48bac1905b75819c7e82232ba9c8ef8ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97e734b91898f37576bc039906cdae973c7347b21a1937487737c34dceb5f346
MD5 719e48ac42e8724e16d233a2bf43a43d
BLAKE2b-256 99a5adde869ba2108c9769e0554e8efa7d8f7495c624efb28e857fc4e2657c37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d081cabd5f6c9140bed90f78488a341840f239e48e3501be0f88844111c8d01e
MD5 124b6a1a4d15e1d553cc724d836f2636
BLAKE2b-256 76004a81ccb6ba9c14b8e89fd814717750b02c1fddf1c225437b1b49a4f7fc05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66983dae7076cc0c2f28d64fca4ba7f49d43ca019f2d5a6821c936140974d315
MD5 ee4e3bc9f855722c96d0b8bb6d84084e
BLAKE2b-256 369881ca0c4e1f026b8c3631b2ff91baa4595eee20fe057f39ba2e1c1b545acc

See more details on using hashes here.

Provenance

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