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.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.7.0.tar.gz (210.3 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.7.0-py3-none-any.whl (255.4 kB view details)

Uploaded Python 3

coredis-6.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (442.6 kB view details)

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

coredis-6.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (442.8 kB view details)

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

coredis-6.7.0-cp314-cp314t-macosx_11_0_arm64.whl (420.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.7.0-cp314-cp314t-macosx_10_13_x86_64.whl (424.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (430.0 kB view details)

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

coredis-6.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (429.2 kB view details)

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

coredis-6.7.0-cp314-cp314-macosx_11_0_arm64.whl (408.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.7.0-cp314-cp314-macosx_10_13_x86_64.whl (413.8 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (430.0 kB view details)

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

coredis-6.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (427.0 kB view details)

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

coredis-6.7.0-cp313-cp313-macosx_11_0_arm64.whl (408.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.7.0-cp313-cp313-macosx_10_13_x86_64.whl (414.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (430.8 kB view details)

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

coredis-6.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (427.9 kB view details)

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

coredis-6.7.0-cp312-cp312-macosx_11_0_arm64.whl (409.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.7.0-cp312-cp312-macosx_10_13_x86_64.whl (415.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (428.5 kB view details)

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

coredis-6.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (426.9 kB view details)

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

coredis-6.7.0-cp311-cp311-macosx_11_0_arm64.whl (406.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.7.0-cp311-cp311-macosx_10_9_x86_64.whl (412.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (429.8 kB view details)

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

coredis-6.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.4 kB view details)

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

coredis-6.7.0-cp310-cp310-macosx_11_0_arm64.whl (407.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.7.0-cp310-cp310-macosx_10_9_x86_64.whl (413.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for coredis-6.7.0.tar.gz
Algorithm Hash digest
SHA256 4c18d36c111fcbd95e71aa8ebdcda05b1a0335f51a336fe10fbc1b214015fe4c
MD5 38d1736e7706a361e3cb84a6318a5a72
BLAKE2b-256 bc8d261ccfc9ed9b5ee2aa24e91fc6e6474a7854891d838744ec82927fb19a15

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: coredis-6.7.0-py3-none-any.whl
  • Upload date:
  • Size: 255.4 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.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 86957b91b08f8a0329ec50cc609664fd91f5b3fb855071b214fe81cf13b2ca3a
MD5 645c5aa0b55f1479213ec1ad56de9860
BLAKE2b-256 0999049fd27d54351b5b123e160f78a8a5895d3b651197bb62f0a6d83b24d416

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.7.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.7.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.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f06b1c36945ac29ad4fb5ff04947755ef36369639bb50b623f2a832f6a72b928
MD5 3e670ea19bedf13fa6efc96c1ff526bc
BLAKE2b-256 c36342ce2bd0369f55960d1dd5cf0ed209d4bc23cbc4fe5288a2aa6fdabe1a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d564955a7647b3f287f7fc64798235c6787f4f7de8b74d16f350555c6d275b64
MD5 4756872deb999d1f2d06636fd31722cf
BLAKE2b-256 439710164a45ba994807c6d81ab1d2b62bc0b75f33418a44cd6794d1f1dd72db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29a6e70b0d13c174c2ef0005b4bcde428d389a37d35dde8613de69b85004fd30
MD5 1d4a58bb4069fd52f4d456681009bf45
BLAKE2b-256 809962d2bc1f55f2cdf2e7e903d3d6b7df61ddafe5811299ffee953057870050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c45b6a49c9dc13da40419e03937354346cb14d3e7a28a9824c3730250ce2ee8
MD5 23ec0d3136e950e5da8dd818204e417b
BLAKE2b-256 23c9e089916d23c4a2e7a0b2b07626e0c3dc88de26784f08aaa34b2678bcbe5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.7.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.7.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.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c64b6c959aba5f01986db32d4c0ed652073a5485c3b6f45be0214c914b4a497
MD5 b7aee2bf7b80bbd6a1973e8bcc93cd55
BLAKE2b-256 763bcb5798cf0520ede89a79591f0f4dac1f0a1ee4f7e4ba4b552af144d7fd3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d69e34599e44edc5db9ccf1a2ce5974c0c6f2d3e6fa275782dc52c63e11dea39
MD5 601190a5bcc83887835781589844aeb8
BLAKE2b-256 ffc934b4dbbc3cb96a59a30374f27d42e114cbd233060d563a959ce337944a46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de62f82735dddaed527179aa398f3fa45545211250253d391f87cec54d64249d
MD5 1231c507d89d51509c7bb6963980628b
BLAKE2b-256 d8fbfe871c0066fd0788b32d2d00ccd298365e5248251251c44bdee668c41b3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b795a2134843b69ae91e43dd4e64c77662098d45db9fd67746157a2989ca9804
MD5 34c4be116c2dbe495e21a45e17ab27ff
BLAKE2b-256 31d4d6817d834bf8ee140192e2458ba907a44d7d45abf59cbca190acd1bd4fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.7.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.7.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.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6ec57711a4c1e50850bbdf9fbb5ca8e8472fae3976429337cfff0e9da2cd0f6
MD5 9eccbc5e169ec5a216832445194c7d46
BLAKE2b-256 ac129cce453d13eff0154f4ec7b25bd8adc419d71444f27f18c91115a286241f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16048cfb51673629178b7b02a75822903b6a23cb2caeb11073370ac84328668e
MD5 794200a4eaa8806c6599d0141fbce4ee
BLAKE2b-256 14309dfd700279026333db636f3018c5b7e9b1cc1eaedc892155dd2e500c3fb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6b0c1becf15e32094d554ccd8261e2dfb7661d183b736990f3118854f35152
MD5 a5a57ea3b98d703e9f7d9353f2eec62e
BLAKE2b-256 d774471172ad5c13547868d7cb164c794edb417573ce5307d11972af9f40036b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6315c12a553028155767c3dd1da353acbf3d39002e3259d2393884c923237a64
MD5 bf63fd34e2f16451e066c74acc3541d5
BLAKE2b-256 80fa4261f7aca050f882a02c5958eeee4fa95fe4ba3646c482f9e7366a050405

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.7.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.7.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.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8613aabc592039ad77b75b61ad5ae7df3ee01cde49c5b531f7a636620859703
MD5 18c599dc646e362c3b78d19355de2af4
BLAKE2b-256 e59cd799b120a21b0bac7694a99c373a7a3c659beb94f365ca8dc816185dd76f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73e98bcd74ef4924c7281d0c5865615390884abc19beede128aaec9d8333fdbd
MD5 bd4af93f075cf3c610b0d76d2fecfd05
BLAKE2b-256 949d5a3b560c79f73c0cdf251a91700c7b2a6c1b1e4bc1840550aaf230d9daae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1947af6c41fdcc2a317fb9a4d9a3b5f249fa0a8f1a5a94d36002abdca067eb04
MD5 3907cba72d60fd85b177ac1b5f0af424
BLAKE2b-256 fdd9592613156ec51d9946c293b2d97d2f8ae1a8b44fe22d85f0ae8dc3defe32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 742f29ec1b69e487e0a91b9eb6aacdbd0a4a18891c53a9e6643d5033da8071e4
MD5 38541bac6946db878dff5058380ab4b5
BLAKE2b-256 c7de0d1610c4128c2d65cac28eb71a2bcf0627ae9bd246b9249c9ecc0943a535

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.7.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.7.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.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8bed40f7ccbdf0e3f5cb70999a41ca4493fc8821dcbe26a9830e9a2c4a654b9
MD5 59f9b94ac3341184209acdcf6f751f82
BLAKE2b-256 d42dd2422c0a1edcdb16aa0e83cb51067b93b7d60df759906c2f4ed39c3c72e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ecea4bce692a5e326809b729fd2d380dfc25b82877fc20c5f23485834e357fb
MD5 2127b1e24b8d8fbc3d2551cd25cf6114
BLAKE2b-256 06dee3bcbe6669740d694e3154690fe07aeffc4fad3ede87e631112da5290978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7278f3a41181bfaf3875deef07d14ad61fac6c028d40bfac282eac46ba5a7c4e
MD5 075ef7722942c5a1c467bf12b7621668
BLAKE2b-256 bfd8f32b65552c5f3c9362225518d902788ee155e3d21674eb21d9c27d17f488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e514696d4caa3a22d9ae5a806dc15b4358bab2f96b36aa642b45f580935ce5b6
MD5 a6cfaf18b739225dd47079db33a9f88d
BLAKE2b-256 dcde6cc505e193d8c089cf2679372f7ba161cf02929c9e4469199c519ce76247

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.7.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.7.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.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38d6821cea0d4f44d0ffb453aea8703864ba1637d9a5e5fa2dcb899f6f3b2203
MD5 e37a07d76578aabca36c624a41ef685b
BLAKE2b-256 fc0733917538003d4c4b21ed01f7736e183b84a9d1f93b35e0e6bfa033edf776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fbc7bc4b1808a29f71c7210c1cdc99b1ce22ace76e7110dc401437a22b58f03
MD5 e12fa19ef35e2e035e029b15558b27cb
BLAKE2b-256 d220db1ddec43a18a4d8e668ba8080f7c1ef1f125b319dbde855cb3e3c63b25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65cdce52c2c68cd7fb3d3b624458e0e430cb8e63de86ef96204069c0e4dd865a
MD5 0bf3c82f3df032ec9bf97a82e3124efc
BLAKE2b-256 4f6b966c8b97313c2b675e3cd42acec16f61bbd6eb2e37476749720aa54059f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b4991867e5b1cab988abee0d6f970c25e065fea39f775b8d8bb9c7a6de0c0dc
MD5 0abe1d8634949f279f24a1004653794e
BLAKE2b-256 bb04630a57ca0897501c11c4a050d1ca0aae112c93e8d30cc18e0a97ab15311e

See more details on using hashes here.

Provenance

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