Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

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 Python documentation site.

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()

PubSub Configuration

Valkey GLIDE supports dynamic PubSub with automatic subscription reconciliation. Configure the reconciliation interval to ensure subscriptions remain synchronized:

# Async client
from glide import GlideClientConfiguration, NodeAddress, GlideClient, AdvancedGlideClientConfiguration

config = GlideClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    advanced_config=AdvancedGlideClientConfiguration(
        pubsub_reconciliation_interval=5000  # Reconcile every 5 seconds (in milliseconds)
    )
)
client = await GlideClient.create(config)

# Sync client
from glide_sync import GlideClientConfiguration, NodeAddress, GlideClient, AdvancedGlideClientConfiguration

config = GlideClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    advanced_config=AdvancedGlideClientConfiguration(
        pubsub_reconciliation_interval=5000  # Reconcile every 5 seconds (in milliseconds)
    )
)
client = GlideClient.create(config)

Pre-configured Subscriptions

You can configure subscriptions at client creation time. The client will automatically establish these subscriptions during connection:

# Async client with pre-configured subscriptions
from glide import (
    GlideClientConfiguration,
    NodeAddress,
    GlideClient,
)

def message_callback(msg, context):
    print(f"Received message on {msg.channel}: {msg.message}")

config = GlideClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    pubsub_subscriptions=GlideClientConfiguration.PubSubSubscriptions(
        channels_and_patterns={
            GlideClientConfiguration.PubSubChannelModes.Exact: {"news", "updates"},
            GlideClientConfiguration.PubSubChannelModes.Pattern: {"events.*", "logs.*"},
        },
        callback=message_callback,
        context=None  # Optional context passed to callback
    )
)
client = await GlideClient.create(config)

# Cluster client with sharded pubsub
from glide import GlideClusterClientConfiguration, GlideClusterClient

config = GlideClusterClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    pubsub_subscriptions=GlideClusterClientConfiguration.PubSubSubscriptions(
        channels_and_patterns={
            GlideClusterClientConfiguration.PubSubChannelModes.Exact: {"channel1"},
            GlideClusterClientConfiguration.PubSubChannelModes.Pattern: {"pattern*"},
            GlideClusterClientConfiguration.PubSubChannelModes.Sharded: {"shard_channel"},
        },
        callback=message_callback,
        context=None
    )
)
cluster_client = await GlideClusterClient.create(config)

Dynamic Subscription Management

Subscribe and unsubscribe at runtime:

# Subscribe to channels
await client.subscribe({"channel1", "channel2"}, timeout_ms=5000)

# Subscribe to patterns
await client.psubscribe({"news.*", "events.*"}, timeout_ms=5000)

# Unsubscribe from specific channels
await client.unsubscribe({"channel1"}, timeout_ms=5000)

# Unsubscribe from all channels
from glide.async_commands.core import ALL_CHANNELS
await client.unsubscribe(ALL_CHANNELS, timeout_ms=5000)

# Unsubscribe from all patterns
from glide.async_commands.core import ALL_PATTERNS
await client.punsubscribe(ALL_PATTERNS, timeout_ms=5000)

# Cluster: sharded pubsub
await cluster_client.ssubscribe({"shard_channel"}, timeout_ms=5000)
await cluster_client.sunsubscribe({"shard_channel"}, timeout_ms=5000)

# Check subscription state
state = await client.get_subscriptions()
print(f"Desired: {state.desired_subscriptions}")
print(f"Actual: {state.actual_subscriptions}")

Client Statistics

Monitor client performance and subscription health using get_statistics():

stats = await client.get_statistics()  # Async
# or
stats = client.get_statistics()  # Sync

