An open source Valkey client library that supports Valkey and Redis open source 6.2, 7.0, 7.2 and 8.0.
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
Installing via Package Manager (pip)
To install Valkey GLIDE using pip
, follow these steps:
- Open your terminal.
- Execute the command below:
$ pip install valkey-glide
- After installation, confirm the client is accessible by running:
$ python3 >>> import glide
Basic Examples
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())
Set response is OK
Get response is bar
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())
Set response is OK
Get response is bar
For complete examples with error handling, please refer to the cluster example and the standalone example.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file valkey_glide-2.0.1.tar.gz
.
File metadata
- Download URL: valkey_glide-2.0.1.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4f9c62a88aedffd725cced7d28a9488b27e3f675d1a5294b4962624e97d346c4
|
|
MD5 |
cdef1de0923642d2c2470f040345c9b8
|
|
BLAKE2b-256 |
3235fb0401c4bc7be748d937e95213786d21d9e56767b3ad816db5bad6f92c01
|
File details
Details for the file valkey_glide-2.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d1c5fff0f12d2aa4277ddc335035b2c8e12bb11243c1a0f3c35071f4a8b11064
|
|
MD5 |
9cd8065a94c9b65586fc414214f634b1
|
|
BLAKE2b-256 |
00fead83cfc2ac87bf6bad2b75fa64fca5a6dd54568c1de551d36d369e07f948
|
File details
Details for the file valkey_glide-2.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8d3345ea2adf6f745733fa5157d8709bcf5ffbb2674391aeebd8f166a37cbc96
|
|
MD5 |
08da3e88fe9aa1c6e0638065fee2beff
|
|
BLAKE2b-256 |
3bc2c91d753a89dd87dce2fc8932cfbe174c7a1226c657b3cd64c063f21d4fe6
|
File details
Details for the file valkey_glide-2.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e526a7d718cdd299d6b03091c12dcc15cd02ff22fe420f253341a4891c50824d
|
|
MD5 |
7335a7952c8abe116cf3818fccb2fc10
|
|
BLAKE2b-256 |
1faea935af65ae4069d76c69f28f6bfb4533da8b89f7fc418beb7a1482cdd9ee
|
File details
Details for the file valkey_glide-2.0.1-pp311-pypy311_pp73-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp311-pypy311_pp73-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: PyPy, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
53da3cc47c8d946ac76ecc4b468a469d3486778833a59162ea69aa7ce70cbb27
|
|
MD5 |
4addef07c50c1b60b8a46f37964fde90
|
|
BLAKE2b-256 |
1c9e68790c1a263f3a0094d67d0109be34631f6f79c2fbce5ced7e33a65ad363
|
File details
Details for the file valkey_glide-2.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3c5ed905fb62368c9bc6aef9df8d66269ef51f968dc527da4d7c956927382c1d
|
|
MD5 |
de031cf4a645e6997ea448b4b9f05124
|
|
BLAKE2b-256 |
c7fc047e89cc01b4cc71db1b6b8160d3b5d050097b408028022c002351238641
|
File details
Details for the file valkey_glide-2.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
631a7a0e2045f7e5e3706e1903beeddf381a6529e318c27230798f4382579e4f
|
|
MD5 |
4a49bf9e7d2884c3333f32971a0e7162
|
|
BLAKE2b-256 |
6c13cd9a20988a820ff61b127d3f850887b28bb734daf2c26d512d8e4c2e8e9e
|
File details
Details for the file valkey_glide-2.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9aa004077b82f64b23ea0d38d948b5116c23f7228dae3a5b4fcfa1799f8ff7de
|
|
MD5 |
c2c4b62cdd383bd109c4147e719c629f
|
|
BLAKE2b-256 |
dbe52122541c7a64706f3631655209bb0b13723fb99db3c190d9a792b4e7d494
|
File details
Details for the file valkey_glide-2.0.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: PyPy, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d4a9ccfe2b190c90622849dab62f9468acf76a282719a1245d272b649e7c12d1
|
|
MD5 |
0cbe1478aca9401daab395b3e8bcbb66
|
|
BLAKE2b-256 |
512ead8595ffe84317385d52ceab8de1e9ef06a4da6b81ca8cd61b7961923de4
|
File details
Details for the file valkey_glide-2.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
813d87cd86ebc8af89d15e491ca6ad0894dbc61be00f88d8edc0d10a53c54739
|
|
MD5 |
6905eafc8cbf9a3d47ee84cc9d6e1cf5
|
|
BLAKE2b-256 |
09fff1882022d632d20d6d5c2f9973a5dac6dfa0631f98b418a52bbd13d5cefa
|
File details
Details for the file valkey_glide-2.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e8822187e1b7bb230bb92cf77f5a59c5ce0c9d74b2c08f04f2e8a616a228e807
|
|
MD5 |
afd3c09a580a820340e5e0b7d249efec
|
|
BLAKE2b-256 |
9e43d1dbe4e3c4b556551542a7be49dc82646ffaa7076df1827fd5c5946b61bf
|
File details
Details for the file valkey_glide-2.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f2c9ca5282f89e139d5a5d5731c72c0eb7219945981444e841e85a6e299ab15e
|
|
MD5 |
8d4e94255a988fa7e8086ed2d0e5167c
|
|
BLAKE2b-256 |
61d89f8a1f965fa50d182921147368dd89d8d43facc0ca79deafe1a8fd057727
|
File details
Details for the file valkey_glide-2.0.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: PyPy, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2c0cf348c315f90240297e7ae0826618bef82b640c04295c7a2da6e92f771858
|
|
MD5 |
c222730935b6965291382a0b2ccf3ec9
|
|
BLAKE2b-256 |
0c0f1d2fb26d86139858bb2860001f94642cc27e6bc59f5b465fdef97979ba2d
|
File details
Details for the file valkey_glide-2.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d770ec581acc59d5597e7ccaac37aee7e3b5e716a77a7fa44e2967db3a715f53
|
|
MD5 |
8c84db0143e33c7fc64b4d78377feb09
|
|
BLAKE2b-256 |
43be68961b14ea133d1792ce50f6df1753848b5377c3e06a8dbe4e39188a549a
|
File details
Details for the file valkey_glide-2.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
943a2c4a5c38b8a6b53281201d5a4997ec454a6fdda72d27050eeb6aaef12afb
|
|
MD5 |
8a5a217a72591476e291ed7fdca14e35
|
|
BLAKE2b-256 |
9f49f168dd0c778d9f6ff1be70d5d3bad7a86928fee563de7de5f4f575eddfd8
|
File details
Details for the file valkey_glide-2.0.1-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3a23572b83877537916ba36ad0a6b2fd96581534f0bc67ef8f8498bf4dbb2b40
|
|
MD5 |
6bd9b9d9b8598263f93762b12e00d192
|
|
BLAKE2b-256 |
2014a8a470679953980af7eac3ccb09638f2a76d4547116d48cbc69ae6f25080
|
File details
Details for the file valkey_glide-2.0.1-cp313-cp313-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp313-cp313-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.13, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c49b53011a05b5820d0c660ee5c76574183b413a54faa33cf5c01ce77164d9c8
|
|
MD5 |
6595ca09f05cdea4c388fd58571ee998
|
|
BLAKE2b-256 |
ed7e257a2e4b61ac29d5923f89bad5fe62be7b4a19e7bec78d191af3ce77aa39
|
File details
Details for the file valkey_glide-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3939aaa8411fcbba00cb1ff7c7ba73f388bb1deca919972f65cba7eda1d5fa95
|
|
MD5 |
d1a849f95ef3ed2232c120a9013bfb8e
|
|
BLAKE2b-256 |
5f94ee4d9d441f83fec1464d9f4e52f7940bdd2aeb917589e6abd57498880876
|
File details
Details for the file valkey_glide-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f662285146529328e2b5a0a7047f699339b4e0d250eb1f252b15c9befa0dea05
|
|
MD5 |
f9b968663180137d2d266926ede09f75
|
|
BLAKE2b-256 |
980e91335c13dc8e7ceb95063234c16010b46e2dd874a2edef62dea155081647
|
File details
Details for the file valkey_glide-2.0.1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
21598f49313912ad27dc700d7b13a3b4bfed7ed9dffad207235cac7d218f4966
|
|
MD5 |
5a7f84963ac569103fab35a516ccb18b
|
|
BLAKE2b-256 |
ca396e9f83970590d17d19f596e1b3a366d39077624888e3dd709309efc67690
|
File details
Details for the file valkey_glide-2.0.1-cp312-cp312-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp312-cp312-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.12, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f55ec8968b0fde364a5b3399be34b89dcb9068994b5cd384e20db0773ad12723
|
|
MD5 |
6c28c9bf6e5201b6752eb8f373f920a5
|
|
BLAKE2b-256 |
fc6d1e7b432cbc02fe63e7496b984b7fc830fb7de388c877b237e0579a6300fc
|
File details
Details for the file valkey_glide-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
79039a9dc23bb074680f171c12b36b3322357a0af85125534993e81a619dce21
|
|
MD5 |
3807af12df8abf7a850a4154e14e9962
|
|
BLAKE2b-256 |
3a31851a1a734fe5da5d520106fcfd824e4da09c3be8a0a2123bb4b1980db1ea
|
File details
Details for the file valkey_glide-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
82c5f33598e50bcfec6fc924864931f3c6e30cd327a9c9562e1c7ac4e17e79fd
|
|
MD5 |
416bc5a34962c18f2a90775cd55aca5e
|
|
BLAKE2b-256 |
acfb2f5cec71ae51c464502a892b6825426cd74a2c325827981726e557926c94
|
File details
Details for the file valkey_glide-2.0.1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0f1c0fe003026d8ae172369e0eb2337cbff16f41d4c085332487d6ca2e5282e6
|
|
MD5 |
5c3c71b947c7663a90996834cb714d69
|
|
BLAKE2b-256 |
c604986188e407231a5f0bfaf31f31b68e3605ab66f4f4c656adfbb0345669d9
|
File details
Details for the file valkey_glide-2.0.1-cp311-cp311-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp311-cp311-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.11, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6379582d6fbd817697fb119274e37d397db450103cd15d4bd71e555e6d88fb6b
|
|
MD5 |
f4cb50d2242d9cf510199521aa708fde
|
|
BLAKE2b-256 |
b5dd0dd6614e09123a5bd7273bf1159c958d1ea65e7decc2190b225d212e0cb9
|
File details
Details for the file valkey_glide-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4427e7b4d54c9de289a35032c19d5956f94376f5d4335206c5ac4524cbd1c64a
|
|
MD5 |
60d121ab4903cfee12512eee6c78281a
|
|
BLAKE2b-256 |
3b69dd5c350ce4d2cadde0d83beb601f05e1e62622895f268135e252e8bfc307
|
File details
Details for the file valkey_glide-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1baaf14d09d464ae645be5bdb5dc6b8a38b7eacf22f9dcb2907200c74fbdcdd3
|
|
MD5 |
dc3440ac6b5717d39db79b34e577944a
|
|
BLAKE2b-256 |
53586440e66bde8963d86bc3c44d88f993059f2a9d7ebdb3256a695d035cff50
|
File details
Details for the file valkey_glide-2.0.1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6b83d34e2e723e97c41682479b0dce5882069066e808316292b363855992b449
|
|
MD5 |
4f7a94de1c7b9ab4f11289e603e72332
|
|
BLAKE2b-256 |
0fc420b66dced96bdca81aa294b39bc03018ed22628c52076752e8d1d3540a7d
|
File details
Details for the file valkey_glide-2.0.1-cp310-cp310-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b3307934b76557b18ac559f327592cc09fc895fc653ba46010dd6d70fb6239dc
|
|
MD5 |
4410fdbc02f76eff6c09e6571afe36ec
|
|
BLAKE2b-256 |
44a3bf5ff3841538d0bb337371e073dc2c0e93f748f7f8b10a44806f36ab5fa1
|
File details
Details for the file valkey_glide-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
81b04b4eac4ba033d7a3932a3fc0f421c2c792ee8d8e64653963ad8c2901d2e7
|
|
MD5 |
a9e6f2d4eaa13ee47311a8584225f40a
|
|
BLAKE2b-256 |
6d713e7d2f6b5ecefa3e66b09caea2741326ed332f66005c7c2ddd5030c9beee
|
File details
Details for the file valkey_glide-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4d6d23bfcc09234509de498c358045dade5470edc5489b60603abaf3d24ab2d4
|
|
MD5 |
b2f4e14b63025deae36827f6440047b0
|
|
BLAKE2b-256 |
d92fadc88333c162243fd78a77f9b3e31f4386ed3498838dc633d1b2747b99c0
|
File details
Details for the file valkey_glide-2.0.1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ac5ddac6369f73e810f3aff0b730e5b62de54894bef8bbfa33ed517bb3040b43
|
|
MD5 |
d68ee3cb484c3ddd08c34afe5eaee4f1
|
|
BLAKE2b-256 |
a8dda1afb1296a2edb017cee3cac359097af79b8ff1d5c385e3618e6bf193647
|
File details
Details for the file valkey_glide-2.0.1-cp39-cp39-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: valkey_glide-2.0.1-cp39-cp39-macosx_10_7_x86_64.whl
- Upload date:
- Size: 5.1 MB
- Tags: CPython 3.9, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e71d2c4337fc1cac8ace180deae7806c49f818c059fd3f7032c15f3bf6e46ddc
|
|
MD5 |
0b9111cb121dc22090f503944137afeb
|
|
BLAKE2b-256 |
4a1dbc1abc8de70b57218466d0097ef8a71b6d86d8d49fd2d5e0073fa42990b2
|