glide-for-redis


Nameglide-for-redis JSON
Version 0.4.1 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-06-02 16:09:16
maintainerNone
docs_urlNone
authorAmazon Web Services
requires_python>=3.8
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # GLIDE for Redis

General Language Independent Driver for the Enterprise (GLIDE) for Redis, is an AWS-sponsored, open-source Redis client. GLIDE for Redis works with any Redis distribution that adheres to the Redis Serialization Protocol (RESP) specification, including open-source Redis, Amazon ElastiCache for Redis, and Amazon MemoryDB for Redis.
Strategic, mission-critical Redis-based applications have requirements for security, optimized performance, minimal downtime, and observability. GLIDE for Redis is designed to provide a client experience that helps meet these objectives. It is sponsored and supported by AWS, and comes pre-configured with best practices learned from over a decade of operating Redis-compatible services used by hundreds of thousands of customers. To help ensure consistency in development and operations, GLIDE for Redis is implemented using a core driver framework, written in Rust, with extensions made available for each supported programming language. This design ensures that updates easily propagate to each language and reduces overall complexity. In this Preview release, GLIDE for Redis is available for Python and Javascript (Node.js), with support for Java actively under development.

## Supported Redis Versions

GLIDE for Redis is API-compatible with open source Redis version 6 and 7.

## Current Status

We've made GLIDE for Redis an open-source project, and are releasing it in Preview to the community to gather feedback, and actively collaborate on the project roadmap. We welcome questions and contributions from all Redis stakeholders.
This preview release is recommended for testing purposes only.

# Getting Started - Python Wrapper

## System Requirements

The beta release of GLIDE for Redis was tested on Intel x86_64 using Ubuntu 22.04.1, Amazon Linux 2023 (AL2023), and macOS 12.7.

## Python supported version

Python 3.8 or higher.

## Installation and Setup

### Installing via Package Manager (pip)

To install GLIDE for Redis using `pip`, follow these steps:

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

## Basic Examples

#### Cluster Redis:

```python:
>>> import asyncio
>>> from glide import ClusterClientConfiguration, NodeAddress, RedisClusterClient
>>> async def test_cluster_client():
...     addresses = [NodeAddress("redis.example.com", 6379)]
...     config = ClusterClientConfiguration(addresses)
...     client = await RedisClusterClient.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 Redis:

```python:
>>> import asyncio
>>> from glide import RedisClientConfiguration, NodeAddress, RedisClient
>>> async def test_standalone_client():
...     addresses = [
...             NodeAddress("redis_primary.example.com", 6379),
...             NodeAddress("redis_replica.example.com", 6379)
...     ]
...     config = RedisClientConfiguration(addresses)
...     client = await RedisClient.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
```

## Documentation

Visit our [wiki](https://github.com/aws/glide-for-redis/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/aws/glide-for-redis/blob/main/python/DEVELOPER.md#build-from-source) file.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "glide-for-redis",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "Amazon Web Services",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "# GLIDE for Redis\n\nGeneral Language Independent Driver for the Enterprise (GLIDE) for Redis, is an AWS-sponsored, open-source Redis client. GLIDE for Redis works with any Redis distribution that adheres to the Redis Serialization Protocol (RESP) specification, including open-source Redis, Amazon ElastiCache for Redis, and Amazon MemoryDB for Redis.\nStrategic, mission-critical Redis-based applications have requirements for security, optimized performance, minimal downtime, and observability. GLIDE for Redis is designed to provide a client experience that helps meet these objectives. It is sponsored and supported by AWS, and comes pre-configured with best practices learned from over a decade of operating Redis-compatible services used by hundreds of thousands of customers. To help ensure consistency in development and operations, GLIDE for Redis is implemented using a core driver framework, written in Rust, with extensions made available for each supported programming language. This design ensures that updates easily propagate to each language and reduces overall complexity. In this Preview release, GLIDE for Redis is available for Python and Javascript (Node.js), with support for Java actively under development.\n\n## Supported Redis Versions\n\nGLIDE for Redis is API-compatible with open source Redis version 6 and 7.\n\n## Current Status\n\nWe've made GLIDE for Redis an open-source project, and are releasing it in Preview to the community to gather feedback, and actively collaborate on the project roadmap. We welcome questions and contributions from all Redis stakeholders.\nThis preview release is recommended for testing purposes only.\n\n# Getting Started - Python Wrapper\n\n## System Requirements\n\nThe beta release of GLIDE for Redis was tested on Intel x86_64 using Ubuntu 22.04.1, Amazon Linux 2023 (AL2023), and macOS 12.7.\n\n## Python supported version\n\nPython 3.8 or higher.\n\n## Installation and Setup\n\n### Installing via Package Manager (pip)\n\nTo install GLIDE for Redis using `pip`, follow these steps:\n\n1. Open your terminal.\n2. Execute the command below:\n    ```bash\n    $ pip install glide-for-redis\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 Redis:\n\n```python:\n>>> import asyncio\n>>> from glide import ClusterClientConfiguration, NodeAddress, RedisClusterClient\n>>> async def test_cluster_client():\n...     addresses = [NodeAddress(\"redis.example.com\", 6379)]\n...     config = ClusterClientConfiguration(addresses)\n...     client = await RedisClusterClient.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 Redis:\n\n```python:\n>>> import asyncio\n>>> from glide import RedisClientConfiguration, NodeAddress, RedisClient\n>>> async def test_standalone_client():\n...     addresses = [\n...             NodeAddress(\"redis_primary.example.com\", 6379),\n...             NodeAddress(\"redis_replica.example.com\", 6379)\n...     ]\n...     config = RedisClientConfiguration(addresses)\n...     client = await RedisClient.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\n## Documentation\n\nVisit our [wiki](https://github.com/aws/glide-for-redis/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/aws/glide-for-redis/blob/main/python/DEVELOPER.md#build-from-source) file.\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": null,
    "version": "0.4.1",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77a8a9f242ddfb88691fd72f17bf52d9b3bb0ad355cd8bfa0d0b5660d5f5eafb",
                "md5": "f0ffc2789b193bc0e68fe308707074df",
                "sha256": "bdf008a0d78cc585fda70a6784b52c4b139c261cf43386f7ea6d13a7316d5946"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f0ffc2789b193bc0e68fe308707074df",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1838635,
            "upload_time": "2024-06-02T16:09:16",
            "upload_time_iso_8601": "2024-06-02T16:09:16.362239Z",
            "url": "https://files.pythonhosted.org/packages/77/a8/a9f242ddfb88691fd72f17bf52d9b3bb0ad355cd8bfa0d0b5660d5f5eafb/glide_for_redis-0.4.1-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "29e7f1637beaf2775522802f8b132c839de52497940b74f3c8ca2e3d1f0223c0",
                "md5": "04223d528998e3e51236358cb21a647e",
                "sha256": "7567ee484e6c21947d09af84b54cbcd0779b4f6d1a5c57646bdd077f6c6c186e"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "04223d528998e3e51236358cb21a647e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1696320,
            "upload_time": "2024-06-02T16:09:18",
            "upload_time_iso_8601": "2024-06-02T16:09:18.597883Z",
            "url": "https://files.pythonhosted.org/packages/29/e7/f1637beaf2775522802f8b132c839de52497940b74f3c8ca2e3d1f0223c0/glide_for_redis-0.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08ad9a3f2724dec6edcd886bc08318d0737655ecea2af75b2853cfb7d8d1d375",
                "md5": "691a56f52749ebe87786b1ada4abcfa2",
                "sha256": "7576d16c62ec9e5a898c1a93f7cc1602e547eed05710425fda1fc30b2269f6a4"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "691a56f52749ebe87786b1ada4abcfa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1875319,
            "upload_time": "2024-06-02T16:09:20",
            "upload_time_iso_8601": "2024-06-02T16:09:20.517747Z",
            "url": "https://files.pythonhosted.org/packages/08/ad/9a3f2724dec6edcd886bc08318d0737655ecea2af75b2853cfb7d8d1d375/glide_for_redis-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57b18861572e1c8555c3f2acba52b7792978f7cff5c05a3f1f2fcd95c9483c31",
                "md5": "c3dfdb18d67e5290fe29a1328d1a0ef1",
                "sha256": "d3f912d1fa66de400aed6eddc98e6d0fd10f7745e362c925003a86853bf379b1"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c3dfdb18d67e5290fe29a1328d1a0ef1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1767460,
            "upload_time": "2024-06-02T16:09:22",
            "upload_time_iso_8601": "2024-06-02T16:09:22.407663Z",
            "url": "https://files.pythonhosted.org/packages/57/b1/8861572e1c8555c3f2acba52b7792978f7cff5c05a3f1f2fcd95c9483c31/glide_for_redis-0.4.1-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a466ad762b54f5709fe841993f47d47e8c5595ccd451af0e7b444a590d92a89b",
                "md5": "3edc297a8051d4f605cca80aa792e59c",
                "sha256": "39f1dd917bdf9c0845dc8ebe97ea0fef503b67fa04f258ae1bb73f7927b61e14"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3edc297a8051d4f605cca80aa792e59c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1839531,
            "upload_time": "2024-06-02T16:09:23",
            "upload_time_iso_8601": "2024-06-02T16:09:23.764726Z",
            "url": "https://files.pythonhosted.org/packages/a4/66/ad762b54f5709fe841993f47d47e8c5595ccd451af0e7b444a590d92a89b/glide_for_redis-0.4.1-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaac25753f9d0db223231d2b7590bc4821bc8ae5bd50396702d02d8a1aeef5a6",
                "md5": "e0a5e0dcd22946ac2107c72ce2c699b1",
                "sha256": "2a019746340bb173bb070ed621eea797ca57d95e4281c1ebc36539bf0bbc818f"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e0a5e0dcd22946ac2107c72ce2c699b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1695235,
            "upload_time": "2024-06-02T16:09:25",
            "upload_time_iso_8601": "2024-06-02T16:09:25.562170Z",
            "url": "https://files.pythonhosted.org/packages/ea/ac/25753f9d0db223231d2b7590bc4821bc8ae5bd50396702d02d8a1aeef5a6/glide_for_redis-0.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3068dd3ea4fd5c3f236114f757b07fdb24f091d841d06b842260ef16a24db5ef",
                "md5": "c6f7d41f682dea75dedab1890d8994ad",
                "sha256": "a0012b9f7913e297aad3139309a75b40d98fffb442bd6c15356eec0a604b1f2d"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c6f7d41f682dea75dedab1890d8994ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1875176,
            "upload_time": "2024-06-02T16:09:27",
            "upload_time_iso_8601": "2024-06-02T16:09:27.041238Z",
            "url": "https://files.pythonhosted.org/packages/30/68/dd3ea4fd5c3f236114f757b07fdb24f091d841d06b842260ef16a24db5ef/glide_for_redis-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "808a88991141a06f80ab38d4c557e7a4cbae32d84c37d7a639f88656551c673b",
                "md5": "72e3a1050e2a2a2acfd40ee6fa76fcb3",
                "sha256": "175057f379674d5e887d2ce72f5fc4c327b460c29ca5df6b5af47119c14e52b8"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "72e3a1050e2a2a2acfd40ee6fa76fcb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1767058,
            "upload_time": "2024-06-02T16:09:29",
            "upload_time_iso_8601": "2024-06-02T16:09:29.016967Z",
            "url": "https://files.pythonhosted.org/packages/80/8a/88991141a06f80ab38d4c557e7a4cbae32d84c37d7a639f88656551c673b/glide_for_redis-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8862f46b8cad242eb4f94500795671d0e3f09048f3b4efdc62a9e0524f6f9771",
                "md5": "5b25742bc2ce43af6fcda5c016f35564",
                "sha256": "178038d0d00b6d0613868aef8bc3b7d1544276f28261bbadc33a37ad7b12862c"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp312-cp312-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b25742bc2ce43af6fcda5c016f35564",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1836433,
            "upload_time": "2024-06-02T16:09:30",
            "upload_time_iso_8601": "2024-06-02T16:09:30.579715Z",
            "url": "https://files.pythonhosted.org/packages/88/62/f46b8cad242eb4f94500795671d0e3f09048f3b4efdc62a9e0524f6f9771/glide_for_redis-0.4.1-cp312-cp312-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5bf9d90a8e3c16507e802ddad299a7382e000f98ad0d15f8057c39448c64b44",
                "md5": "ddd089ec8fbb3bf59896d2cce398eb07",
                "sha256": "c561f3b10b9ba5602a9f931abca415f951362454e172676ad5481dd284994d0b"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ddd089ec8fbb3bf59896d2cce398eb07",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1691984,
            "upload_time": "2024-06-02T16:09:32",
            "upload_time_iso_8601": "2024-06-02T16:09:32.505577Z",
            "url": "https://files.pythonhosted.org/packages/f5/bf/9d90a8e3c16507e802ddad299a7382e000f98ad0d15f8057c39448c64b44/glide_for_redis-0.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c5ee43e076343a36cac0c00824786120a24eafe17d86a036fd7607ccacb24dad",
                "md5": "2142e19117cf7987891bb15d891313b0",
                "sha256": "9094baf446eeaa916577c7b079c65a8b52440f451b890eac22238a79643a59e7"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2142e19117cf7987891bb15d891313b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1872185,
            "upload_time": "2024-06-02T16:09:34",
            "upload_time_iso_8601": "2024-06-02T16:09:34.726671Z",
            "url": "https://files.pythonhosted.org/packages/c5/ee/43e076343a36cac0c00824786120a24eafe17d86a036fd7607ccacb24dad/glide_for_redis-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22c06bbb61f86fcf0a48b3492c243a1c094bfac31f5484e525989dfdb0121135",
                "md5": "4d98b21a73ff0b68400c94429bf51429",
                "sha256": "f4889d5b32b2d913f1621acce2be782b6c5ab45e9b27cb5b68487f04c69eeac8"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4d98b21a73ff0b68400c94429bf51429",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1764973,
            "upload_time": "2024-06-02T16:09:36",
            "upload_time_iso_8601": "2024-06-02T16:09:36.652357Z",
            "url": "https://files.pythonhosted.org/packages/22/c0/6bbb61f86fcf0a48b3492c243a1c094bfac31f5484e525989dfdb0121135/glide_for_redis-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e71fb254c20b0c7eb5f97cd5eff00e6523013a451ae10e163e71bae5334a9b18",
                "md5": "5f3cc53fba32869f1a06861cfcbdd9ed",
                "sha256": "c98155d6edc20374a03ca5faa1488b793e7291786930904866d993dece3a6f42"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f3cc53fba32869f1a06861cfcbdd9ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1839127,
            "upload_time": "2024-06-02T16:09:38",
            "upload_time_iso_8601": "2024-06-02T16:09:38.593970Z",
            "url": "https://files.pythonhosted.org/packages/e7/1f/b254c20b0c7eb5f97cd5eff00e6523013a451ae10e163e71bae5334a9b18/glide_for_redis-0.4.1-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "680c4217589e30a2ede39840bd34f967f5191957da6f285c38cdf98f2a154441",
                "md5": "4e5c1b8a1ef95c0b224417ef31381b44",
                "sha256": "7950d285a5c471119dc3b28aadd2d1338ba958ae0437991e1f493854c696194e"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4e5c1b8a1ef95c0b224417ef31381b44",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1696341,
            "upload_time": "2024-06-02T16:09:40",
            "upload_time_iso_8601": "2024-06-02T16:09:40.370532Z",
            "url": "https://files.pythonhosted.org/packages/68/0c/4217589e30a2ede39840bd34f967f5191957da6f285c38cdf98f2a154441/glide_for_redis-0.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "089efd4d5e394fed3295fccded6fe2f22ae3a3d585e0167c619feb1c9527d8be",
                "md5": "37ed322fd225acb6a2eb98142d427e62",
                "sha256": "a9d1282dc78ad48fc56a52654661b7dd7cd5978474f00c924d924f1dc119692d"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37ed322fd225acb6a2eb98142d427e62",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1875720,
            "upload_time": "2024-06-02T16:09:42",
            "upload_time_iso_8601": "2024-06-02T16:09:42.243580Z",
            "url": "https://files.pythonhosted.org/packages/08/9e/fd4d5e394fed3295fccded6fe2f22ae3a3d585e0167c619feb1c9527d8be/glide_for_redis-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a736fc3542b29a6c0c00c50cc8d2fb9c496f65b3f7e6877d11a7812f69b60b87",
                "md5": "3e8476cecb4aead9fca0000c2f7a38d7",
                "sha256": "46c47e73fe183b3af65541f90c400f130cdc9e3e19bf7c4a6571edbd01384bb1"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp38-cp38-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e8476cecb4aead9fca0000c2f7a38d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1767553,
            "upload_time": "2024-06-02T16:09:44",
            "upload_time_iso_8601": "2024-06-02T16:09:44.242504Z",
            "url": "https://files.pythonhosted.org/packages/a7/36/fc3542b29a6c0c00c50cc8d2fb9c496f65b3f7e6877d11a7812f69b60b87/glide_for_redis-0.4.1-cp38-cp38-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "473dbab1162300f61010f4c9d427f5a45e511664574fcd524d4f60237b9820c7",
                "md5": "3ab56795b561edf016820f9b5bc8e611",
                "sha256": "acc96b2fabe570c6a95ad82e3c1afbf09cbf3b22dc134b3cefca9e5c49a44498"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ab56795b561edf016820f9b5bc8e611",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1838927,
            "upload_time": "2024-06-02T16:09:45",
            "upload_time_iso_8601": "2024-06-02T16:09:45.723946Z",
            "url": "https://files.pythonhosted.org/packages/47/3d/bab1162300f61010f4c9d427f5a45e511664574fcd524d4f60237b9820c7/glide_for_redis-0.4.1-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1672280e03369edd105838aed47858dbe796fa66fca0b062950cdde954523bdb",
                "md5": "7af39763ad218aa765a1d897af15b201",
                "sha256": "56a27f6b11e8ae8b6faa84e0856d7c36186fc4d2e714c3e9f8574bad8e052cb6"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7af39763ad218aa765a1d897af15b201",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1696528,
            "upload_time": "2024-06-02T16:09:47",
            "upload_time_iso_8601": "2024-06-02T16:09:47.608602Z",
            "url": "https://files.pythonhosted.org/packages/16/72/280e03369edd105838aed47858dbe796fa66fca0b062950cdde954523bdb/glide_for_redis-0.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1b5b24b10d0832fbccfe450b47740f1405cbdf87a90976a810adbf12faa464bc",
                "md5": "e739c8437d0559ce883abcf5d5f0521a",
                "sha256": "47ed0fa55cf7d7c7728c56c6304b166a423b7310793ab0fafd2d2489208e596d"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e739c8437d0559ce883abcf5d5f0521a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1875272,
            "upload_time": "2024-06-02T16:09:49",
            "upload_time_iso_8601": "2024-06-02T16:09:49.176735Z",
            "url": "https://files.pythonhosted.org/packages/1b/5b/24b10d0832fbccfe450b47740f1405cbdf87a90976a810adbf12faa464bc/glide_for_redis-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "475accaaf3f35d3dac1c3a3b8876a9191263f43b4c10fa35d43bd56dbef5ef05",
                "md5": "8a2a6405c4857b26ea17236080f0181b",
                "sha256": "36a878cb9aca0f50fd7a80ef62d03c197d50b861bef63ffd8ae2facc3fac8745"
            },
            "downloads": -1,
            "filename": "glide_for_redis-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8a2a6405c4857b26ea17236080f0181b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1767799,
            "upload_time": "2024-06-02T16:09:51",
            "upload_time_iso_8601": "2024-06-02T16:09:51.132954Z",
            "url": "https://files.pythonhosted.org/packages/47/5a/ccaaf3f35d3dac1c3a3b8876a9191263f43b4c10fa35d43bd56dbef5ef05/glide_for_redis-0.4.1-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-02 16:09:16",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "glide-for-redis"
}
        
Elapsed time: 0.35212s