# Available metrics:
# - total_connections: Number of active connections
# - total_clients: Number of client instances
# - total_values_compressed: Count of compressed values
# - total_values_decompressed: Count of decompressed values
# - total_original_bytes: Original data size before compression
# - total_bytes_compressed: Compressed data size
# - total_bytes_decompressed: Decompressed data size
# - compression_skipped_count: Times compression was skipped
# - subscription_out_of_sync_count: Failed reconciliation attempts
# - subscription_last_sync_timestamp: Last successful sync (milliseconds since epoch)

OpenTelemetry Configuration

Valkey GLIDE supports OpenTelemetry for distributed tracing and metrics collection. This allows you to monitor command execution, measure latency, and track performance across your application.

Basic OpenTelemetry Setup

Both async and sync clients support OpenTelemetry configuration:

# Async client
from glide import OpenTelemetry, OpenTelemetryConfig, OpenTelemetryTracesConfig, OpenTelemetryMetricsConfig

# Sync client
from glide_sync import OpenTelemetry, OpenTelemetryConfig, OpenTelemetryTracesConfig, OpenTelemetryMetricsConfig

# Initialize OpenTelemetry (once per process)
OpenTelemetry.init(OpenTelemetryConfig(
    traces=OpenTelemetryTracesConfig(
        endpoint="http://localhost:4318/v1/traces",  # OTLP HTTP endpoint
        sample_percentage=1  # Sample 1% of requests (default)
    ),
    metrics=OpenTelemetryMetricsConfig(
        endpoint="http://localhost:4318/v1/metrics"
    ),
    flush_interval_ms=5000  # Flush every 5 seconds (default)
))

Supported Endpoints

  • HTTP/HTTPS: http://localhost:4318/v1/traces or https://...
  • gRPC: grpc://localhost:4317
  • File: file:///tmp/traces.json (for local testing)

Runtime Configuration

You can adjust the sampling percentage at runtime:

# Change sampling to 10%
OpenTelemetry.set_sample_percentage(10)

# Check current sampling rate
current_rate = OpenTelemetry.get_sample_percentage()

Note: OpenTelemetry can only be initialized once per process. To change configuration, restart your application.


Compression Configuration (EXPERIMENTAL)

⚠️ WARNING: This feature is experimental and can result in incorrect responses from certain commands without careful use.

Valkey GLIDE supports automatic compression and decompression of string values to reduce memory usage and network bandwidth.

Incompatible Commands: Compression is NOT compatible with commands that manipulate string data on the server:

  • APPEND, GETRANGE, SETRANGE, STRLEN, LCS
  • INCR, INCRBY, INCRBYFLOAT, DECR, DECRBY
  • GETBIT, SETBIT, BITCOUNT, BITPOS, BITFIELD, BITFIELD_RO, BITOP

Using these commands with compressed values will result in incorrect behavior or errors.

Basic Compression Setup

# Async client
from glide import GlideClientConfiguration, NodeAddress, GlideClient, CompressionConfiguration, CompressionBackend

config = GlideClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    compression_configuration=CompressionConfiguration(
        backend=CompressionBackend.ZSTD,  # or CompressionBackend.LZ4
        min_compression_size=64,  # Only compress values >= 64 bytes
        compression_level=3  # ZSTD: 1-22, LZ4: -128 to 12
    )
)
client = await GlideClient.create(config)

# Sync client
from glide_sync import GlideClientConfiguration, NodeAddress, GlideClient, CompressionConfiguration, CompressionBackend

config = GlideClientConfiguration(
    addresses=[NodeAddress("localhost", 6379)],
    compression_configuration=CompressionConfiguration(
        backend=CompressionBackend.ZSTD,
        min_compression_size=64,
        compression_level=3
    )
)
client = GlideClient.create(config)

Supported Commands

Write Commands (automatic compression):

  • SET, MSET, SETEX, PSETEX, SETNX

Read Commands (automatic decompression):

  • GET, MGET, GETEX, GETDEL

Monitoring Compression

Use get_statistics() to monitor compression effectiveness:

