valkey-glide


Namevalkey-glide JSON
Version 1.3.0 PyPI version JSON
download
home_pageNone
SummaryAn open source Valkey client library that supports Valkey and Redis open source 6.2, 7.0, 7.2 and 8.0.
upload_time2025-02-15 22:27:48
maintainerNone
docs_urlNone
authorValkey GLIDE Maintainers
requires_python>=3.9
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Valkey GLIDE

Valkey General Language Independent Driver for the Enterprise (GLIDE), is an open-source Valkey client library. Valkey GLIDE is one of the official client libraries for Valkey, and it supports all Valkey commands. Valkey GLIDE supports Valkey 7.2 and above, and Redis open-source 6.2, 7.0 and 7.2. Application programmers use Valkey GLIDE to safely and reliably connect their applications to Valkey- and Redis OSS- compatible services. Valkey GLIDE is designed for reliability, optimized performance, and high-availability, for Valkey and Redis OSS based applications. It is sponsored and supported by AWS, and is pre-configured with best practices learned from over a decade of operating Redis OSS-compatible services used by hundreds of thousands of customers. To help ensure consistency in application development and operations, Valkey GLIDE is implemented using a core driver framework, written in Rust, with language specific extensions. This design ensures consistency in features across languages and reduces overall complexity.

## Supported Engine Versions

