Skip to main content

Valkey GLIDE Async client. Supports Valkey and Redis OSS.

Project description

Welcome to Valkey GLIDE!

Valkey General Language Independent Driver for the Enterprise (GLIDE) is the official open-source Valkey client library, proudly part of the Valkey organization. Our mission is to make your experience with Valkey and Redis OSS seamless and enjoyable. Whether you're a seasoned developer or just starting out, Valkey GLIDE is here to support you every step of the way.

Why Choose Valkey GLIDE?

  • Community and Open Source: Join our vibrant community and contribute to the project. We are always here to respond, and the client is for the community.
  • Reliability: Built with best practices learned from over a decade of operating Redis OSS-compatible services.
  • Performance: Optimized for high performance and low latency.
  • High Availability: Designed to ensure your applications are always up and running.
  • Cross-Language Support: Implemented using a core driver framework written in Rust, with language-specific extensions to ensure consistency and reduce complexity.
  • Stability and Fault Tolerance: We brought our years of experience to create a bulletproof client.
  • Backed and Supported by AWS and GCP: Ensuring robust support and continuous improvement of the project.

Documentation

See GLIDE's documentation site.
Visit our wiki for examples and further details on TLS, Read strategy, Timeouts and various other configurations.

Supported Engine Versions

Refer to the Supported Engine Versions table for details.

Getting Started - Python Wrapper

System Requirements

The release of Valkey GLIDE was tested on the following platforms:

Linux:

  • Ubuntu 20 (x86_64/amd64 and arm64/aarch64)
  • Amazon Linux 2 (AL2) and 2023 (AL2023) (x86_64)

Note: Currently Alpine Linux / MUSL is NOT supported.

macOS:

  • macOS 14.7 (Apple silicon/aarch_64)
  • macOS 13.7 (x86_64/amd64)

Python Supported Versions

Python Version
3.9
3.10
3.11
3.12
3.13

Valkey GLIDE transparently supports both the asyncio and trio concurrency frameworks.

Installation and Setup

✅ Async Client

To install the async version:

pip install valkey-glide

Verify installation:

python3
>>> import glide

✅ Sync Client

To install the sync version:

pip install valkey-glide-sync

Verify installation:

python3
>>> import glide_sync

Basic Examples

🔁 Async Client

✅ Async Cluster Mode

import asyncio
from glide import GlideClusterClientConfiguration, NodeAddress, GlideClusterClient

async def test_cluster_client():
    addresses = [NodeAddress("address.example.com", 6379)]
    # It is recommended to set a timeout for your specific use case
    config = GlideClusterClientConfiguration(addresses, request_timeout=500)  # 500ms timeout
    client = await GlideClusterClient.create(config)
    set_result = await client.set("foo", "bar")
    print(f"Set response is {set_result}")
    get_result = await client.get("foo")
    print(f"Get response is {get_result}")

asyncio.run(test_cluster_client())

✅ Async Standalone Mode

import asyncio
from glide import GlideClientConfiguration, NodeAddress, GlideClient

async def test_standalone_client():
    addresses = [
        NodeAddress("server_primary.example.com", 6379),
        NodeAddress("server_replica.example.com", 6379)
    ]
    # It is recommended to set a timeout for your specific use case
    config = GlideClientConfiguration(addresses, request_timeout=500)  # 500ms timeout
    client = await GlideClient.create(config)
    set_result = await client.set("foo", "bar")
    print(f"Set response is {set_result}")
    get_result = await client.get("foo")
    print(f"Get response is {get_result}")

asyncio.run(test_standalone_client())

🔂 Sync Client

✅ Sync Cluster Mode

from glide_sync import GlideClusterClientConfiguration, NodeAddress, GlideClusterClient

def test_cluster_client():
    addresses = [NodeAddress("address.example.com", 6379)]
    # It is recommended to set a timeout for your specific use case
    config = GlideClusterClientConfiguration(addresses, request_timeout=500)  # 500ms timeout
    client = GlideClusterClient.create(config)
    set_result = client.set("foo", "bar")
    print(f"Set response is {set_result}")
    get_result = client.get("foo")
    print(f"Get response is {get_result}")

test_cluster_client()

✅ Sync Standalone Mode

from glide_sync import GlideClientConfiguration, NodeAddress, GlideClient

def test_standalone_client():
    addresses = [
        NodeAddress("server_primary.example.com", 6379),
        NodeAddress("server_replica.example.com", 6379)
    ]
    # It is recommended to set a timeout for your specific use case
    config = GlideClientConfiguration(addresses, request_timeout=500)  # 500ms timeout
    client = GlideClient.create(config)
    set_result = client.set("foo", "bar")
    print(f"Set response is {set_result}")
    get_result = client.get("foo")
    print(f"Get response is {get_result}")

