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

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.7-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.7-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

valkey_glide_sync-2.2.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

valkey_glide_sync-2.2.7-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.7.tar.gz.

File metadata

  • Download URL: valkey_glide_sync-2.2.7.tar.gz
  • Upload date:
  • Size: 589.4 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.7.tar.gz
Algorithm Hash digest
SHA256 6452421bc1ac0b773ef5c1141b6b6dc216011bd1f18b8ce9fbd3c45470cda0ad
MD5 c6fa855e309920c1cfae5d0e0d1748f5
BLAKE2b-256 03f8bd23b6680f5b15360965217b0e61571fdcccec3acb15c220fcaa75eaca0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4332c057db6a0b2c1f1330468e1c05b1ddd66814e5753c0665faef7c2f4cf3c3
MD5 2368da6f02baa7b13ceb6c232560b74b
BLAKE2b-256 1abdf73c18c025cc562108d57ef15c6a3564db9061550b885b417f5800f351a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3eecbf84e9ae9cca9331ee3560f4402c432e2c78f16bafb3a58885d0b7623d31
MD5 02dbae5bb2fa41b262321f5df6cfd3af
BLAKE2b-256 19c0cbcb1d933dfcb0eda64fdbf5c85a796a4d0893fcb012f7204fbae84b68db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e6886fdb52f4b75a0455e466e2d487b64ad211c4bfaac56eec5c09c3b5d21cb
MD5 f66ba3a6e1b6331df45d99b00333418f
BLAKE2b-256 325772980ffcf29c3500945d0711b3a576327684efea28900191fe6e5661a96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e47c71b1853b94e720bd91eaa0d014249467f3ffeaee52afb4960d108fc72adc
MD5 f87cf75fe788a92f4962ba38098cb08f
BLAKE2b-256 f104060c93d18204760f92125037354f184aa3d2d7099a3945976f981ff5f3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fa6fe802f09ded7344919a07090ce18f89d95e093403e8aed7893525a41d9380
MD5 1959f8e48123f12e88de07a993668d6b
BLAKE2b-256 edb4ea66fd2b198836f3a5a0040d0342929b267bda719295c5916a8a9cd679e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ef667796185bce713937884743e6c795e4ddcb4868aa9cc08c9f7b30c37524b0
MD5 8d982228a8c1940805e16772e13222f2
BLAKE2b-256 2100c87126602e7e607538e9191dd3489098d38fdc1134ed4da228902c69d415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d813ae9c45737dac3993ea1f61394483d7b49798634214ada9d13e9d18ee969
MD5 e67e3233a0caee0649ad23dd2ed463af
BLAKE2b-256 8ebe632d414399a339b85606e00b6e5d40d80f515ca99c031bc6d26deb039ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b7b22e80ee54459260fed7c9ee9e2c3daba730c1395d9f8d6c54881dd5a95cdd
MD5 1e5674e934b1c5f8dc5106ac57f9c2a6
BLAKE2b-256 51ce5fd734c0c64e056b513a53a9dc26c9ba388033bc5404339817a7f18190c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp39-pypy39_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2faeb25e09e2e98df80d9e81759c9c4bf9a0c1e29c334ad4fae0aaa2fce64da0
MD5 4fd835f6c52af22be8ba236a2359cafc
BLAKE2b-256 f3a6ec8338195ef3a0ba591bf861b8ae02000337cf4a53d77b1817a6f2ce022f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 61f01c28ee804ba23029793ecbc751ad04c62674f3ca6f0cb33cad6edaf572f6
MD5 d49c1a4ec50a94d489e571b44bb7e52f
BLAKE2b-256 44d48a28104c5214673a0f96fc506b63a1d4ba63c6eecb35eb6727a46e4aa70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a401281fa4d83e4ea49d3e53d8c4ee9cdde096d0b7081f69dfdfb60bac1ebed
MD5 ee24e6c00b2c18dae0401f14f602cbcc
BLAKE2b-256 dbacfca57cd65a45df7136668a5ffe15687551b9f894ae9fc521a679b194e11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e25297664f8ec02c47e579d523a04cecd995144f3078a6bcb0f0f91fd44a4c09
MD5 bde3971d8d0156a97d691d142ef60a37
BLAKE2b-256 221d51122ef59823e2137de6bb8cb3aee2a2b009189cb71672661d94a280d7d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bd477575160f61193c8b6d6f0fbd2874b0afb63d729e21c60dbe36bfb3616905
MD5 b631a29f8016ea97dce77192f82b32f8
BLAKE2b-256 19c054bbe59acbba6856e0d870ba4456130fa9d7674a09cbf91a7cead7a76266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fdd327efec7d445572abf0f27e6b343e026612a0a33bdd00c243214ea5b0bebc
MD5 3ebcead94d49b69e6c987307c4b15367
BLAKE2b-256 a62d226e90bd861bd4d95f4e3121af49e6b56e1d858c924a1461bdad285d2029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3120911692e3da3754235f3d781eac4eb07bffd4c99f3701082bdec6f940da30
MD5 366407cb8e5fd064622c1f1cb0b8d57f
BLAKE2b-256 511bbe3f17faefe23c11f9e7e446b3d02e0b5c87d5289ec33d3d6912c40b8d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 27ecfba0261b6609fc002c4ec99aa090b0e48295c24392ea4e17e10a4bd991ca
MD5 78d42e4f9473a1964e367e5a22f12e06
BLAKE2b-256 a5756e0e8712902a9a828b6577838a5cba56d54051a50a89d7eb38cdc77a0cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 88065672232735212d99aa46fe8e7eea686968cd413058af4b7409ac04bb8029
MD5 7944bbd803069756dd986dd73d1d4d06
BLAKE2b-256 dadfe0f02f93e59866a7d8a49ea5bb0f274c77624d34e19fa0e26926a9c6d5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 362db7fca9165dfaeecf7e7641e07c8ecc30eb18bf0f463dfbab267178a35a47
MD5 f029485cba8a25fc2d3c871d38e3f4bf
BLAKE2b-256 e584a7543929a62cafa651a51445d7571586ad1ec294f6ae967712ad5ae079b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba35e1decab5f17cec3bae1139648284647a4ffbbfb2a1d79216dde79bf70b1e
MD5 cd259a27e6ce6dbfa8d2c149f6bd9cfb
BLAKE2b-256 ff61cbe42b6401cd0907a53daed8004ac43a380b531a98771317a8f361a1125b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 439eaaa0fc51cd2c28b342e0786e4a08510e5b934b4927dd4c88e5c3e3a3e2b7
MD5 54bd3b6b156105b628a6abdd02b81096
BLAKE2b-256 699f1c94f10ab41ea0435da5340fd0e57d2b62b69ce79e2f7bec66340c772339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 fa933efc177c16234c4c7283fa55669503f7d10bc0780381328c0880f626c501
MD5 ea880676b99e5724e6372eafc6740428
BLAKE2b-256 0a344c2ff3b98d5acbe03c73344b1369d3e42a8605eba3dd81b5b349c73ccf79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4a25848ea376badc6a5567fe91bbfc5df4ba6d6d21988f31ec5a3561d9c5cd40
MD5 df5f3f763ad42cc15969f5e1313eb0b4
BLAKE2b-256 5b0d7f9e10c49e39945d9474de05c2bb45f9ae55ca2dcf364b0000e13c3c2019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72bd3931b6ef451bb3c662bb7ef45b7ace0d62d3834843065439559ac3dbe194
MD5 c890d49eba4e585aaa1f136105b430a9
BLAKE2b-256 9a60c664c4765856d927393695300c07d4fb83420eac2676d349c00026cfba94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6fbaf8b546e8796647aa017e82b8bd41e48ae3d23e55f7d850064f2e6c04e8b9
MD5 0f7a58936a47c492805e07899268c897
BLAKE2b-256 72f8bbdaad44459954feea0d472c2ebc860e6f54580d3a4b648caa5e7c6bb4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2d6cf34fc312c271eedfe75749fdb14e7d7a776738a3f3b486af3cf65c1ec926
MD5 fa262503f14ddb9dd8f5967fa17f1bd2
BLAKE2b-256 329844c1d1e7b286c7d995a4ee95121d5cdae80a6506d3ccfebc456b72bfa89d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 3b3ba4e370d9547ae86c546ebef7376e859af3b416bf78c5fb5a1ca1f1bcb108
MD5 b6f94071a755a033f37861159f5f4c23
BLAKE2b-256 eb585637bdca01e0d66ce1e844e83b6a825dba0b028f1a143cbee4ce87d7e6c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccc98f6abcb9a71e469cceb6a26921edb55c742adb4c1513b3e55de9b67b7614
MD5 bcfe140e38b258ab11b926362a11882f
BLAKE2b-256 dc9c847a5d4bd052820448e013c99cc9a774cf7d64ed534f4602aee8f938c300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5d46c5db4eafc73cc66b7adb845e0ffdd16271417f9e5f4bfd90b8ebc16bea6
MD5 daa22d38926d08895b4df357ca83427a
BLAKE2b-256 882f8f532a72a75ee666dbf1e589e2be21fab963eab958fc71d9807d4bfb3a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e34cd88bb5c90d89dd94cd6080c1482868e78bd0d206e4b414d09413ba02a35c
MD5 94467459def01573894c299ee09503f0
BLAKE2b-256 711c97511d1b20d622728597555eb6258ff728785734ad2d0bd955141f4d79d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4f0bb3c0e146ab11b0a1456c59c36333dbfe5c727a017edb69d8c1ccdb0dc4dc
MD5 82d5562ed8219fa6a3787702d1978c49
BLAKE2b-256 2a475efd4cc5471de0540863121f10690f77bebc53d7c1fd660b150dd531b11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73916f2d8d59b9c57db65be2b0c8790161252f76fc0138fd7e8c60cc66961450
MD5 5f68817318fc611843d2bceb16a7ec3a
BLAKE2b-256 53b634bd58bad9fa95665579c9ea63b4e975353cfc15ee8b5a9b9f9e470d16e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f415db3fb677b1ff79fb600b06d5c82f0edbea0da4a2492f65caf0c6fb75fc3
MD5 772ab1ec93626e556ce1b19666080647
BLAKE2b-256 1cf5f6c91dd222e19bc911f3657cf3c549e6e227fa06829326cd777beba5c1a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9c8fed28b5cb50f068df8bcf774665968e994421a2fdb7ef51c38a90885f92bf
MD5 4345410bdfd7c96cb4ac27a962861d94
BLAKE2b-256 2d5380827f41e3eb6e11feaae06cc4ce74c033b6a34592f3c55bf4b1b2c3774c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 41d7d81728dc35fc84cf330b75f37ca0381a37c52650ee80c64bc9e2327f19d8
MD5 8651e0ec4dbaf08eab920f29235db68b
BLAKE2b-256 f661a33bdcc416b2beb178f004dfac7f41a14637adb4ac4805f0a26511837386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3692da24111a42da75fa743c9ad8180cf48223cbe78f1b5d75e3a42588e7989a
MD5 ae7239319099d2154da0f4f0b3cbb811
BLAKE2b-256 ff7553c962e2042648b3eb541f277243a0fefca75ecd50c1d4a91b8f2aae4899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for valkey_glide_sync-2.2.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45e4522b925b97adc062e170741a60c42d0f631b924a94bce43df3fe42f5e989
MD5 38d74b90fb7f244ed92461738ae25a22
BLAKE2b-256 00510403744c753d8da7e9cff77da38cec67c97a16c39d63c9eec90921fc5fba

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