stats = await client.get_statistics()  # or client.get_statistics() for sync
print(f"Values compressed: {stats['total_values_compressed']}")
print(f"Original bytes: {stats['total_original_bytes']}")
print(f"Compressed bytes: {stats['total_bytes_compressed']}")
print(f"Compression skipped: {stats['compression_skipped_count']}")

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.

Release files for valkey-glide 2.5.2rc3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for valkey-glide 2.5.2rc3
File Size Uploaded
valkey_glide-2.5.2rc3.tar.gz 1.0 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for valkey-glide 2.5.2rc3
File
valkey_glide-2.5.2rc3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-pp311-pypy311_pp73-macosx_10_7_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.7+ x86-64 Details
valkey_glide-2.5.2rc3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-cp314-cp314-macosx_10_7_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.7+ x86-64 Details
valkey_glide-2.5.2rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-cp313-cp313-macosx_10_7_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.7+ x86-64 Details
valkey_glide-2.5.2rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-cp312-cp312-macosx_10_7_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.7+ x86-64 Details
valkey_glide-2.5.2rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-cp311-cp311-macosx_10_7_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.7+ x86-64 Details
valkey_glide-2.5.2rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-cp310-cp310-macosx_10_7_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.7+ x86-64 Details
valkey_glide-2.5.2rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
valkey_glide-2.5.2rc3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
valkey_glide-2.5.2rc3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
valkey_glide-2.5.2rc3-cp39-cp39-macosx_10_7_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.7+ x86-64 Details

Total release size: 406.0 MB

Release files / valkey_glide-2.5.2rc3.tar.gz

