Skip to main content

Python async client for Redis key-value store

Project description

coredis

docs codecov Latest Version in PyPI ci Supported Python versions


coredis is an async redis client with support for redis server, cluster & sentinel.

  • The client API uses the specifications in the Redis command documentation to define the API by using the following conventions:

    • Arguments retain naming from redis as much as possible
    • Only optional variadic arguments are mapped to variadic positional or keyword arguments. When the variable length arguments are not optional (which is almost always the case) the expected argument is an iterable of type Parameters or Mapping.
    • Pure tokens used as flags are mapped to boolean arguments
    • One of arguments accepting pure tokens are collapsed and accept a PureToken
  • Responses are mapped between RESP and python types as closely as possible.

  • For higher level concepts such as Pipelines, LUA Scripts, PubSub & Streams abstractions are provided to encapsulate recommended patterns. See the Handbook and the API Documentation for more details.

Warning The command API does NOT mirror the official python redis client. For details about the high level differences refer to Divergence from aredis & redis-py


Installation

To install coredis:

$ pip install coredis

Feature Summary

Deployment topologies

Application patterns

Server side scripting

Redis Modules

Miscellaneous

Quick start

Single Node or Cluster client

import asyncio
from coredis import Redis, RedisCluster

async def example():
    client = Redis(host='127.0.0.1', port=6379, db=0)
    # or with redis cluster
    # client = RedisCluster(startup_nodes=[{"host": "127.0.01", "port": 7001}])
    await client.flushdb()
    await client.set('foo', 1)
    assert await client.exists(['foo']) == 1
    assert await client.incr('foo') == 2
    assert await client.incrby('foo', increment=100) == 102
    assert int(await client.get('foo')) == 102

    assert await client.expire('foo', 1)
    await asyncio.sleep(0.1)
    assert await client.ttl('foo') == 1
    assert await client.pttl('foo') < 1000
    await asyncio.sleep(1)
    assert not await client.exists(['foo'])

asyncio.run(example())

Sentinel

import asyncio
from coredis.sentinel import Sentinel

async def example():
    sentinel = Sentinel(sentinels=[("localhost", 26379)])
    primary = sentinel.primary_for("myservice")
    replica = sentinel.replica_for("myservice")

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

asyncio.run(example())

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

Compatibility

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

coredis is additionally tested against:

  • uvloop >= 0.15.0

Supported python versions

  • 3.10
  • 3.11
  • 3.12
  • 3.13
  • PyPy 3.10

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-4.23.1.tar.gz (249.1 kB view details)

Uploaded Source

Built Distributions

coredis-4.23.1-py3-none-any.whl (243.8 kB view details)

Uploaded Python 3

coredis-4.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

coredis-4.23.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

