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.1.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.1-py3-none-any.whl (255.7 kB view details)

Uploaded Python 3

coredis-6.5.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (400.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.5.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (389.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.5.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (389.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.5.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (389.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.5.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (404.8 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.5.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (388.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.5.1-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.1.tar.gz.

File metadata

  • Download URL: coredis-6.5.1.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.1.tar.gz
Algorithm Hash digest
SHA256 b5d9144310da877f8f5f81d23cd1fdfebd02abf82b20e2c4ed6d789065f58227
MD5 61069fa4339f957080da3b490b413a28
BLAKE2b-256 e633f158ec32a2bd28874621360dd284c9342d81fa1d22efc696dad806aa8b19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: coredis-6.5.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6d560f6322925f9111e134b1732d2a0e31f138cc639a0f4eccf8f115b02585ad
MD5 33c5837acbdcfa9f865438895d870e3d
BLAKE2b-256 3b50ffde61fd7c06d4f22f1d201b9b7da026437438e42a66b96e18562c689d13

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d7bf1ad947aa09a70f6b75e607055b4ac61392141ce6cfc5fd9af3290726b3a
MD5 868764d5e415ed44e2d0d342d2221a04
BLAKE2b-256 423bb94460abae71bd00a033e96b74da41ff2353cc2dea3f31d1f1931b960abf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95838490b83419d7460f841e112d52ebf2722d7bd9d48f2ea6d16b23911d7ee1
MD5 ae48b43f4b8e2bd8fdeeeb594f424006
BLAKE2b-256 6a704f007fd4a2e6aee33238db57275e708dbe3f4d0e41d06d288cbd746cfce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e324e2aefe19b5b16a4ce746474f2b77fc11d6f662d356fd89ee2ce9d30221e
MD5 7b0a4d16e25da9efc11d6d61aaf7d4b3
BLAKE2b-256 19366d363ae25eddf94abf3e8e2cb9acb94abacbb07f3d82e4175a9504e04380

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 11624830903d9413a1a961dc83e1f6f9c06cf0357edaeabddefefa4bed502732
MD5 e94bfcdc10acd14687c83001ba12149b
BLAKE2b-256 0c5467cbce20270c1903f17069632440a349103968e1e812fee60761d0714aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff8cf120d7335af75f51af8a7ef178fe1051c49f8771714596ebb772a80c00f7
MD5 41a713b882cf92874422981a27d0111f
BLAKE2b-256 3d22f18dbf3ef8826e85e5fc771e6617b730a317d894e8da1981c8b40237e404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d540377ce20cb5c2a631c241b78d5a726a1db1aa4dc8f064a5c7cd4fefcbd6b9
MD5 03cf046616c06c285a40893345477510
BLAKE2b-256 ce09020b25d2e8758df4cf4e220d43300cbbe32336dab02d0d9b9429247e462b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65ac62a871da46b482805f5ccffe766a862831529115abef3ee8886b55933e10
MD5 ac5de2635cf1f354b5343cc6619f3a43
BLAKE2b-256 855ca59864247fbbe425973e8e693b0a1b289d45118e96034ce839401dba5b1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 137a96c7872d885abaaf1b27ecbd4192bfe29ee1d18a7a64499ea08a049369ab
MD5 d90875a9a50693dd7136ab31083d5922
BLAKE2b-256 f1e25206b4c05f7c67185a69613cf9d2d68e28846f15d6a9145b61f23f11b80d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8d8bd73e05e36bb1d44f2dedf66c80e04618b4117bbdeba58d4840cba4e14d1f
MD5 ef992a8aae6f857f6a6d821ec92bb8a6
BLAKE2b-256 4d328af0a02b40537a6ed95d9bca00454ac14c6d67d3b6053c4c06196c5b0d6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47a18c33a6399fbf1f1588e52878a3be94fa7f4a8a8d778857bfeda7ac7aa2e0
MD5 42f6de17a7b0ab3620a3f2713402558d
BLAKE2b-256 49cb0387da712edc10c55cd149357a202343615045db112c8058da97370b2cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89f6b2564fe66417fc27da8623fd0dd5fd8d4f8189625329be5bd7e9cc2e7aa6
MD5 b88b860e5c5ddf731b370a83a7c0afcb
BLAKE2b-256 4b279ef05fc0f19b5a601ae9cc44c52936e20c2e88020d4b4e8d1f94384bee47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e5141f68bf375e181914a0657fe4c6e103df68b57725d0b4223e1a7f6a0de7b0
MD5 f151695d9f0a2357f2a0fbfcdd9f268a
BLAKE2b-256 cea162962c293c295e32c0cbc60289654edaeb4f4323791afeef9fd470466396

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9fbb35b45cae9ed3b8e36f3e790101b8b0f0f3ebcc9d8450d33a69c2e744c7b
MD5 95a5fc6ee2cabd0e9e20c3a534631d15
BLAKE2b-256 cbdc1a5beadee9cdc04e1c88e148088fe1c422cd182a0ad73e5c5474a1f1c1a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79e3a61ba5033c02dbeb494a96bec07d453973da81091fb75d131c58178cb2fa
MD5 8de4378a1b59a5965a5cc88046c1807b
BLAKE2b-256 cb12a9ea4adca934320dcd0d2e31d04bcf1b2d8d7004c9f408481ba8b62d5d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c0eedc1699ae1542ed0295f17393187d4c96c812508c95c8947658be3c42417
MD5 ce4bd4d16147bce0fcfecbd1bb653eb3
BLAKE2b-256 d438e3ddf7ae79f799085d4bf04bd3c023862816834b879f15e9a7a2c69b4721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 522641d2fbea7a04e3d40f2dac50e0ba5915573ab372fd40930588dad054297d
MD5 0973f25d635c3c789b9a7be7129c0f5c
BLAKE2b-256 0f1c00fd2dbb772eebf54138cc6987da9f6b6fa9164ae200912e8d3283de7827

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e51cfe12b14a15325b4df87e62fa024c80213bb489352b9189cd39d80467121
MD5 4e08096c7eab9aa9d460af36243769ad
BLAKE2b-256 b924bd105848f9fa571c2e57583134baa2a937cd6cb461de79455c96a9510a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36c67b1955cfb06f57cce9762a01dab52fd6e09a24dc36c3cf096ca0cb777338
MD5 2ffbefea8aa3ee5b19cf66c7b48e0a87
BLAKE2b-256 068eea3b34970e0b597ec2fae17155d0288ca4472379448779b79085c7d749f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f044843104b5ba7ecb2465da8abfbc65aaa7661dec08ada2ea0b3d93fc438009
MD5 429e835403aebe645fc4d0a3660bd716
BLAKE2b-256 24a4e1a5599b3462bd0a11d0145757b0a4393f6f9305008cfe95a9cc9d3f5206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74f5247355a5ec872ab3670ef2b3841e716bad26e7a34cdefc9608b3bf27f267
MD5 3a3435991f237f4e68ec9ba197b34955
BLAKE2b-256 c9df4692d1c6666d034192a08038f36be833c2cb1d337ece2e6e9cbf650988a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.5.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.5.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.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9f1a2584a98bb46ccfa2a4280ae03a25ef973d5f3acd0bdac3a1b04ade84bc5
MD5 8d216969cfaacf15d60feea60088560b
BLAKE2b-256 334d4343bdb924ac301d69c4ed0861e8697fb029aab96da682529b02419f6811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cefe272c6b7b3cabbb48044cc5326e08d9aac0f56554b7d4b813d029162a8e9c
MD5 7a3b42a76b1048112e854e52366b41b1
BLAKE2b-256 6b8dd35d5a488d14cfcd81955ca8c7f4c7e5887954a44349119c0e82abe186c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0522d9d7568ebad46531717db2e4a270c5d253a6436f4053eb1d694f10309c6
MD5 0cb9259e6bfbfd55ac3ee0274401f6b6
BLAKE2b-256 e56d4971bdc67c215a7391e79255c4878dca3d9f76cb5c48d86721a21f0d1a46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 687966f334c699d6aeb3ad21a2b06ee380b1a3f6b4522daa4f9558f1a869a677
MD5 48844bc3777aef74fe9d54a72bb011f0
BLAKE2b-256 20bef61bf4831bf59d0bf90e952bf58cf2c4315d6b79ec4e7f94e790942de9e8

See more details on using hashes here.

Provenance

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