Download URL valkey_glide-2.5.2rc3.tar.gz
Size 1.0 MB
Tags Source
SHA-256 checksum
How to use checksums
3b2c3590fc9e288cc97fb79360c0d9faec750780fead54a74904cb0fe659c680
BLAKE2b-256 checksum
How to use checksums
ff6010db4abe89f9192dc0c641d707f60c3525c22b581ac70d4b0c972784c2aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
7e99c9c5bd7d10e6de7bc2ebdce50b2c01f842adbdc7c8b7dbc39ba64c739d01
BLAKE2b-256 checksum
How to use checksums
ab97a29e2ddb936d13749fdd18bc2884d524ad874072319e422f2a1bb24600ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.5 MB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e97ff6e5bb5a519484df45b3daca136492e992fc304fd8cffb87e432d8fcf77f
BLAKE2b-256 checksum
How to use checksums
8fea98f1ab9a097cfa490f13cd2f4b5584b766618ac6ba16088cf163d6f246d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-pp311-pypy311_pp73-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 13.5 MB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8817da45be986040187e188cf2375b1c1b616bd2a0b8d8398679fc5de468bfa6
BLAKE2b-256 checksum
How to use checksums
45c6b64873b4cbecf42deaecaec76c978a82b134193cc6d803ee2e47f1a208d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-pp311-pypy311_pp73-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-pp311-pypy311_pp73-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
aac824ef6b9a470190558de47e13ec4a5258662d661fe308aaaf948b2acc27d3
BLAKE2b-256 checksum
How to use checksums
818d886fd5d676a8148a9a91a1a11afeb6c3ab1edbc716c45300a4a7f29ffa30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
13126f93975d1b16a7cc749d33cdae3728b1c731ef7202bffc72110f91cacc43
BLAKE2b-256 checksum
How to use checksums
5ad949c249c0dacc0f3211e70bcd90142f8542e08969e5fdd7a2a8e1cbe2c60b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.5 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
790876fe846670d9b57ccc52dbb23962a5ed293d64785e3e6e9174bf8ea3026c
BLAKE2b-256 checksum
How to use checksums
2ff65f8468ccd3c43fe0956a5d15f874750b1384a930a4b28b0b19c5f8a9c54e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp314-cp314-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-cp314-cp314-macosx_11_0_arm64.whl
Size 13.5 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ed42d5dfb50110126a49e9da6b37da2a1da750c0ccc1fa7036a036a6cbf1ced9
BLAKE2b-256 checksum
How to use checksums
808fbc60465499c08fb5d2261710b182c482a874a1e47dd17ce5c9b25dc6e891
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp314-cp314-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp314-cp314-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags CPython 3.14 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
c366b93111dac5bb9fd839c163ecb257c2e122eb894c6bcaee52ccd95a7a2df9
BLAKE2b-256 checksum
How to use checksums
66ee034ba42da14ed1608b2f88ea4e9336962aabc0babe7f6996bb11cc62a186
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6938877f24a72f4eb777c44a362152e572beda8a50f2a0aef49b5ff52efc1de7
BLAKE2b-256 checksum
How to use checksums
e5bfb4024fca246b4ae2dbd4833b4cdbd880050bf5fa1ac3b10002af27530554
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.5 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
84a5b1dc86914a28654da75233e1445c17c4e8fc82cfa52e3e431c7fdbb13cc6
BLAKE2b-256 checksum
How to use checksums
60224c73242c3209f886f7d76e5a87c18a677f704bdb82ecbb08cf48871556e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp313-cp313-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-cp313-cp313-macosx_11_0_arm64.whl
Size 13.5 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
df6d759d5c9d00fe33dfa5bbeba74f7cb317e61f5c2962604474b3790a651a57
BLAKE2b-256 checksum
How to use checksums
cefae3d5c19df005d5454d97bf6c45c622c626376ab64d9491f326ea818e6b99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp313-cp313-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp313-cp313-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags CPython 3.13 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
4452929d9507576b42a6663119456f19007f8941a07efc19b25137dca9bd4adb
BLAKE2b-256 checksum
How to use checksums
9fa050941bb8dd1892ed21f2e1b277ea0baa5d485c4dac14c3746f5574113c2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4fd76e26bfa9ba047b055979d0e2f4ba57d0b3d1877567397b8f4b31b078eb5e
BLAKE2b-256 checksum
How to use checksums
b41b10dbd2b5b0086ba02fb2916ba61e487459dc58c0b0fa1b4a9d78eda8bb0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.5 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0e6948a9937e53f48f994ecababd00ee90226ee59d70b92a3f03ec07bd7db086
BLAKE2b-256 checksum
How to use checksums
6967119ab4e0abcdcad923ed15b5995593ee6f9a026d6a61e0e6694fed09d2b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp312-cp312-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-cp312-cp312-macosx_11_0_arm64.whl
Size 13.5 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6f812fc5e00ba6a009b9087b559a089d05f4fd955fad7e588b0210147305220d
BLAKE2b-256 checksum
How to use checksums
f928b709b5594a7cc2380f490a78f980f0950fca011726dcb3385b11383c51d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp312-cp312-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp312-cp312-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags CPython 3.12 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
56692e57783931818bd21ad6947c158b53a9e5271a16236e93743b327a41c3f2
BLAKE2b-256 checksum
How to use checksums
71eac84d3956deed78dbf3a0a4e78379a7e927fe6b5695cae5503ac4ce12857c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
40d2fe21c30bb5226e7b68af222ad7efb1f3d87247f934908f4cd5912738ffc1
BLAKE2b-256 checksum
How to use checksums
9fae8d248efffaa6ff9dfaa0f10719bbf9e23cee7d5cbb9feb15edb5a83fad45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9c13714388fa8f59916819b3ea65e2ab932200c630f621f542b2e81b4f7e0aa4
BLAKE2b-256 checksum
How to use checksums
6cc27dffee584063066d8d901bb4ec11aa218be0128138e3482f8e09bb04906c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp311-cp311-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-cp311-cp311-macosx_11_0_arm64.whl
Size 13.5 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5abf06538a8ef71d6557f053b62db7ef58fce962378a5d0a2bc20da078b31dec
BLAKE2b-256 checksum
How to use checksums
6596c598c5647b351e0d8d14bab369abf2feb9f30aa3f72fb939c629b8a8467c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp311-cp311-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp311-cp311-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags CPython 3.11 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
7c859aabc0855aeb7ea6be94dc841759590c1a0be1353cebc91a2d0865011bab
BLAKE2b-256 checksum
How to use checksums
4925e862dc638935a80adf8c541064719ca5d1ca6c557706d6c656f269c752d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6cb328efb908dfc6fd21a7941ae053129639af546516789d2c4ea9382f22846a
BLAKE2b-256 checksum
How to use checksums
55b02780c31f1f44d0dcb3ff98c8848cc63aec4b7829748edbb191e118e0493a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8f0809bb527f11770ca32b5ae24740f44471ddddfb506c397dd8a801e703a22a
BLAKE2b-256 checksum
How to use checksums
c6f4507017c498cf2df76bfba9ac3ab759dc04a8f15081ba23a6e7dcf133cc7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp310-cp310-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-cp310-cp310-macosx_11_0_arm64.whl
Size 13.5 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
742f46ce870feb5a2ff7efc23a8860f30c11536c7383227aff75aaba871abc15
BLAKE2b-256 checksum
How to use checksums
ba742e0e9ec578f0cce6ab425523debf5bf053a4fc11342cad64b97f4817d47b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp310-cp310-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp310-cp310-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags CPython 3.10 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
ee494a3514c0a3f2d4ad9345248555a21b4c28e88d0f78a21d2352c8dcd8f13a
BLAKE2b-256 checksum
How to use checksums
4de7f8523a5bb6cf470f611fd5cc6492370906e8f9bff49ce0ee0b4608c25ba0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 15.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e6ada0669f8af7d7d811c204915b7bf6b7ef2eb70d32e3267a8faac24a848262
BLAKE2b-256 checksum
How to use checksums
f26977c47ec8aa1426c863d9fc213e38dceecc76449f81c7a736c9a116ca18c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL valkey_glide-2.5.2rc3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 14.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9fe9089abb7ee91a92246c972c6ab22288bb6bec879045bf5a22c646b24ff2c3
BLAKE2b-256 checksum
How to use checksums
cfd1cf93a8fa92042c628ef9ecf128e31c2c3c93bef48e0d1b2e8f935b28a22b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp39-cp39-macosx_11_0_arm64.whl