coredis-4.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (363.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

coredis-4.23.1-cp313-cp313-macosx_11_0_arm64.whl (326.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

coredis-4.23.1-cp313-cp313-macosx_10_13_x86_64.whl (332.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

coredis-4.23.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

coredis-4.23.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

coredis-4.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (364.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

coredis-4.23.1-cp312-cp312-macosx_11_0_arm64.whl (326.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

coredis-4.23.1-cp312-cp312-macosx_10_13_x86_64.whl (332.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

coredis-4.23.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

coredis-4.23.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

coredis-4.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (362.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

coredis-4.23.1-cp311-cp311-macosx_11_0_arm64.whl (327.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

coredis-4.23.1-cp311-cp311-macosx_10_9_x86_64.whl (332.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

coredis-4.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

coredis-4.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

coredis-4.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (363.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

coredis-4.23.1-cp310-cp310-macosx_11_0_arm64.whl (328.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

coredis-4.23.1-cp310-cp310-macosx_10_9_x86_64.whl (333.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for coredis-4.23.1.tar.gz
Algorithm Hash digest
SHA256 f10e9df0a324f408926980bf0aceb5a0d463d4c1e4b4958b8b623b042dafee6e
MD5 079f4e2db40b921eb6d361aaa9b715ab
BLAKE2b-256 7ece8c27350be0fa48a13fe9b2a1c79a27cb83d600d2206d7786332397266f4d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: coredis-4.23.1-py3-none-any.whl
  • Upload date:
  • Size: 243.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for coredis-4.23.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bbac07a764f45595a3c26430fcb5d41f52e9914b357842c1d45a2cafeb58614a
MD5 4c86e565e3bec095031f70f3032b0c0f
BLAKE2b-256 322e1000d47dbb66b9a93d0b58a21720c2256a45ff12218fcfc1f3360fc03b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.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-4.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89a307af4bd80a0fc797bdd91a93abbafcef4bc13f0f82ced56e189f85711b19
MD5 64608fd6df59d3911d6b641d7638c503
BLAKE2b-256 0c87429a6f6c313b8a946d54b5342c9c05ed5fa4bba84c998090f106d970c6f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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-4.23.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f97ae322ebf4405d93bab4236bf5e42a4668b212950a141c1941d1ef7183e4ca
MD5 0532048c036e572469fa41c1c34e9ce4
BLAKE2b-256 e967c88db8927aec8c07503331a3904df9457f217db761c1fabe07bc5f497561

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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-4.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e4ec74785d6da40f8d24b3d14e7841dc8a3e1bd411e7337a086af3104d97942
MD5 b9abe80d1dbd55b21cdbf881e3e08904
BLAKE2b-256 2d1f0c00c83783fb608edb7481ead31ca0d7f8a0cd15ddd0232611a522848dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-4.23.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b1d7c495329c6efd970754b63903697cb9c22236d907ca31252a7d614281749
MD5 fcef1d29071768d9b4ce3e1bb425346d
BLAKE2b-256 b539e2504d83b9a1643283300da5fbf8f4b50cc2c2828a365b678d0edfce3164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-4.23.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a6bce9494a8f248fd5aea0ea88aa8e99cdf2c39fbbc355275f9813e3791d6b7c
MD5 e4956e13cf96ff2ae8bad959c61c1e03
BLAKE2b-256 12d2472034d235c5dfae62f2ef06794d3d49158420a95cc9fdfd75d79445a485

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.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-4.23.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d0ca8f9a4171eb3a0139d99bde88068ae57b1480c907b31942c5be184ee6ca1
MD5 fd28c458d7a7cf807c60e879159d58ed
BLAKE2b-256 9caa8e21529ee93a7baadc11bd0998cb55f2d90a541326818a0ab45ff195f9a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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-4.23.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55958563bbfce6c7c2d9a43ce638409460ff7ccee436f5041ea1d1daa5c98943
MD5 fd857d613057e573fda1a7e15e099d96
BLAKE2b-256 c216a39d841cc49328fbb39ddca9d246e4fb5d2900027975b504c287ab957286

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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-4.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e942dc79e7af3ddb363903825f1f0d8c843ac26c95b63c90f6e1d2ab49b9bea
MD5 49bf80e7d90f797c66569a2fd1b1ab0c
BLAKE2b-256 786ced2bd1c7929cd96bb5c13e674c6c9e66aa7b550fe955ba81420eb07fcc1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-4.23.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc6892355b3f01a94e41c0e2e8faa7c847873fd1aa03c022b95afd4ea868ab64
MD5 58ed804c3b6818b474f83f9b7744ee20
BLAKE2b-256 49af4d54dc2774b177811c7c4ca46e7b28be7d283152c76013c33b4da3f722f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-4.23.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85fe0edbd9fdba3d1452374f138b8c049a31ca900457694354d47021b729fb51
MD5 2a71b02e8dea9803792ac817de25131f
BLAKE2b-256 a0e16f1cda7e1f316f64144c5f74daee2ed563d32da1745c6b0051307166936a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.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-4.23.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffa1f4fdac1b55e32c928215cc52372a017f928ada7bc859b543350b8d7e763b
MD5 644fd79ea9e837a4672b50253951eb9b
BLAKE2b-256 73276eb8ecbcc3c2a864bf130920abd0ba4218fdc7eb0bdd21bdd5c7b65ec307

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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-4.23.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dad44695f0d480ba7337dff2259be7ee5d8644bf7e99b7a98e8566428783520
MD5 1c23a0f3ddb6fc6fbe3c98f16797bdab
BLAKE2b-256 14f1b8572d01f5f85ce67c4654adf006e374491aee00a6b907dbfca3a033922e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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-4.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85626b43121ce9efdf9f5200b63a112e441355e5d7a8dfae905763ad61c50039
MD5 5be8ca6ddc182378e6321d867ee3f7e4
BLAKE2b-256 5f025833981d5aa25ee92b82e37234ab477c799a18c4527dddd88111693f39ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-4.23.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65240dafbcb846bce2acc4d2b1c93d544ccc47fc778491d6904996b549ffc49a
MD5 42f701910a6cb51f97e162044e04e111
BLAKE2b-256 add8f4b9a813cfe5a4bb395c97e8b821a53227e411ccf45e7f548a175c2b5e47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-4.23.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d4ac89066a549af9ef64c09afad764052aca2a2db9ff974a15752fb6eefc115
MD5 219ec9b0356bc90974425769a8ed15db
BLAKE2b-256 f389b1d2dbaeccf3acd2d919c84d6ec9645590a336b2f98518f0acbb8c08bdfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.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-4.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eed4896b020dbb150ba6faa5f8e724b900f99f32a02d446f70729fe9d016d20
MD5 89d999d67951c6d5ea60dcc06948ff3d
BLAKE2b-256 a263ed1d3a72164c49ab93cca927f166eca905ca71621fd573df2787cd9501f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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-4.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff4f6fd77e66bab06ea37cac627d2140561ad29aca8c08a85011628168436b52
MD5 6591f4ce68e054d991b27733c2c388d4
BLAKE2b-256 cb6a7923b11ab2f813cce70e9881b3085bf1897bd2c1d8e556d96c94fa56e5b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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-4.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e96cd991ef15ca8dc915fc6d8a015a29226ac3ef1ae01fb797192b3d9042629
MD5 c84c9d4774c3fbb3c6f0fc3f188b64b1
BLAKE2b-256 5ff63a0e5b0014b15029c8fef5fb4a9434e6fc36d70c24f77aad65962675113c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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-4.23.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coredis-4.23.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a17a00c02b28ea4f6bfb9fa5b41aa05ef0acd239f6cc9d8aa436ac11442e8806
MD5 b222ec417bd06b7acbb905794c3654c3
BLAKE2b-256 08b83fd628f50bd49576ba2aad06de2d8dac2aa3fe394bfaf29dfbb05fdff2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for coredis-4.23.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0c4c76e90f2c15a7ed2d7e65bdffad5ac2ba780a61d76208a731310170a929a
MD5 539c3ad70c0ff6dd2537636147500e1b
BLAKE2b-256 ff4bdc8a55af5c882d1ce5bec4166bfde57f11d801d34c2f0c3f2965331eeff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for coredis-4.23.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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page