valkey-glide-sync
Valkey GLIDE Sync client. Supports Valkey and Redis OSS.
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-syncuv
uv add valkey-glide-syncpoetry
poetry add valkey-glide-syncInstalling 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
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
valkey-glideValkey GLIDE is an official async and sync…
permissive · top 5,000 on PyPI
valkeyPython client library for connecting to and…
permissive · top 5,000 on PyPI
opentelemetry-python-contrib-external-valkeyAdds OpenTelemetry tracing to the Valkey Python…
permissive · top 15,000 on PyPI
coredisAn async Redis client with full type hints,…
permissive · top 5,000 on PyPI
libvalkeylibvalkey is a Python C extension that…
permissive · top 5,000 on PyPI
redisPython client library for connecting to and…
permissive · top 1,000 on PyPI
azure-mgmt-redisenterpriseManages Azure Redis Enterprise clusters and…
unclear · top 5,000 on PyPI
django-valkeyProvides a Valkey cache and session backend for…
permissive · top 15,000 on PyPI
redis-cliProvides a lightweight wrapper around redis-py…
permissive · top 15,000 on PyPI
fakeredisfakeredis provides an in-memory, pure-Python…
permissive · top 1,000 on PyPI