Download URL valkey_glide-2.5.2rc3-cp39-cp39-macosx_11_0_arm64.whl
Size 13.5 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5c03bf320d8cc1fb41691c8234c93abfa210fc186e4d0eb4e201167fa6685894
BLAKE2b-256 checksum
How to use checksums
a244940f96dbee5fb278049cb307b7fff7456ab30f281ebb86f4141167f28c61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release files / valkey_glide-2.5.2rc3-cp39-cp39-macosx_10_7_x86_64.whl

Download URL valkey_glide-2.5.2rc3-cp39-cp39-macosx_10_7_x86_64.whl
Size 14.5 MB
Tags CPython 3.9 macOS 10.7+ x86-64
SHA-256 checksum
How to use checksums
1983cecbc90855dbab615f773cc3ca5ab1163816400af47498028ad7475b256a
BLAKE2b-256 checksum
How to use checksums
8b5f1a24a88848bc34a8edfa674da4c4c35232be2dc4a473660e34e76632bfdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.5.2rc3 This release

29 release files

2.5.1

29 release files

2.5.0

29 release files

2.4.2

29 release files

2.4.1

37 release files

2.4.0

37 release files

2.3.0

37 release files

2.2.9

37 release files

2.2.6

37 release files

2.2.3

37 release files

2.2.2

37 release files

2.2.0

37 release files

2.1.0

33 release files

2.0.1

33 release files

2.0.0

33 release files

1.3.5

33 release files

1.3.0

15 release files

1.2.1

15 release files

1.2.0

15 release files

1.1.0

20 release files

1.0.1

20 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page