test_standalone_client()

For complete examples with error handling, please refer to:

Building & Testing

Development instructions for local building & testing the package are in the DEVELOPER.md file.

Community and Feedback

We encourage you to join our community to support, share feedback, and ask questions. You can approach us for anything on our Valkey Slack: Join Valkey Slack.

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

valkey_glide-2.2.10.tar.gz (759.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

valkey_glide-2.2.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide-2.2.10-pp311-pypy311_pp73-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

valkey_glide-2.2.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide-2.2.10-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

valkey_glide-2.2.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide-2.2.10-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

valkey_glide-2.2.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-cp314-cp314-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

valkey_glide-2.2.10-cp314-cp314-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.14macOS 10.7+ x86-64

valkey_glide-2.2.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-cp313-cp313-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

valkey_glide-2.2.10-cp313-cp313-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 10.7+ x86-64

valkey_glide-2.2.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-cp312-cp312-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

valkey_glide-2.2.10-cp312-cp312-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

valkey_glide-2.2.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

valkey_glide-2.2.10-cp311-cp311-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

valkey_glide-2.2.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-cp310-cp310-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

valkey_glide-2.2.10-cp310-cp310-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

valkey_glide-2.2.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

valkey_glide-2.2.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

valkey_glide-2.2.10-cp39-cp39-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

valkey_glide-2.2.10-cp39-cp39-macosx_10_7_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

File details

Details for the file valkey_glide-2.2.10.tar.gz.

File metadata

  • Download URL: valkey_glide-2.2.10.tar.gz
  • Upload date:
  • Size: 759.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for valkey_glide-2.2.10.tar.gz
Algorithm Hash digest
SHA256 c35b2c8015a4ab487c326705589a4c87b03327857522a1e5732bcf4b06786af9
MD5 993200c6594ecdc6b2f0364fa11b49d8
BLAKE2b-256 9a4e691a65aa04463288a6eb4657507de754112d8f369f685757f6b94abf5e1f

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa8bc813203924c2ad1ab1eb964ad743356d2ece93759f0dea4f7abf2d44736f
MD5 20606ebdbd38a71c3136dbda8e693c21
BLAKE2b-256 2c0fe4f0a8bef311406d10c147d61c8160f3a89e420bb642cf8726d2ff1c285b

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70dfd676092dc7f9627429b0994b8d4ae96ee2f1e32be39692cb0558b10ccfcc
MD5 663c96f4ae02f01753969f4c05daaf34
BLAKE2b-256 7401f08b0ce8c561be7cceb7e81d43366c72dd950ac3b816ae5868518094d136

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba99cfd2d9c52b6e1db1f31b6411912445bac3a4bb63d94c9bd19de3f2392b0c
MD5 07c12b0e3de0d0343ad0d59e17c847b4
BLAKE2b-256 a9ba6cb9230c451fc9d69e3bfea685088ac2f5b6aa4935872a9490577c328ad4

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp311-pypy311_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp311-pypy311_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 545bd6a47a12da834eac480b709e2d15d44838251c4ecc7c77e9504209a4805f
MD5 cd905ebd284d5d28172bf2cef16a4ac9
BLAKE2b-256 c9fa0a532874fa0b7012fc90346ba9d096a0734b007ec6721c132dabc0fa4296

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d60bc85f518e69dd45ab9822311201e84ea5663c41988659950dceaf24e2c098
MD5 6be0db1d58e2fa4b76eb4f8b8b122bb7
BLAKE2b-256 21438f9fa33adcd8324ca8b5e4bd4b085de0b5e1c32f35a64cd18d17cfe53f13

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff5efbe0d9730927e7d5fdc2f6a59afb048a4d8904d72cf4ccabf8c5c8999edf
MD5 24dbaab9e9724eb6a3a881e97efb8b92
BLAKE2b-256 59a872177cb974ab485c3b54c49e43d7ea8ef8fcfa51e548230aaac65a4c1106

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70da934498f69b8e116adb094d637ef2f2807698e8dbb0d10814c136a623573f
MD5 fa0b0accdecbc5fae1d3d4501c2dc497
BLAKE2b-256 dc7cb84ee4b5a1c70b0af671efa3e7571719f834f4fde415ce8b893da4ea4ff8

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 39d58cfe5c6fcf359c9bed70b6e29f256b19304b8bd9d7b6e3ceec82a4d89013
MD5 a77f7748954e1057a69b28f913a4de79
BLAKE2b-256 96b3728b854b8de455ad0595151c6c3d1e4e3160eaf062dfe793a815b44f9d12

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c552fe1e58f465dc2ab65e8ac1f84225b04f74b112ee87e96c5ffbe333d491e
MD5 c81bd43abb41efaed48d8df239d585f3
BLAKE2b-256 2d7ac2e64f3de0fe679c0241c86ba52b55ef2c4ccc85d0018cf472c5b88e8d33

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a0aec2bb1c1e1103ad0ab1b4d3e23c1655f8b4ff7cc2f55436bf9c1d117af70
MD5 a456d9cd8e7b2dcc1c19e2304039823f
BLAKE2b-256 970009d6c521f61e5be03ac340e5880b3992e24b44b4bf7f76283bae652fc782

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 faed1cd07a86f8b477be8a39ef66eb633af854d57fad401287bb68c54124564c
MD5 ca4553e8eaee22a975accd204e8f083f
BLAKE2b-256 b066ab017f492210c81b39128057453012d745b797fb78102fd554d7941d32f6

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c3a62f2d5f54b629c9154d3a47446dcfd1dac127a056c2e55d7656e8af0d3a85
MD5 d9762b6292ef4ca71931f5f82e0de353
BLAKE2b-256 561a558c9828c5f252904d02a45c942ebc23b9ddd14ab1668e507830d68cf9d3

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6cf0fbeafa354e24dcb540ce1b45e6b3cf239e5f525386b320af6555f908201
MD5 c34d03014810e8d0b9e5d7b4d3758491
BLAKE2b-256 f46e9744f612d379bf8480ec9097797c4dadc2c542f89170d5e02b7f4ce6e215

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 012a9a1f6977c94e5efa0f6c4222aa55e3c774a84e3164caa74d25163ed876b9
MD5 ca2e6af46789913d971de84758f74c83
BLAKE2b-256 85ca5910d10c5ae504bf27571f631ca767f5951fc857415bf73f589ae71eef3b

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be5ab7b3e8cfd5a630b50d52e095478bbac2d4085790c2739074e5ee5d7ffa49
MD5 6be9cd4991b74c6e2441ad1c25d2f44b
BLAKE2b-256 f4fcee1582e49c8d8a9d06edb93f77b53d04190b6f272bd3456b3d2bf8d86e08

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp314-cp314-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp314-cp314-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4cc5021041ab17fc624f41c9b86bbf1f452c696d4e8032feae6ee1f80a7ab697
MD5 73042ed60b1fae7ee6c4e6cfbf8b6748
BLAKE2b-256 01f854dd3654c14321734f4b393f441432f3e3a4ea6035f1e145da3d9dfa7482

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 089125e4115ad04593413477c71810cae0eee30ccf3068c0b58951f671435379
MD5 401b4dfdc3f736879cd941f56476f9c4
BLAKE2b-256 5c0a0fd02b4a58373108f51f084c93708d287b2854f1049e21ff3c54235b4208

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 347a059cdc74f851436f287453d17d46f6abc4a02f533acaedb9c53e62fc0266
MD5 d60a0ceb4448e6123f5c0c1d1d911e99
BLAKE2b-256 209a55dd461650d4792f8e16164014a656170b4a7394ef8bb39d41873560ae70

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38689fb15b24f06a496d4026102fcbb2ba84af232d56d5a3053aa8d43b11a421
MD5 74faa7fa14ae7f3c4d53f26b1b80e13a
BLAKE2b-256 0f6492437a415d2b1f5df9687d633ed812133d5c5e820c28ad3e83310f085b47

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp313-cp313-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp313-cp313-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 640a21b6b527f4fe3cc70c72de7a73bb5ca9d2efd557565c66b4b6ca236c220a
MD5 7e9e7cae563c4b285b6b98ff71aab983
BLAKE2b-256 1b19beb0ae99c859b27add54ae4f5dfe8072e10bf5adf8f87b440cfc30574cc1

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6773eb2d382eccb5c36a64483524b69588557d73cd895f597b76362ca7080574
MD5 0a499371c3949a24a26235c752c2703a
BLAKE2b-256 626f5aa4c087486b7c398b92073fd881052be3bf908f52b062305856d5e01145

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9860fefc0cbcf67ba2f5f65932db1eba24471831376522e3dacc62c24bf85cdc
MD5 16b7ec3e234ecc7254a712aa54972e86
BLAKE2b-256 5452bbc4e3b349b0619ba9f44432f2c83e13436d99549a936c2ed60ab3751ea0

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92211a109683ca990f86213059c5a661c1d2213b6c9ddb1917a9472c783d1671
MD5 0d250f99673449c9c7ae7561cdf4971e
BLAKE2b-256 a036366fbb209d381f7db16e4b2f3564b25fd725c0239fede3e32a028c9e5ec9

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e5a3b1b572657dbf34dffee01392780e93ad09a5e96fe03725cd8af343607d73
MD5 84a74526031823ba0770e5bb56329194
BLAKE2b-256 59ea1771c04a6f9e8e27e4cd00a92474971c25d313b3bc6699c7c819d7728474

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f0000ac8e05d05e2d66c40ec428ee67624fb5d5ca6cbc29bcee887100f2fb36
MD5 136ba1ec36b2fc78b9776e17100ca9a1
BLAKE2b-256 f80aca1a20a92fb30d3406c4449a99265afafae548a5e2b49b9dc082dc80cd1d

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8cdf67921383e966f1a82d242097e0dd5061c9479f883bf32dcab94cdfafe06
MD5 4a96f0c853da1b95780d6cb74db87fd3
BLAKE2b-256 35af845aa8e0808ae6b05e79d478a8bb4312573bf5fd82b2a4367ef7057877fc

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83ee3a3a41036d1f9f9adcebb78b478dd75668440ac145fc2aa989503c1afad3
MD5 313c1e88fd14a66f4e0a075a035ee7e2
BLAKE2b-256 df79f314dc05afe329e07d97cfb3c2d8b39ccc6486f689235c59d53d7589a98f

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f5a8252647f8a841079156ccb2fa6630e8cb029d25872b8c917cd1a7d85613bb
MD5 1a47e0e8f2ed9d355e77ec460e094604
BLAKE2b-256 fd238584349bba93937ef36c7718c3dba7d7194f8adaf2214229579a38505dba

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1eb9cf53a01ca8f54a6fd7036547815ce3e8a991de6c4ff5dda128f95ca17ffc
MD5 be3cdf0ef20dbaefc3ba147ff620d71a
BLAKE2b-256 77c09a50fd60f995d1d1829c327dde688cf8a9d18dcfebb0b92cf31e55028605

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1cd7d01e310c4b13aae420436b25434be7afcad2d9ab96e47b0a014919c3371
MD5 a88631d2b6feb189c9e667933116ad5f
BLAKE2b-256 274b8894457591a58946b75de0bbff181468156914a112eb8811e1cf2723c136

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ccfbfc89b6f4ed98b1bd87fcfc8868e86386db96807d09c074c454a55d0a20d
MD5 568805d2cc4b172856db1b04cc234c1b
BLAKE2b-256 70ab02176ecba2874af191107b267ebcf53bbd85dfc8a361680c3ed4409755a4

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c6a710541460a081250182ff537a98f58f7b179711a66ef4a9484b6c23884ef1
MD5 34a80cd099e64670e393bf6583463b11
BLAKE2b-256 f2adc7dbf608a51354dabc6988c809878175380a29f0f5efc3eb14631b80cd45

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54ee556cd725b90e9dff3aa2b22a4f441f5849eeb60bf0b84d8745c1123183aa
MD5 ca2549d020c9e7d919250f48e1ec7e54
BLAKE2b-256 7a026c7f611142de439b4ffcc6b1113afaee01d6c845640caed0e7e9dca7f919

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20ea4176493525e9d823c788a56c2dcc983bc6a0d88c92d197b7f596267e7e6d
MD5 6faa770ac95a13c7bafc7c71e8a7e56f
BLAKE2b-256 82c8153b0645cd453eea6b724c9d1c920eb7b50d2f6ab6b039e01db11d0491ca

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b4dd08b485ae8f16822e90c6935bcf08429d471345021da6afec72f01b7c8e9
MD5 9ddfe921561e73755222d93a64a68293
BLAKE2b-256 e3b2e7abad17b7134f925e7f148fddfce2cd842d69e97066dd4bc3a006189421

See more details on using hashes here.

File details

Details for the file valkey_glide-2.2.10-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide-2.2.10-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 120661cb5a11ee28eef56b75a0c7ba0e7f2252c80e710c6c27866bba24693247
MD5 233d14f8c40225fb19af2095bf018aac
BLAKE2b-256 590552c83e55614619baf0b6f88168927219d3b3d89a0e2936af02e563bb9a7a

See more details on using hashes here.

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