Skip to main content

Valkey GLIDE Sync 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


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_sync-2.2.10.tar.gz (618.9 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_sync-2.2.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide_sync-2.2.10-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (4.9 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

valkey_glide_sync-2.2.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide_sync-2.2.10-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (4.9 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

valkey_glide_sync-2.2.10-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide_sync-2.2.10-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (4.9 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

valkey_glide_sync-2.2.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

valkey_glide_sync-2.2.10-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

valkey_glide_sync-2.2.10-cp314-cp314-macosx_10_15_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

valkey_glide_sync-2.2.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

valkey_glide_sync-2.2.10-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

valkey_glide_sync-2.2.10-cp313-cp313-macosx_10_13_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

valkey_glide_sync-2.2.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

valkey_glide_sync-2.2.10-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

valkey_glide_sync-2.2.10-cp312-cp312-macosx_10_13_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

valkey_glide_sync-2.2.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

valkey_glide_sync-2.2.10-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

valkey_glide_sync-2.2.10-cp311-cp311-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

valkey_glide_sync-2.2.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

valkey_glide_sync-2.2.10-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

valkey_glide_sync-2.2.10-cp310-cp310-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

valkey_glide_sync-2.2.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

valkey_glide_sync-2.2.10-cp39-cp39-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

valkey_glide_sync-2.2.10-cp39-cp39-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: valkey_glide_sync-2.2.10.tar.gz
  • Upload date:
  • Size: 618.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for valkey_glide_sync-2.2.10.tar.gz
Algorithm Hash digest
SHA256 caf1ec54140700614c41aafb6ffef28cc95ce77bd03a055dde4f80a03916379c
MD5 dfdeca46a43dc2436fd9ad5477971f29
BLAKE2b-256 7d2d01e446306740eb754f9c6031f7ae9ef597175c95d8d4fd398914cb96db53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ac80f826aef4f656fa4e742622328a20b000544817079f02366ca8296e0d5dbc
MD5 da0cbea2fa818c89538fba3c68d18003
BLAKE2b-256 6a040dd1f3e2ec93cfcc4425549aaac7f2ef8634e159971230688659720f92fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3a2d24547df0fdb175879fff8b50dc6ecda47e28f43a150d07d9e17f91ce915e
MD5 5cef91ad4f69e01350b6fc72c4a7cb22
BLAKE2b-256 02618db3f4a0dc053bbfe3ce871a962dedeb3d84bb270a55b580af3b9429577d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37f303c2bf58a380f3c6caa849f6b4415fd78239d08380f5539f9aa349588408
MD5 90222307bfa7b721af1644597be05e1b
BLAKE2b-256 df6d6e91cc38ee269b76274842e2bc2207e4653b11eb0c1f7ad7e6a19481f991

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5ee995f0654d3cfabb825c853d165ecb2cf32ebfd2078f691d3bbf905be19223
MD5 90cafa27bcfce889c323255322bd360b
BLAKE2b-256 1b1d4f71c1eb995e7234f19427c8bd08d6d296c9a81d9a8f0b0a59ebdfc9e4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7baa7a63e67f519364cdfb5cd8bb2f77bb3c85a8cce5dacff8e1e3053ab15cf8
MD5 980e52f330dd83d57c97b4cc9ff7443b
BLAKE2b-256 905d85bbdb64a10385037bce3b9b7222abbdb7bd24eb1221b10bb07dad063784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d15b20cc5940e6ea7eae4c1dc5c2c66c513b63f2848ff7294ce267a8343a8d58
MD5 274640b9dec3dc7278db9ecc027c6199
BLAKE2b-256 3f96aa2e516d4ff66c9ba2139bfb9283d3415eabc437a6eee09dd17d39814486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eb2eaa7efaa3e21cc46c9af3305c43b852e48491ed9249095e3f4d922451fbf
MD5 c8140ba8ef543922130221a52419f50d
BLAKE2b-256 235c1a4889770345941fbfd773cb97503b945a5d0a07e9db18d41c8a3b05d670

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 75215c5ce78abdd49a5cf6af4a45aba2e7446266c6c079bd25c3ca61e5dd3430
MD5 cede3c5c04a4609d605a1dd0379d5f17
BLAKE2b-256 c9a115a6c1ec02a51b26bb13731c7e0fe98bd64e3e36fcb1b169588a6d129dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b6d57dbd5c204cb217f93bfbddd882d1dc994298f0b25c3a2b17c1ad85c32e7b
MD5 c477ef3393cc727e0410528933520ef3
BLAKE2b-256 5eaeff0d6f3de39d08163ab172283e1909a50ad44066f6db1a5e8eb065256adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 446f66f531f337d9625fb8cfd0b95ba0d72f56fddefd0c3775e2d9ef752095e6
MD5 8afdf4f6fb361ca86ba26a527863f011
BLAKE2b-256 32b34633e3acdb33a89870b3e8066c4f99ac1cc896674277b3eef60e539353f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31c36d726a59082c857b9a928f83d5ccbb64245e2e0d1eda946caec9d3fc8de8
MD5 709a84de4c5cc5fbaab107a739ffa2b5
BLAKE2b-256 617ca108bfb26953e5df700e8dec57561b3ab617e4b770e8a7953232735b3cd8

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6f78516754d3a6baa63202aa71a8ab5fbce43631a1afd922abf583cf98ab648e
MD5 58d410774de66eaae10099e003289c30
BLAKE2b-256 ddb6fd6b64c9be7410ae97cfdc3ce4023b09dfb08df7b282721c35e2850779f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 122731fd58ca5e81de9498b343f09bef4dd5ba15437dbeb449a8b3a036153760
MD5 50fecfd5452b2a66ced938e6ead16b23
BLAKE2b-256 193e5e02c9e346f7f797c2d66ca314abdfa9fa6ad846418d86cd81b35aa481cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 266aa13bb2ca110f9f244757d496ea76452db499f3d457df7df963f5759f4610
MD5 6154a32d286e5db4061ab883df9e2b4f
BLAKE2b-256 2d481dd9ea46b7813f6e1a6dcbd2b9f56c1be9575d06a7f8c1976842a722e30d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8de62044977063c3154ccc93f28fdd28e0f8481f0e1b825dbfadaa1e4317646
MD5 5607612e8dea54c7ebde1e8ad08b4cda
BLAKE2b-256 b98ff39ef35d53164f9ea583b4c1c45fb4acd63131513568205a0cb788cba59d

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ce9ee0bf4c0a7a47fa656a3d94bbe2f711e48a3118c5133b28fceae192800cd1
MD5 17149247a2134f353bd937583ec11c69
BLAKE2b-256 cb5a46e0074230151d2a638d0e3a03286347a0c486aee91b9a4e39f189a01037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9e9f8eb0618e3df465db7ef37bc173f367573f774f125a09154c5b9e22a851af
MD5 692a8a4f9a48a98b33f5290d441e6082
BLAKE2b-256 c55e58b6f2ad31a80e658be3cd37fd91b4ae5db5031df646e2813fb9586cde80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6f85b91959d5209bd9d50fc51274936a72e9cb4b94ac0fe5955157868f9a2b2b
MD5 4a01d4c67fcc1cd42b9f8b12b779588b
BLAKE2b-256 e0976368bb5eeaeed244c66c6808bddfa8ec81d67939a05502de9e265e36d377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c5262da9450e6dd107b5c84b2b131b53a32d244ef5ce650f819b7dddf1f1230
MD5 3ddd156b7419287c4040f4da100d6fcb
BLAKE2b-256 4a4e41f4ba35b1dedcf24b12843a03dfc866126a6117e63263fbb0f03393b294

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4da0b651d3d382a4e3f2bff12d360971a20e681661b7d6febaf948f140f16d4
MD5 240bb6e6657b622f008735df06e4b991
BLAKE2b-256 a1276b7f0fd578bd1e092e4839bb467496d1e60fcfb7e1c4e0c7191e7668d60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 22763ffe54e22e2d9f5093f7e29cb422217b537cb2c8901e58a0b5e24a08dfd6
MD5 eeca461ddbec14ec26c89308fa1d3347
BLAKE2b-256 666bbf816b136d4cfd0c1e620bacd9c50fc11d5125bb1a366ec0e0611a17285c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2ac2717fbefebb3823503d7baf204a9f0a320ff1a820fa5cf745db21588d2a11
MD5 42e1edf26874d51ed240c65a37346adf
BLAKE2b-256 f00f87679279006ddf2c803cb2a554b6e32e5f0111b7b721859070ac3b949c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9733967cc6d3b281c6135f2873cf9645bae485fe00dfdebf65cb2aa82ce57205
MD5 31ef43608e606f8f9574956ba9cfb889
BLAKE2b-256 0fd2f119fc78ae66bb00bf612c11ec5b24b0c1b580906132a9c531c3b9adf89a

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f2efddf1a543f8f648f84837c7b0764d4e0b2d2b48fe87243096a587712d389b
MD5 1c42c89140721cb31bee20271fbc0970
BLAKE2b-256 98d8a7fb35fb8a10ff772c570da82953054824eb31b6d23cafc1aa34df560642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 83b08737fa2090bd9552784f33f8afff165941159e8979e5be48cd95fce2eb4c
MD5 d8d7033724d4a1c62ab60153501855ac
BLAKE2b-256 d0c930635b831eb6c4cff5e24d109c0308e4d5ec112d48b78a8b169bc26caa25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4057899009b335056bb751be7cfccc6812976f45fbce7f4ef904606ffab5cb90
MD5 c81e0426e96972b9063f66cd5d22a4c4
BLAKE2b-256 a15bedc1bf3924458c8909ff65f33f38b5803db7442521492f7a1235c9937de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09d46fec8d45d0f91943d218428e1b7d308cc8fdb7b12cd8ef8d8927fe2b676e
MD5 10e0b24bbea196776eb8cbfc47ef3929
BLAKE2b-256 4ed8e5662d80a7b5f33eaf94ae2908903af1b0f48d5b0f528b4a30bfbae292cf

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc6ee8443f2266808f55af3865dc5348da39e519633d35c1a29162f859997d1e
MD5 6bf3c577ab70bbdfa750e34148e9dfbb
BLAKE2b-256 8c404f3e00145f05edacc266ff12627075b524a8d247fb0e34ac09180c58cab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 287f250b68776b69469218576df3eccb599a6647c6d16c73349de8dac3c288a9
MD5 33fd4d709cdda9823bc9905bab2831bc
BLAKE2b-256 d7d62379ecf99f2e856b73ce4302f1de58b395bf62889939aa2a46a570ba8ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e611d8bc1459cfc522c96f7e1c02f7bbaa3c31c46006bc338a9d82963e14810b
MD5 7bdf6540d139c8a44cfa5297bdc685fe
BLAKE2b-256 c3761ab54a6c8c96b934f30cfadaf0196a49b09bcb3237bbe75d3d483818a5f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7f3db13851b75a03a0f4adfd500dd0319a3fe67f2474917099a3b7333480b18
MD5 b715ab6cab45ad17490903a6e318e03a
BLAKE2b-256 060334191b6064ad5f316e435844c3b874590329104f42bb963015e9b44859b2

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33b7f037a3af707d2b7ef02a2bfc7110140a1d1e466e7931aae9d2dbc0f46786
MD5 0e8345b34366fa61613e57bcf9ea93f2
BLAKE2b-256 1be31cbda1b817359712ae4c2288bdd32119cfaf0577b54a8544773df70e0289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 62478bf3282477bbab3748f9f1cb378d9f8be079ceacec0ad84223d3537bd612
MD5 f0fdada7949c013a9e1eb9919f667101
BLAKE2b-256 46f3fd5914ea143d0c4554c62e9eac7a198fdc925530822927c88290fad31881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 69545c63fbcfe81ba0fffeccf255021f1d977e1de8429cd4ad4eed7ea9f6316d
MD5 5a9cdda6a19bf56231f1379e12c7855f
BLAKE2b-256 cb6e60e328f21aa764fc8cd82072b2898d446ccf7cd4907fbac2495dd2cb7e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6543134fec29d41e36dadbf443fde5ccd6a0fd2fe7fe2cb31454ac1376f31f0
MD5 2c9ecd0079f9b2a3ea15b2dbe166558a
BLAKE2b-256 270f545452a8a455b0566a338e69feabbe427b016b1599774acb024d9485efe6

See more details on using hashes here.

File details

Details for the file valkey_glide_sync-2.2.10-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bb3790ee601b35bc5d9eac1c17d09135fa36d83e0e8031842370d9786aee642
MD5 455eb1f449b26dcfe8da2efa8f63fd08
BLAKE2b-256 b208c95d26ee1d2b511ffde4827d4b1092d424ae3494c3567bbf02ca9c232e61

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