Refer to the [Supported Engine Versions table](https://github.com/valkey-io/valkey-glide/blob/main/README.md#supported-engine-versions) for details.

# Getting Started - Python Wrapper

## System Requirements

The release of Valkey GLIDE was tested on the following platforms:

Linux:

-   Ubuntu 22.04.1 (x86_64 and aarch64)
-   Amazon Linux 2023 (AL2023) (x86_64)

macOS:

-   macOS 14.7 (Apple silicon/aarch_64)

## Python Supported Versions

| Python Version |
|----------------|
| 3.9            |
| 3.10           |
| 3.11           |
| 3.12           |
| 3.13           |

## Installation and Setup

### Installing via Package Manager (pip)

To install Valkey GLIDE using `pip`, follow these steps:

1. Open your terminal.
2. Execute the command below:
    ```bash
    $ pip install valkey-glide
    ```
3. After installation, confirm the client is accessible by running:
    ```bash
    $ python3
    >>> import glide
    ```

## Basic Examples

#### Cluster Mode:

```python:
>>> import asyncio
>>> from glide import GlideClusterClientConfiguration, NodeAddress, GlideClusterClient
>>> async def test_cluster_client():
...     addresses = [NodeAddress("address.example.com", 6379)]
...     config = GlideClusterClientConfiguration(addresses)
...     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:

```python:
>>> 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)
...     ]
...     config = GlideClientConfiguration(addresses)
...     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](https://github.com/valkey-io/valkey-glide/blob/main/examples/python/cluster_example.py) and the [standalone example](https://github.com/valkey-io/valkey-glide/blob/main/examples/python/standalone_example.py).

## Documentation

Visit our [wiki](https://github.com/valkey-io/valkey-glide/wiki/Python-wrapper) for examples and further details on TLS, Read strategy, Timeouts and various other configurations.

### Building & Testing

Development instructions for local building & testing the package are in the [DEVELOPER.md](https://github.com/valkey-io/valkey-glide/blob/main/python/DEVELOPER.md#build-from-source) file.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "valkey-glide",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Valkey GLIDE Maintainers",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "# Valkey GLIDE\n\nValkey General Language Independent Driver for the Enterprise (GLIDE), is an open-source Valkey client library. Valkey GLIDE is one of the official client libraries for Valkey, and it supports all Valkey commands. Valkey GLIDE supports Valkey 7.2 and above, and Redis open-source 6.2, 7.0 and 7.2. Application programmers use Valkey GLIDE to safely and reliably connect their applications to Valkey- and Redis OSS- compatible services. Valkey GLIDE is designed for reliability, optimized performance, and high-availability, for Valkey and Redis OSS based applications. It is sponsored and supported by AWS, and is pre-configured with best practices learned from over a decade of operating Redis OSS-compatible services used by hundreds of thousands of customers. To help ensure consistency in application development and operations, Valkey GLIDE is implemented using a core driver framework, written in Rust, with language specific extensions. This design ensures consistency in features across languages and reduces overall complexity.\n\n## Supported Engine Versions\n\nRefer to the [Supported Engine Versions table](https://github.com/valkey-io/valkey-glide/blob/main/README.md#supported-engine-versions) for details.\n\n# Getting Started - Python Wrapper\n\n## System Requirements\n\nThe release of Valkey GLIDE was tested on the following platforms:\n\nLinux:\n\n-   Ubuntu 22.04.1 (x86_64 and aarch64)\n-   Amazon Linux 2023 (AL2023) (x86_64)\n\nmacOS:\n\n-   macOS 14.7 (Apple silicon/aarch_64)\n\n## Python Supported Versions\n\n| Python Version |\n|----------------|\n| 3.9            |\n| 3.10           |\n| 3.11           |\n| 3.12           |\n| 3.13           |\n\n## Installation and Setup\n\n### Installing via Package Manager (pip)\n\nTo install Valkey GLIDE using `pip`, follow these steps:\n\n1. Open your terminal.\n2. Execute the command below:\n    ```bash\n    $ pip install valkey-glide\n    ```\n3. After installation, confirm the client is accessible by running:\n    ```bash\n    $ python3\n    >>> import glide\n    ```\n\n## Basic Examples\n\n#### Cluster Mode:\n\n```python:\n>>> import asyncio\n>>> from glide import GlideClusterClientConfiguration, NodeAddress, GlideClusterClient\n>>> async def test_cluster_client():\n...     addresses = [NodeAddress(\"address.example.com\", 6379)]\n...     config = GlideClusterClientConfiguration(addresses)\n...     client = await GlideClusterClient.create(config)\n...     set_result = await client.set(\"foo\", \"bar\")\n...     print(f\"Set response is {set_result}\")\n...     get_result = await client.get(\"foo\")\n...     print(f\"Get response is {get_result}\")\n... \n>>> asyncio.run(test_cluster_client())\nSet response is OK\nGet response is bar\n```\n\n#### Standalone Mode:\n\n```python:\n>>> import asyncio\n>>> from glide import GlideClientConfiguration, NodeAddress, GlideClient\n>>> async def test_standalone_client():\n...     addresses = [\n...             NodeAddress(\"server_primary.example.com\", 6379),\n...             NodeAddress(\"server_replica.example.com\", 6379)\n...     ]\n...     config = GlideClientConfiguration(addresses)\n...     client = await GlideClient.create(config)\n...     set_result = await client.set(\"foo\", \"bar\")\n...     print(f\"Set response is {set_result}\")\n...     get_result = await client.get(\"foo\")\n...     print(f\"Get response is {get_result}\")\n... \n>>> asyncio.run(test_standalone_client())\nSet response is OK\nGet response is bar\n```\n\nFor complete examples with error handling, please refer to the [cluster example](https://github.com/valkey-io/valkey-glide/blob/main/examples/python/cluster_example.py) and the [standalone example](https://github.com/valkey-io/valkey-glide/blob/main/examples/python/standalone_example.py).\n\n## Documentation\n\nVisit our [wiki](https://github.com/valkey-io/valkey-glide/wiki/Python-wrapper) for examples and further details on TLS, Read strategy, Timeouts and various other configurations.\n\n### Building & Testing\n\nDevelopment instructions for local building & testing the package are in the [DEVELOPER.md](https://github.com/valkey-io/valkey-glide/blob/main/python/DEVELOPER.md#build-from-source) file.\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "An open source Valkey client library that supports Valkey and Redis open source 6.2, 7.0, 7.2 and 8.0.",
    "version": "1.3.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac897cbf5cea996d0c7d9c6b955dc295b622a5d7fb4ab84d4d5697953e625adf",
                "md5": "e68898f516e167ee9c413845efd35c0c",
                "sha256": "fc397b57741907f7acc056ef28f9db3c6344d2cfb41adc03838b6802a76d187a"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e68898f516e167ee9c413845efd35c0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2166092,
            "upload_time": "2025-02-15T22:27:48",
            "upload_time_iso_8601": "2025-02-15T22:27:48.830455Z",
            "url": "https://files.pythonhosted.org/packages/ac/89/7cbf5cea996d0c7d9c6b955dc295b622a5d7fb4ab84d4d5697953e625adf/valkey_glide-1.3.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36c6e881ab1ca188716c9f68fb6c139a11ad58e952ee9b5a0be025025594aaad",
                "md5": "e656902f4b3bca7c0a6413cdae4bab36",
                "sha256": "267ae2e51d219834e0f93bce4c9b931b654f9f7bc232d953b6e643973687afe5"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e656902f4b3bca7c0a6413cdae4bab36",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2224369,
            "upload_time": "2025-02-15T22:27:51",
            "upload_time_iso_8601": "2025-02-15T22:27:51.510054Z",
            "url": "https://files.pythonhosted.org/packages/36/c6/e881ab1ca188716c9f68fb6c139a11ad58e952ee9b5a0be025025594aaad/valkey_glide-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5749a29591072c29a71e4fba520aacb04b663e9f45bd16cdd0bbd64409028f59",
                "md5": "118d17dceb4143086be5ea8d8ed634be",
                "sha256": "02cd01fe265e04c3b0ca0cd9fd2e70081670814bf4497ac7d4ccf684efe777ef"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "118d17dceb4143086be5ea8d8ed634be",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 2334567,
            "upload_time": "2025-02-15T22:27:53",
            "upload_time_iso_8601": "2025-02-15T22:27:53.006314Z",
            "url": "https://files.pythonhosted.org/packages/57/49/a29591072c29a71e4fba520aacb04b663e9f45bd16cdd0bbd64409028f59/valkey_glide-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dde50c9f6394131f3408dee5a1446d275398f63f4fe25f09f21b77aca6704b9d",
                "md5": "ff36577a0556e5fdeaa7c0bc710d9fd8",
                "sha256": "182fa0724719ba326e71caf5981df67412f1f84e3973da7d6746722a7c4e7786"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ff36577a0556e5fdeaa7c0bc710d9fd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2167852,
            "upload_time": "2025-02-15T22:27:55",
            "upload_time_iso_8601": "2025-02-15T22:27:55.081719Z",
            "url": "https://files.pythonhosted.org/packages/dd/e5/0c9f6394131f3408dee5a1446d275398f63f4fe25f09f21b77aca6704b9d/valkey_glide-1.3.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d180be8a914db37600b610cbe3201c305962331b890efd1a6a0413b5fb6936f",
                "md5": "1092364a270f715e7ec0c22972ff8598",
                "sha256": "5e8ab1bec4b1ed7b12bc91002485db6f085990e2bca85b7d1c5d2729ea2b4de8"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1092364a270f715e7ec0c22972ff8598",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2223473,
            "upload_time": "2025-02-15T22:27:57",
            "upload_time_iso_8601": "2025-02-15T22:27:57.001020Z",
            "url": "https://files.pythonhosted.org/packages/4d/18/0be8a914db37600b610cbe3201c305962331b890efd1a6a0413b5fb6936f/valkey_glide-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a067727dd1a7106b375ffd0e79e45de7315600cdf65b2bc6442cfb023951c3c3",
                "md5": "c247fa57711f0fdb6be3c49090bb9913",
                "sha256": "9f588b359bffe090613812cf21d9cbed4590a7cc70b2cdc5f8e9dd70ead888a2"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c247fa57711f0fdb6be3c49090bb9913",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 2333619,
            "upload_time": "2025-02-15T22:27:58",
            "upload_time_iso_8601": "2025-02-15T22:27:58.504908Z",
            "url": "https://files.pythonhosted.org/packages/a0/67/727dd1a7106b375ffd0e79e45de7315600cdf65b2bc6442cfb023951c3c3/valkey_glide-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "642bb2b26f32b9ad0e27204e4db93d48f3e3460a226511c7eedafa41983f63bc",
                "md5": "3efd12f7730ae1ee2aaae6abd82ca061",
                "sha256": "eff6caae3345f2d3c82187232791bc237b05505eebe385d6ba37ca23e88ea9fe"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3efd12f7730ae1ee2aaae6abd82ca061",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2167515,
            "upload_time": "2025-02-15T22:28:00",
            "upload_time_iso_8601": "2025-02-15T22:28:00.007749Z",
            "url": "https://files.pythonhosted.org/packages/64/2b/b2b26f32b9ad0e27204e4db93d48f3e3460a226511c7eedafa41983f63bc/valkey_glide-1.3.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc42309c3dbdf74f2655bd36bfbce42094799706d6c5c26dcc632e62a906b3bb",
                "md5": "9346df7deb29d5557b246bd9fa06cda1",
                "sha256": "1696d2a23053115d7b7cb7bdfa2c099053bb4933999a953a5dabdd511d4de643"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9346df7deb29d5557b246bd9fa06cda1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2220255,
            "upload_time": "2025-02-15T22:28:01",
            "upload_time_iso_8601": "2025-02-15T22:28:01.932210Z",
            "url": "https://files.pythonhosted.org/packages/dc/42/309c3dbdf74f2655bd36bfbce42094799706d6c5c26dcc632e62a906b3bb/valkey_glide-1.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66b0b822c52f1b2a3905e0584d67d699611ea76b230e20258d8ef9bb6b1b3d3c",
                "md5": "0e41a1d0138644d1d767ff8d6fb3beb2",
                "sha256": "3f13006207d4b4df970238c5c9a9a5b78af7e863d8a8ec3701f673a685a2c1f7"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e41a1d0138644d1d767ff8d6fb3beb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 2330532,
            "upload_time": "2025-02-15T22:28:03",
            "upload_time_iso_8601": "2025-02-15T22:28:03.508056Z",
            "url": "https://files.pythonhosted.org/packages/66/b0/b822c52f1b2a3905e0584d67d699611ea76b230e20258d8ef9bb6b1b3d3c/valkey_glide-1.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf1ddab243773eb7d0f5450ec0379013544051ab913f62e74ae7615086c6ec2d",
                "md5": "41e730a9604cb859f653dcbb0df8c760",
                "sha256": "992ed37fefb34570e3cde6783243dead77db5e48ddb16609a7e9c484b9040df2"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "41e730a9604cb859f653dcbb0df8c760",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2167414,
            "upload_time": "2025-02-15T22:28:04",
            "upload_time_iso_8601": "2025-02-15T22:28:04.997649Z",
            "url": "https://files.pythonhosted.org/packages/bf/1d/dab243773eb7d0f5450ec0379013544051ab913f62e74ae7615086c6ec2d/valkey_glide-1.3.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5255b5e8a621fe24274fc731c5f63f0a628d0ee69b0a13e387b0ac3683f2ed9",
                "md5": "d7d7405088757b5cf33f4938a50ecf3d",
                "sha256": "3dcf7747c3cfb8d587a43bb1bf6f0e6699cd6eea21213f5fe5733a8ecc423878"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7d7405088757b5cf33f4938a50ecf3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2220155,
            "upload_time": "2025-02-15T22:28:07",
            "upload_time_iso_8601": "2025-02-15T22:28:07.123536Z",
            "url": "https://files.pythonhosted.org/packages/b5/25/5b5e8a621fe24274fc731c5f63f0a628d0ee69b0a13e387b0ac3683f2ed9/valkey_glide-1.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b11e3bb23b9b062c9093e18dafbded2731b5e5d736f2f54a04856766003132a",
                "md5": "c4604b853f81f9e6c2cc6d4590339778",
                "sha256": "8156683a0c87bbbf8f57765b8787fef48b11204e1896ad9750081b34dd9e66d7"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4604b853f81f9e6c2cc6d4590339778",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 2330441,
            "upload_time": "2025-02-15T22:28:09",
            "upload_time_iso_8601": "2025-02-15T22:28:09.207296Z",
            "url": "https://files.pythonhosted.org/packages/4b/11/e3bb23b9b062c9093e18dafbded2731b5e5d736f2f54a04856766003132a/valkey_glide-1.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d16e15d095eeb710f0c15924f5287230c7cde4d6b7a5584db76e6e23676b5c90",
                "md5": "75c2d12a5e43cac2e58f85923f67a8df",
                "sha256": "8f29b8a4c496ab96e30ffb2805491252cbec8ba1e87f0f5fbfd1704cd5caeab4"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "75c2d12a5e43cac2e58f85923f67a8df",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2167061,
            "upload_time": "2025-02-15T22:28:10",
            "upload_time_iso_8601": "2025-02-15T22:28:10.628913Z",
            "url": "https://files.pythonhosted.org/packages/d1/6e/15d095eeb710f0c15924f5287230c7cde4d6b7a5584db76e6e23676b5c90/valkey_glide-1.3.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a062e441732b07b0dd21a474480d6f080a91672d4d64f98e58768415f85ac739",
                "md5": "91570b7896cc0925bb4de6b37932ecb0",
                "sha256": "ff310af992f60b232d5192aa728e7da039f94d3a5f0ed6091cde24360dfa3306"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91570b7896cc0925bb4de6b37932ecb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2224585,
            "upload_time": "2025-02-15T22:28:12",
            "upload_time_iso_8601": "2025-02-15T22:28:12.106932Z",
            "url": "https://files.pythonhosted.org/packages/a0/62/e441732b07b0dd21a474480d6f080a91672d4d64f98e58768415f85ac739/valkey_glide-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92ef33c434d43f5b1fd265839a25d238789ba4f0f1e6ed89f6029320334b91f7",
                "md5": "2c5f9847a6d069f776613667b9a8f72f",
                "sha256": "26a0ce28ec86a39cf9bf0e03fccc5dc5e832db7ad5d6614bdfd53c9c0a20b9c2"
            },
            "downloads": -1,
            "filename": "valkey_glide-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c5f9847a6d069f776613667b9a8f72f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 2335527,
            "upload_time": "2025-02-15T22:28:14",
            "upload_time_iso_8601": "2025-02-15T22:28:14.208915Z",
            "url": "https://files.pythonhosted.org/packages/92/ef/33c434d43f5b1fd265839a25d238789ba4f0f1e6ed89f6029320334b91f7/valkey_glide-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-15 22:27:48",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "valkey-glide"
}
        
Elapsed time: 0.49436s