Skip to main content

docs codecov Latest Version in PyPI ci Supported Python versions

[!IMPORTANT] To learn about breaking changes and migration steps for version 6 please see Migrating from 5.x to 6.0.

If you are looking for the 5.x implementation, please refer to the 5.x branch.

coredis

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

Features

Installation

$ pip install coredis

Optional extras

For OpenTelemetry support

$ pip install "coredis[otel]"

To install any dependencies required by the recipes

$ pip install "coredis[recipes]"

Getting started

Single node or cluster

import anyio
import coredis

async def main() -> None:
    client = coredis.Redis(host='127.0.0.1', port=6379, db=0, decode_responses=True)
    # or cluster
    # client = coredis.RedisCluster(startup_nodes=[coredis.connection.TCPLocation("127.0.0.1", 6379)], decode_responses=True)
    async with client:
        await client.flushdb()

        await client.set("foo", 1)
        assert await client.exists(["foo"]) == 1
        assert await client.incr("foo") == 2
        assert await client.expire("foo", 1)
        await anyio.sleep(0.1)
        assert await client.ttl("foo") == 1
        await anyio.sleep(1)
        assert not await client.exists(["foo"])

        async with client.pipeline() as pipeline:
            pipeline.incr("foo")
            value = pipeline.get("foo")
            pipeline.delete(["foo"])

        assert await value == "1"

anyio.run(main, backend="asyncio") # or trio

Sentinel

import anyio
import coredis

async def main() -> None:
    sentinel = coredis.Sentinel(sentinels=[("localhost", 26379)])
    async with sentinel:
        primary: coredis.Redis  = sentinel.primary_for("myservice")
        replica: coredis.Redis  = sentinel.replica_for("myservice")

        async with primary, replica:
            assert await primary.set("fubar", 1)
            assert int(await replica.get("fubar")) == 1

anyio.run(main, backend="asyncio") # or trio

Compatibility

To see a full list of supported Redis commands refer to the Command compatibility documentation. Details about supported Redis modules and their commands can be found here.

coredis is tested against redis versions >= 7.0 The test matrix status can be reviewed here

coredis is additionally tested against:

  • uvloop >= 0.15.0
  • trio

Supported python versions

  • 3.10
  • 3.11
  • 3.12
  • 3.13
  • 3.14
  • PyPy 3.11

Redis API compatible databases

coredis is known to work with the following databases that have redis protocol compatibility:

References

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.9.0.tar.gz (225.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.9.0-py3-none-any.whl (271.4 kB view details)

Uploaded Python 3

coredis-6.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (459.1 kB view details)

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

coredis-6.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (458.8 kB view details)

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

coredis-6.9.0-cp314-cp314t-macosx_11_0_arm64.whl (436.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

coredis-6.9.0-cp314-cp314t-macosx_10_13_x86_64.whl (439.0 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

coredis-6.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (445.0 kB view details)

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

coredis-6.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (444.2 kB view details)

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

coredis-6.9.0-cp314-cp314-macosx_11_0_arm64.whl (423.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

coredis-6.9.0-cp314-cp314-macosx_10_13_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

coredis-6.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (445.0 kB view details)

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

coredis-6.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (442.0 kB view details)

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

coredis-6.9.0-cp313-cp313-macosx_11_0_arm64.whl (424.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-6.9.0-cp313-cp313-macosx_10_13_x86_64.whl (427.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-6.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (445.7 kB view details)

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

coredis-6.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (442.8 kB view details)

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

coredis-6.9.0-cp312-cp312-macosx_11_0_arm64.whl (425.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-6.9.0-cp312-cp312-macosx_10_13_x86_64.whl (428.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-6.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (443.4 kB view details)

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

coredis-6.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (441.8 kB view details)

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

coredis-6.9.0-cp311-cp311-macosx_11_0_arm64.whl (420.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-6.9.0-cp311-cp311-macosx_10_9_x86_64.whl (423.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-6.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (444.6 kB view details)

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

coredis-6.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (443.2 kB view details)

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

coredis-6.9.0-cp310-cp310-macosx_11_0_arm64.whl (422.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-6.9.0-cp310-cp310-macosx_10_9_x86_64.whl (425.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for coredis-6.9.0.tar.gz
Algorithm Hash digest
SHA256 041a8e93f637deb702b9fdf20656e856069ae53ae17ff51db078934afad0cc52
MD5 3579f739c17d05dd73b3a5946c97cfa9
BLAKE2b-256 828103a1f56c2fdce5d6382cfade9b39522f2f09de00cf6087a857437901dcc6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for coredis-6.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 651060d697f6b37b9cbbc307d514a965598307a2d55ab7512152a49cf1b1dd90
MD5 503df1e906e5dc10d51b37e3785943e5
BLAKE2b-256 96b798e3be05f8147a659d553670fd80316bc39acd5868dc8e9eb005e9050df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.9.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.9.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.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a84495e184875df1c0ab8faee22f4335a502532aebc2593baded19c22296ee7f
MD5 3c7f50c7e74f3a965e76b3962a82fc70
BLAKE2b-256 7762be5c12af7f10004270e9fdad35998660a476ebb44302fadf63aa47369126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dfbf87856435ba8b22f75d1e9d2f0eaaa95dca2386d81dcab4e9aa4c39d6749
MD5 a8fb9c73e8a25a4be3db6d4d2c0169b9
BLAKE2b-256 4c46dcc31e69e1ea419c7d18c91fc408711335ffc9dfb26904d57b41ef7c107f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75c8b6590c94946526e717a90224bf223f3371257b2ae71a26f272915a4cb142
MD5 bd5e37aa06b22d7602400699a5be6a3a
BLAKE2b-256 3d3eccc6287c328de09544db9e492e9269c6eba01e19fb30f809f3d80678c719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a60bb0d066d876b2ab3d7fd6bee4ec115624d85f82ec64e6d69e9732b551d6ee
MD5 ae822503c4186f510f2c4653313ea24f
BLAKE2b-256 ff7f3ddae141736f6574d1120c97ad7473cd0a76a860cb4c4f4bb500f67d126d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.9.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.9.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.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 522fca836b1e863803e0474fc400fa83d51ce48dade709f2d6c1acfc6acc5f7f
MD5 a30a5597935da67b7f2920a51fe82245
BLAKE2b-256 ee65ece68df741032223cea9d26a2f0e8662b6c6dc74a76e3f272abdff6d1073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4559b716dea713fe68d4c238c22e93b567ff60c7d5ad10f4f3d0fb49f711a309
MD5 e38dc20f637d36816b66c0caa10f2dde
BLAKE2b-256 85c2fee5f5479e8da76c1014329df3acbda13f187a144c64ba3d4c30dbaf545f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ee639cb8b3140af553442d28e0c7f3dcd73aa84d68e83a37a028a05b1a028a2
MD5 821b787b48a98888300d4a5febdd77a8
BLAKE2b-256 4729be2db139f5a0e8322d88d262bc9db902d610e8171e60fad7397a6d58fc96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 53f11ace8877773027a1117329f7ae6356b260ce67e4b988fbcee0d78febfb91
MD5 7627d9d6babb9dab5c6e286dd7883132
BLAKE2b-256 520b509cc1d1ca33b40e2d24515d5ef10eee2e38f4a130b154ee09bf6693f045

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.9.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.9.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.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2398bb27e09744cd05407ff8e0a3db9dba1f95af972e3d6621776497d239d993
MD5 9a60fa48faf4a7106e6513befee63798
BLAKE2b-256 36a1277c4ed46f4f9089af918b1f4d6849bb2250200251f40212c1c3ffc42bab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aca97545a57ec47fd70836b7cfaf4157244ca42d257d8c4f7085c7da2f2db50b
MD5 6060630b412aee34feb9421c5942fcc2
BLAKE2b-256 770759046379b9ca1db103e23de4394c5c59ced2141bffca5d4f209943ce1aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6631ea4566f1137e07eb8bcc4ed853404912d15b1701830ce3f59b8f90871a4
MD5 2385accf24e9f4764402f4205f2e7ed4
BLAKE2b-256 94345e4e983d2b91115fb21e72000f6538a54ecd93dd13aad0b61c02709c07e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06445b03dd3f440f7c0dd63b4caee21569cd0ce7e314bb0c9f849cb51c0c1177
MD5 9041745c06417c09dd19b0e9909d7c83
BLAKE2b-256 dab6c2a34042549d1593035fc856a012410de662333b72d88f6f58199cd871ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.9.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.9.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.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7960b6f5c206d86f7cf9c546488c4f1feb6e7ef59ace97b3380ab3ff3c8fe4c
MD5 934dddbb5f3ac1c71165c50c25a73743
BLAKE2b-256 84c424f194db453ad028f9c03641e8352624285439039972328d0c591d758850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08456d9c98c2632bb912417330f37d9eef8309bd3d10c8f0e2b2b62d7e394de5
MD5 71aa8766758351b89e0b3abefb3ab128
BLAKE2b-256 377266a3152ee0f4fff91a34ec0eb6f1838ec5946ea708174e5c85cc24e4fe23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35ee515a232716b8eadb6d62680b5a3bfce5a6c1708188dd91e0dc084b7ec47e
MD5 f3b61a2a4a98410a0a99853a62dde269
BLAKE2b-256 cf92aff48102c046c5370bc67c3211fd8ee125666ca8cbba5968bd45c00215b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9f1013eaa04b29bd77b2758fb91b5d2402e2b99f4b0576d26f31a2fbf207ec1c
MD5 09d6cc8c9bfa0a6ba4b98cc3e14c6691
BLAKE2b-256 9efd20e658089b9b4ae6ea1acfb0caab6e815fedbdd99bc7054c241ee0a7231c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.9.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.9.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.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0786fcce2c0a085c54f69b9c2783d68d4d74bf6877e876fc2c98ffab525e1f0c
MD5 5f8177bd8e2fdbd7acf3e0b47f95178d
BLAKE2b-256 46efc6c4f5f13d1a5da599398c3da9d688c22967f4a123dc9fff342788c8f52c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d398fc003abb9704b2358ee982def039685d489fa50fee54f6826d604e09cfe
MD5 defdeb22318d055a66bffbc2dd7cda5e
BLAKE2b-256 ff81a2593fe315b93732e8df204d95ec6363ef6c14afc57bd3be2fb1e913cf16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e958fa5bf5937cec9e347678b71fd8a59805dc4856c23e389aec2ceff25491cc
MD5 d088bf03311cc572f1ec07322d3d9094
BLAKE2b-256 b7b9837dac0b8dfac01ba157ab3abf6adb163bf7cab4cd121111c472dd28c5ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5db357ea412ebf2dfdc3ee65391383cd582b8e34d465042cca888a09993ccc0
MD5 1daab6e217e8a043a7189b72833b4bc6
BLAKE2b-256 d8c9d2b19d6cb7314e95595162060a6da2ebc82474ffa90f8363f350bf220c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-6.9.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.9.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.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e9a9c4783ac8e8b7ec79ab0bbbda7e6b8cca524bddb1842c4d311b6372cac0e
MD5 00dadb26f0f7a94c14339768b63d63a0
BLAKE2b-256 60d8b1acd2f076fac26ad05158111f63f8267fb91cfa204d1505b92f932e6b3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa36900e6b713361b0516b7ba35345a8ff6fe05478f04c1cc9cd8656305c81fb
MD5 16d5670f9ba17c6d9f6e9c96d8ebbf5f
BLAKE2b-256 32d8a483a594453aa15b96a57a724204eaad513a57c7030bf2070ae1629638e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c8ee109ab7808f67bceccee836069b58b70f9e3a814c7ed821fef4b4632d3fc
MD5 0eda2f19d66f927d0443bb816112be7a
BLAKE2b-256 fb2358316f4add04e427f05ea0cb11e8d51d7e6e1917304654a69547b622302d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-6.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f6be43fcd4ea4a14975eb9f785dba201d4610362360ab0ea04b3e8a2fa838cf
MD5 16071d46c533950a792a2264c2ce943d
BLAKE2b-256 ce4677cb3cbf8d993496355bdaf951466ba5c10bc6cd52a8717d59ea3bc4ddf1

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

6.9.0 This release

26 files

6.8.0

26 files

6.7.0

26 files

6.6.1

26 files

6.6.0

26 files

6.5.1

26 files

6.5.0

26 files

6.4.0

26 files

6.3.0

26 files

6.2.0

26 files

6.1.0

26 files

6.0.0

26 files

5.7.0

26 files

5.6.0

26 files

5.5.0

26 files

5.4.0

26 files

5.3.0

25 files

5.2.0

26 files

5.1.0

22 files

5.0.1

22 files

5.0.0

22 files

4.24.0

22 files

4.23.1

22 files

4.23.0

22 files

4.22.0

22 files

4.21.0

22 files

4.20.0

27 files

4.19.0

27 files

4.18.0

27 files

4.17.0

27 files

4.16.0

26 files

4.15.1

26 files

4.15.0

26 files

4.14.0

26 files

4.13.3

26 files

4.13.2

26 files

4.13.1

26 files

4.13.0

26 files

4.12.4

26 files

4.12.3

26 files

4.12.2

25 files

4.12.1

25 files

4.12.0

25 files

4.11.6

25 files

4.11.5

25 files

4.11.3

25 files

4.11.2

29 files

4.11.1

29 files

4.11.0

29 files

4.10.3

24 files

4.10.2

24 files

4.10.1

24 files

4.10.0

24 files

4.9.0

24 files

4.8.3

24 files

4.8.2

24 files

4.8.1

24 files

4.8.0

24 files

4.7.1

24 files

4.7.0

24 files

4.6.0

24 files

4.5.6

19 files

4.5.5

19 files

4.5.4

19 files

4.5.3

19 files

4.5.2

19 files

4.5.1

19 files

4.5.0

19 files

4.4.0

16 files

4.3.1

16 files

4.3.0

16 files

4.2.1

16 files

4.2.0

16 files

4.1.1

16 files

4.1.0

16 files

4.0.2

16 files

4.0.1

16 files

4.0.0

16 files

3.757

10 files

3.11.5

16 files

3.11.4

21 files

3.11.3

21 files

3.11.2

21 files

3.11.1

21 files

3.11.0

21 files

3.10.1

13 files

3.10.0

13 files

3.9.3

13 files

3.9.2

13 files

3.9.1

13 files

3.9

13 files

3.8.12

13 files

3.8.11

13 files

3.8.10

13 files

3.8.9

13 files

3.8.7

13 files

3.8.6

10 files

3.8.5

10 files

3.8.0

10 files

3.7.57

10 files

3.6.0

10 files

3.5.1

10 files

3.5.0

10 files

3.4.7

10 files

3.4.6

10 files

3.4.5

10 files

3.4.3

10 files

3.4.2

10 files

3.4.1

10 files

3.4.0

10 files

3.3.0

10 files

3.2.0

10 files

3.1.1

1 file

3.1.0

1 file

3.0.3

1 file

3.0.2

1 file

3.0.1

1 file

3.0.0

1 file

2.3.2

1 file

2.3.1

1 file

2.3.0

1 file

2.2.3

1 file

2.2.2

1 file

2.2.1

1 file

2.1.0

1 file

2.0.1

1 file

2.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page