skillfed

valkey-glide-sync

Valkey GLIDE Sync client. Supports Valkey and Redis OSS.

valkey-glide-sync v2.5.1 274.5K downloads/30d#8,190 on PyPI
Permissive license Apache-2.0 Active released

What it is and what it does

Valkey GLIDE Sync is the official synchronous Python client for Valkey and Redis OSS, built on a Rust core with Python-specific bindings. It provides blocking operations for connecting to Valkey servers in either standalone or cluster mode, supporting key-value commands, pub/sub messaging with dynamic subscription management, and automatic failover. The package is maintained by the Valkey organization and backed by AWS and GCP.

The sync variant is designed for applications that prefer or require blocking I/O rather than async patterns. It depends on cffi, protobuf, and typing-extensions. Installation uses precompiled wheels for Python versions 3.10–3.14 on Linux (x86_64, aarch64) and macOS (Intel, Apple Silicon), with medium install friction. The package is actively maintained and carries no known security vulnerabilities.

Use it for:

  • Traditional blocking web frameworks needing Redis caching without async refactoring
  • Synchronous batch processing or ETL pipelines that read/write to Valkey for state
  • Pub/sub message handling in blocking contexts with automatic subscription reconciliation
  • Cluster-aware key-value operations across sharded Valkey deployments
  • Migration from older Redis clients to an officially maintained alternative

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Synchronous Python client for Valkey and Redis OSS providing blocking operations for key-value storage, pub/sub messaging, and cluster or standalone connectivity.

Yes. Valkey GLIDE Sync is the official, actively maintained synchronous client for Valkey/Redis OSS with no known vulnerabilities, permissive Apache-2.0 licensing, and broad platform support. Choose it if you need blocking I/O, cluster awareness, or official Valkey backing. Medium install friction is acceptable given precompiled wheels and active maintenance.

Install

valkey-glide-sync on PyPI

pip

pip install valkey-glide-sync

uv

uv add valkey-glide-sync

poetry

poetry add valkey-glide-sync

Installing valkey-glide-sync

Before you install

Medium install friction due to precompiled wheels across Python versions 3.10–3.14 on macOS and Linux (x86_64, aarch64). Active maintenance with a release 4 days old. Requires cffi, typing-extensions, and protobuf as runtime dependencies.

License in practice

Licensed under Apache-2.0 (permissive), allowing commercial use, modification, and distribution with minimal restrictions—suitable for most production and proprietary projects.

Quickstart

pip install valkey-glide-sync

from glide_sync import GlideClientConfiguration, NodeAddress, GlideClient

config = GlideClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    request_timeout=500
)
client = GlideClient.create(config)
result = client.set("key", "value")
print(client.get("key"))

Requires a running Valkey or Redis OSS server accessible at the configured address and port.

Verify before relying

  • Exact Python version support range (requires_python field is unspecified in metadata)
  • Whether Alpine Linux / MUSL support has been added since the documented limitation
  • Performance characteristics and latency profile in production deployments

Package facts

License Apache-2.0 (permissive)
Python support not specified
Install friction medium — platform-specific wheel
Runtime dependencies 3 — cffi, typing-extensions, protobuf
Maintenance actively maintained — 4 days since the last release
First released
Downloads 274,503/month — #8,190 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: valkey_glide_sync-2.5.1-cp310-cp310-macosx_10_12_x86_64.whl; valkey_glide_sync-2.5.1-cp310-cp310-macosx_11_0_arm64.whl; valkey_glide_sync-2.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl; valkey_glide_sync-2.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl; valkey_glide_sync-2.5.1-cp311-cp311-macosx_10_12_x86_64.whl; valkey_glide_sync-2.5.1-cp311-cp311-macosx_11_0_arm64.whl; valkey_glide_sync-2.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl; valkey_glide_sync-2.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl; valkey_glide_sync-2.5.1-cp312-cp312-macosx_10_13_x86_64.whl; valkey_glide_sync-2.5.1-cp312-cp312-macosx_11_0_arm64.whl; valkey_glide_sync-2.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl; valkey_glide_sync-2.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl; valkey_glide_sync-2.5.1-cp313-cp313-macosx_10_13_x86_64.whl; valkey_glide_sync-2.5.1-cp313-cp313-macosx_11_0_arm64.whl; valkey_glide_sync-2.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl; valkey_glide_sync-2.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl; valkey_glide_sync-2.5.1-cp314-cp314-macosx_10_15_x86_64.whl; valkey_glide_sync-2.5.1-cp314-cp314-macosx_11_0_arm64.whl; valkey_glide_sync-2.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl; valkey_glide_sync-2.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Intended Audience :: DevelopersProgramming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPyProgramming Language :: RustTopic :: DatabaseTopic :: Software DevelopmentTopic :: Utilities

Tags

redis sync clientvalkey python clientblocking redis operationsredis cluster clientpub/sub messaging redisredis key-value storevalkey standalone client
redis-clientvalkeysync-io

More Software Development packages