coredis


Namecoredis JSON
Version 4.17.0 PyPI version JSON
download
home_pagehttps://github.com/alisaifee/coredis
SummaryPython async client for Redis key-value store
upload_time2024-04-19 19:19:45
maintainerAli-Akber Saifee
docs_urlNone
authorAli-Akber Saifee
requires_python>=3.8
licenseMIT
keywords redis key-value store asyncio
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # coredis

[![docs](https://readthedocs.org/projects/coredis/badge/?version=stable)](https://coredis.readthedocs.org)
[![codecov](https://codecov.io/gh/alisaifee/coredis/branch/master/graph/badge.svg)](https://codecov.io/gh/alisaifee/coredis)
[![Latest Version in PyPI](https://img.shields.io/pypi/v/coredis.svg)](https://pypi.python.org/pypi/coredis/)
[![ci](https://github.com/alisaifee/coredis/workflows/CI/badge.svg?branch=master)](https://github.com/alisaifee/coredis/actions?query=branch%3Amaster+workflow%3ACI)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/coredis.svg)](https://pypi.python.org/pypi/coredis/)

______________________________________________________________________

coredis is an async redis client with support for redis server, cluster & sentinel.

- The client API uses the specifications in the [Redis command documentation](https://redis.io/commands/) to define the API by using the following conventions:

  - Arguments retain naming from redis as much as possible
  - Only optional variadic arguments are mapped to variadic positional or keyword arguments.
    When the variable length arguments are not optional (which is almost always the case) the expected argument
    is an iterable of type [Parameters](https://coredis.readthedocs.io/en/latest/api/typing.html#coredis.typing.Parameters) or `Mapping`.
  - Pure tokens used as flags are mapped to boolean arguments
  - `One of` arguments accepting pure tokens are collapsed and accept a [PureToken](https://coredis.readthedocs.io/en/latest/api/utilities.html#coredis.tokens.PureToken)

- Responses are mapped between RESP and python types as closely as possible.

- For higher level concepts such as Pipelines, LUA Scripts, PubSub & Streams
  abstractions are provided to encapsulate recommended patterns.
  See the [Handbook](https://coredis.readthedocs.io/en/latest/handbook/index.html)
  and the [API Documentation](https://coredis.readthedocs.io/en/latest/api/index.html)
  for more details.

> **Warning**
> The command API does NOT mirror the official python [redis client](https://github.com/redis/redis-py). For details about the high level differences refer to [Divergence from aredis & redis-py](https://coredis.readthedocs.io/en/latest/history.html#divergence-from-aredis-redis-py)

______________________________________________________________________

<!-- TOC depthFrom:2 depthTo:6 withLinks:1 updateOnSave:1 orderedList:0 -->

- [Installation](#installation)
- [Feature Summary](#feature-summary)
  - [Deployment topologies](#deployment-topologies)
  - [Application patterns](#application-patterns)
  - [Server side scripting](#server-side-scripting)
  - [Redis Modules](#redis-modules)
  - [Miscellaneous](#miscellaneous)
- [Quick start](#quick-start)
  - [Single Node or Cluster client](#single-node-or-cluster-client)
  - [Sentinel](#sentinel)
- [Compatibility](#compatibility)
  - [Supported python versions](#supported-python-versions)
  - [Redis-like backends](#redis-like-backends)
- [References](#references)

<!-- /TOC -->

## Installation

To install coredis:

```bash
$ pip install coredis
```

## Feature Summary

### Deployment topologies

- [Redis Cluster](https://coredis.readthedocs.org/en/latest/handbook/cluster.html#redis-cluster)
- [Sentinel](https://coredis.readthedocs.org/en/latest/api/clients.html#sentinel)

### Application patterns

- [Connection Pooling](https://coredis.readthedocs.org/en/latest/handbook/connections.html#connection-pools)
- [PubSub](https://coredis.readthedocs.org/en/latest/handbook/pubsub.html)
- [Sharded PubSub](https://coredis.readthedocs.org/en/latest/handbook/pubsub.html#sharded-pub-sub) \[`>= Redis 7.0`\]
- [Stream Consumers](https://coredis.readthedocs.org/en/latest/handbook/streams.html)
- [Pipelining](https://coredis.readthedocs.org/en/latest/handbook/pipelines.html)
- [Client side caching](https://coredis.readthedocs.org/en/latest/handbook/caching.html)

### Server side scripting

- [LUA Scripting](https://coredis.readthedocs.org/en/latest/handbook/scripting.html#lua_scripting)
- [Redis Libraries and functions](https://coredis.readthedocs.org/en/latest/handbook/scripting.html#library-functions) \[`>= Redis 7.0`\]

### Redis Modules

- [RedisJSON](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisjson)
- [RediSearch](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisearch)
- [RedisGraph](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisgraph)
- [RedisBloom](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisbloom)
- [RedisTimeSeries](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redistimeseries)

### Miscellaneous

- Public API annotated with type annotations
- Optional [Runtime Type Validation](https://coredis.readthedocs.org/en/latest/handbook/typing.html#runtime-type-checking) (via [beartype](https://github.com/beartype/beartype))

## Quick start

### Single Node or Cluster client

```python
import asyncio
from coredis import Redis, RedisCluster

async def example():
    client = Redis(host='127.0.0.1', port=6379, db=0)
    # or with redis cluster
    # client = RedisCluster(startup_nodes=[{"host": "127.0.01", "port": 7001}])
    await client.flushdb()
    await client.set('foo', 1)
    assert await client.exists(['foo']) == 1
    assert await client.incr('foo') == 2
    assert await client.incrby('foo', increment=100) == 102
    assert int(await client.get('foo')) == 102

    assert await client.expire('foo', 1)
    await asyncio.sleep(0.1)
    assert await client.ttl('foo') == 1
    assert await client.pttl('foo') < 1000
    await asyncio.sleep(1)
    assert not await client.exists(['foo'])

asyncio.run(example())
```

### Sentinel

```python
import asyncio
from coredis.sentinel import Sentinel

async def example():
    sentinel = Sentinel(sentinels=[("localhost", 26379)])
    primary = sentinel.primary_for("myservice")
    replica = sentinel.replica_for("myservice")

    assert await primary.set("fubar", 1)
    assert int(await replica.get("fubar")) == 1

asyncio.run(example())
```

To see a full list of supported redis commands refer to the [Command
compatibility](https://coredis.readthedocs.io/en/latest/compatibility.html)
documentation

Details about supported Redis modules and their commands can be found
[here](https://coredis.readthedocs.io/en/latest/handbook/modules.html)

## Compatibility

coredis is tested against redis versions `6.2.x`, `7.0.x` & `7.2.x`.
The test matrix status can be reviewed
[here](https://github.com/alisaifee/coredis/actions/workflows/main.yml)

coredis is additionally tested against:

- ` uvloop >= 0.15.0`

### Supported python versions

- 3.8
- 3.9
- 3.10
- 3.11
- PyPy 3.8
- PyPy 3.9

### Redis-like backends

**coredis** is known to work with the following databases that have redis protocol compatibility:

- [KeyDB](https://docs.keydb.dev/)
- [Dragonfly](https://dragonflydb.io/)

## References

- [Documentation (Stable)](http://coredis.readthedocs.org/en/stable)
- [Documentation (Latest)](http://coredis.readthedocs.org/en/latest)
- [Changelog](http://coredis.readthedocs.org/en/stable/release_notes.html)
- [Project History](http://coredis.readthedocs.org/en/stable/history.html)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/alisaifee/coredis",
    "name": "coredis",
    "maintainer": "Ali-Akber Saifee",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "ali@indydevs.org",
    "keywords": "Redis, key-value store, asyncio",
    "author": "Ali-Akber Saifee",
    "author_email": "ali@indydevs.org",
    "download_url": "https://files.pythonhosted.org/packages/ef/0c/0f2fb1cedd224666ef08e898447bb9cf4d1e98a86b03119f1c6513093ddc/coredis-4.17.0.tar.gz",
    "platform": null,
    "description": "# coredis\n\n[![docs](https://readthedocs.org/projects/coredis/badge/?version=stable)](https://coredis.readthedocs.org)\n[![codecov](https://codecov.io/gh/alisaifee/coredis/branch/master/graph/badge.svg)](https://codecov.io/gh/alisaifee/coredis)\n[![Latest Version in PyPI](https://img.shields.io/pypi/v/coredis.svg)](https://pypi.python.org/pypi/coredis/)\n[![ci](https://github.com/alisaifee/coredis/workflows/CI/badge.svg?branch=master)](https://github.com/alisaifee/coredis/actions?query=branch%3Amaster+workflow%3ACI)\n[![Supported Python versions](https://img.shields.io/pypi/pyversions/coredis.svg)](https://pypi.python.org/pypi/coredis/)\n\n______________________________________________________________________\n\ncoredis is an async redis client with support for redis server, cluster & sentinel.\n\n- The client API uses the specifications in the [Redis command documentation](https://redis.io/commands/) to define the API by using the following conventions:\n\n  - Arguments retain naming from redis as much as possible\n  - Only optional variadic arguments are mapped to variadic positional or keyword arguments.\n    When the variable length arguments are not optional (which is almost always the case) the expected argument\n    is an iterable of type [Parameters](https://coredis.readthedocs.io/en/latest/api/typing.html#coredis.typing.Parameters) or `Mapping`.\n  - Pure tokens used as flags are mapped to boolean arguments\n  - `One of` arguments accepting pure tokens are collapsed and accept a [PureToken](https://coredis.readthedocs.io/en/latest/api/utilities.html#coredis.tokens.PureToken)\n\n- Responses are mapped between RESP and python types as closely as possible.\n\n- For higher level concepts such as Pipelines, LUA Scripts, PubSub & Streams\n  abstractions are provided to encapsulate recommended patterns.\n  See the [Handbook](https://coredis.readthedocs.io/en/latest/handbook/index.html)\n  and the [API Documentation](https://coredis.readthedocs.io/en/latest/api/index.html)\n  for more details.\n\n> **Warning**\n> The command API does NOT mirror the official python [redis client](https://github.com/redis/redis-py). For details about the high level differences refer to [Divergence from aredis & redis-py](https://coredis.readthedocs.io/en/latest/history.html#divergence-from-aredis-redis-py)\n\n______________________________________________________________________\n\n<!-- TOC depthFrom:2 depthTo:6 withLinks:1 updateOnSave:1 orderedList:0 -->\n\n- [Installation](#installation)\n- [Feature Summary](#feature-summary)\n  - [Deployment topologies](#deployment-topologies)\n  - [Application patterns](#application-patterns)\n  - [Server side scripting](#server-side-scripting)\n  - [Redis Modules](#redis-modules)\n  - [Miscellaneous](#miscellaneous)\n- [Quick start](#quick-start)\n  - [Single Node or Cluster client](#single-node-or-cluster-client)\n  - [Sentinel](#sentinel)\n- [Compatibility](#compatibility)\n  - [Supported python versions](#supported-python-versions)\n  - [Redis-like backends](#redis-like-backends)\n- [References](#references)\n\n<!-- /TOC -->\n\n## Installation\n\nTo install coredis:\n\n```bash\n$ pip install coredis\n```\n\n## Feature Summary\n\n### Deployment topologies\n\n- [Redis Cluster](https://coredis.readthedocs.org/en/latest/handbook/cluster.html#redis-cluster)\n- [Sentinel](https://coredis.readthedocs.org/en/latest/api/clients.html#sentinel)\n\n### Application patterns\n\n- [Connection Pooling](https://coredis.readthedocs.org/en/latest/handbook/connections.html#connection-pools)\n- [PubSub](https://coredis.readthedocs.org/en/latest/handbook/pubsub.html)\n- [Sharded PubSub](https://coredis.readthedocs.org/en/latest/handbook/pubsub.html#sharded-pub-sub) \\[`>= Redis 7.0`\\]\n- [Stream Consumers](https://coredis.readthedocs.org/en/latest/handbook/streams.html)\n- [Pipelining](https://coredis.readthedocs.org/en/latest/handbook/pipelines.html)\n- [Client side caching](https://coredis.readthedocs.org/en/latest/handbook/caching.html)\n\n### Server side scripting\n\n- [LUA Scripting](https://coredis.readthedocs.org/en/latest/handbook/scripting.html#lua_scripting)\n- [Redis Libraries and functions](https://coredis.readthedocs.org/en/latest/handbook/scripting.html#library-functions) \\[`>= Redis 7.0`\\]\n\n### Redis Modules\n\n- [RedisJSON](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisjson)\n- [RediSearch](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisearch)\n- [RedisGraph](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisgraph)\n- [RedisBloom](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redisbloom)\n- [RedisTimeSeries](https://coredis.readthedocs.org/en/latest/handbook/modules.html#redistimeseries)\n\n### Miscellaneous\n\n- Public API annotated with type annotations\n- Optional [Runtime Type Validation](https://coredis.readthedocs.org/en/latest/handbook/typing.html#runtime-type-checking) (via [beartype](https://github.com/beartype/beartype))\n\n## Quick start\n\n### Single Node or Cluster client\n\n```python\nimport asyncio\nfrom coredis import Redis, RedisCluster\n\nasync def example():\n    client = Redis(host='127.0.0.1', port=6379, db=0)\n    # or with redis cluster\n    # client = RedisCluster(startup_nodes=[{\"host\": \"127.0.01\", \"port\": 7001}])\n    await client.flushdb()\n    await client.set('foo', 1)\n    assert await client.exists(['foo']) == 1\n    assert await client.incr('foo') == 2\n    assert await client.incrby('foo', increment=100) == 102\n    assert int(await client.get('foo')) == 102\n\n    assert await client.expire('foo', 1)\n    await asyncio.sleep(0.1)\n    assert await client.ttl('foo') == 1\n    assert await client.pttl('foo') < 1000\n    await asyncio.sleep(1)\n    assert not await client.exists(['foo'])\n\nasyncio.run(example())\n```\n\n### Sentinel\n\n```python\nimport asyncio\nfrom coredis.sentinel import Sentinel\n\nasync def example():\n    sentinel = Sentinel(sentinels=[(\"localhost\", 26379)])\n    primary = sentinel.primary_for(\"myservice\")\n    replica = sentinel.replica_for(\"myservice\")\n\n    assert await primary.set(\"fubar\", 1)\n    assert int(await replica.get(\"fubar\")) == 1\n\nasyncio.run(example())\n```\n\nTo see a full list of supported redis commands refer to the [Command\ncompatibility](https://coredis.readthedocs.io/en/latest/compatibility.html)\ndocumentation\n\nDetails about supported Redis modules and their commands can be found\n[here](https://coredis.readthedocs.io/en/latest/handbook/modules.html)\n\n## Compatibility\n\ncoredis is tested against redis versions `6.2.x`, `7.0.x` & `7.2.x`.\nThe test matrix status can be reviewed\n[here](https://github.com/alisaifee/coredis/actions/workflows/main.yml)\n\ncoredis is additionally tested against:\n\n- ` uvloop >= 0.15.0`\n\n### Supported python versions\n\n- 3.8\n- 3.9\n- 3.10\n- 3.11\n- PyPy 3.8\n- PyPy 3.9\n\n### Redis-like backends\n\n**coredis** is known to work with the following databases that have redis protocol compatibility:\n\n- [KeyDB](https://docs.keydb.dev/)\n- [Dragonfly](https://dragonflydb.io/)\n\n## References\n\n- [Documentation (Stable)](http://coredis.readthedocs.org/en/stable)\n- [Documentation (Latest)](http://coredis.readthedocs.org/en/latest)\n- [Changelog](http://coredis.readthedocs.org/en/stable/release_notes.html)\n- [Project History](http://coredis.readthedocs.org/en/stable/history.html)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python async client for Redis key-value store",
    "version": "4.17.0",
    "project_urls": {
        "Changes": "https://github.com/alisaifee/coredis/releases",
        "Documentation": "https://coredis.readthedocs.org",
        "Homepage": "https://github.com/alisaifee/coredis",
        "Source": "https://github.com/alisaifee/coredis"
    },
    "split_keywords": [
        "redis",
        " key-value store",
        " asyncio"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16de7fe84ced35341d19c3ecfa4b506355772d3c15308f39917ed6bcd6b3bf29",
                "md5": "439fb9f7bf787aa29649b2c3a354b03b",
                "sha256": "87f19ff1071765fed407fccc7ea19bef1cbb83f7286f98edf330cd832eff0ac4"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "439fb9f7bf787aa29649b2c3a354b03b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 332352,
            "upload_time": "2024-04-19T19:18:51",
            "upload_time_iso_8601": "2024-04-19T19:18:51.559263Z",
            "url": "https://files.pythonhosted.org/packages/16/de/7fe84ced35341d19c3ecfa4b506355772d3c15308f39917ed6bcd6b3bf29/coredis-4.17.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad57117009c0cfbbf55edf79a5899d2a0924656fab2efacc2d2c43adaf6300b2",
                "md5": "8edfd937d74fc7444c8db7214d3473ed",
                "sha256": "22247a99d5bc736ecab2cd52023a964b04382374c3153eebb1a033304aafcf82"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8edfd937d74fc7444c8db7214d3473ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 330240,
            "upload_time": "2024-04-19T19:18:54",
            "upload_time_iso_8601": "2024-04-19T19:18:54.113146Z",
            "url": "https://files.pythonhosted.org/packages/ad/57/117009c0cfbbf55edf79a5899d2a0924656fab2efacc2d2c43adaf6300b2/coredis-4.17.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec56703baeef33532ae395bffce7c2e64993a631c89139dbf3e9d44ccd71ca55",
                "md5": "21b020c13d820ce126704b879080df89",
                "sha256": "cec76db65a2f95953b88db67d20d8ee6f974b2396596c6adc5d8285f84e6874d"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21b020c13d820ce126704b879080df89",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 354389,
            "upload_time": "2024-04-19T19:18:56",
            "upload_time_iso_8601": "2024-04-19T19:18:56.337304Z",
            "url": "https://files.pythonhosted.org/packages/ec/56/703baeef33532ae395bffce7c2e64993a631c89139dbf3e9d44ccd71ca55/coredis-4.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf688a2fe257caf5c125cea0b7f6d7addcb1a2203a0c31723702bbb152fc712e",
                "md5": "50589b700218d482f1b004df8bcdf723",
                "sha256": "2e0f297113088c8bdc5b349b3f7468bcbce3dfcafb9985cff0df887d1dd60957"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50589b700218d482f1b004df8bcdf723",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 357748,
            "upload_time": "2024-04-19T19:18:57",
            "upload_time_iso_8601": "2024-04-19T19:18:57.953345Z",
            "url": "https://files.pythonhosted.org/packages/cf/68/8a2fe257caf5c125cea0b7f6d7addcb1a2203a0c31723702bbb152fc712e/coredis-4.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65da215c0e7fd4950ef311774c72449ea5018effcb8d282b1b2accdf377d1b2e",
                "md5": "1ca63c3a6b9bb550b6819c7ad0b053e4",
                "sha256": "85a3a18d91623e33bd2eaf085fb8dc12c56b9d82dbc003a65f5c542c3df62fd1"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1ca63c3a6b9bb550b6819c7ad0b053e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 361007,
            "upload_time": "2024-04-19T19:18:59",
            "upload_time_iso_8601": "2024-04-19T19:18:59.811783Z",
            "url": "https://files.pythonhosted.org/packages/65/da/215c0e7fd4950ef311774c72449ea5018effcb8d282b1b2accdf377d1b2e/coredis-4.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c12c2335e476f0c0b33eea53c307169bcafe9c19a4b277738258eb80354ee90c",
                "md5": "265add99eb3534e7df6084bc11b3448b",
                "sha256": "f3050806b4854a6624e3c2efa013b540265d88e766f815963d447c116240d75d"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "265add99eb3534e7df6084bc11b3448b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 330690,
            "upload_time": "2024-04-19T19:19:01",
            "upload_time_iso_8601": "2024-04-19T19:19:01.933295Z",
            "url": "https://files.pythonhosted.org/packages/c1/2c/2335e476f0c0b33eea53c307169bcafe9c19a4b277738258eb80354ee90c/coredis-4.17.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ab13c24a708b24f8e2566b1b91b64b4dc75f74633b875def19f2ac0fa03a0a0",
                "md5": "918de603bc35fb6a7a5514e1f1070db9",
                "sha256": "5f0f1044bdafc93f421e59e711da762c6c741ab76df0c12a42c447c1db1fcd75"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "918de603bc35fb6a7a5514e1f1070db9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 328051,
            "upload_time": "2024-04-19T19:19:04",
            "upload_time_iso_8601": "2024-04-19T19:19:04.369372Z",
            "url": "https://files.pythonhosted.org/packages/6a/b1/3c24a708b24f8e2566b1b91b64b4dc75f74633b875def19f2ac0fa03a0a0/coredis-4.17.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fa6e5a8add1ae7b31240248528f669127e5fd347c69625a9b423965a5902302",
                "md5": "159c9e4567d45928dc36feee3e17b2f1",
                "sha256": "f1befa7db121978fd0995151af5d15ce5e37a14847797c3fbd9403882f21b48c"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "159c9e4567d45928dc36feee3e17b2f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 352651,
            "upload_time": "2024-04-19T19:19:06",
            "upload_time_iso_8601": "2024-04-19T19:19:06.203530Z",
            "url": "https://files.pythonhosted.org/packages/0f/a6/e5a8add1ae7b31240248528f669127e5fd347c69625a9b423965a5902302/coredis-4.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8d10ece1b888547ec26f4d33be30513cd44c77df25c9f943e7d3c20b49cc634",
                "md5": "ea444f1bf968197b887bc92fe83d02f8",
                "sha256": "52583dcef671c8d3a1cbecbf81cd630b1a72f946cf46601016c4f85d3f12a4a1"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea444f1bf968197b887bc92fe83d02f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 355472,
            "upload_time": "2024-04-19T19:19:08",
            "upload_time_iso_8601": "2024-04-19T19:19:08.683838Z",
            "url": "https://files.pythonhosted.org/packages/b8/d1/0ece1b888547ec26f4d33be30513cd44c77df25c9f943e7d3c20b49cc634/coredis-4.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00c2771bafa43c37d8c968804b6bb34063eb631b5d2377db31bca6d784131f48",
                "md5": "bbc0b2231da0aec698bae1a4f9f6a919",
                "sha256": "845f5c0bb7012609a1f41f8308e5166c01f162599af33cb001bd2b0d6a4386f5"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bbc0b2231da0aec698bae1a4f9f6a919",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 358740,
            "upload_time": "2024-04-19T19:19:10",
            "upload_time_iso_8601": "2024-04-19T19:19:10.439038Z",
            "url": "https://files.pythonhosted.org/packages/00/c2/771bafa43c37d8c968804b6bb34063eb631b5d2377db31bca6d784131f48/coredis-4.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbd390846efc003d692c46f2988ddaffaac47f2c95f378102dad490e911de157",
                "md5": "d34dc362f07adc730c6ff0e64db88716",
                "sha256": "e3638c9a894ac7d0a04fa14515f24d0f717c431266ee0ac612ddb3a142862258"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d34dc362f07adc730c6ff0e64db88716",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 330509,
            "upload_time": "2024-04-19T19:19:12",
            "upload_time_iso_8601": "2024-04-19T19:19:12.666945Z",
            "url": "https://files.pythonhosted.org/packages/fb/d3/90846efc003d692c46f2988ddaffaac47f2c95f378102dad490e911de157/coredis-4.17.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c2d1f97441d377b457831bd9327dbdaa29888effa2edf6318cb4138a425538f",
                "md5": "9d69b097ba2ff92e4f7bdd0140f61d05",
                "sha256": "73cb260bf96eacb4e455c300b5e41382bc52d9a2125f3f7e55657662a627e0cb"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d69b097ba2ff92e4f7bdd0140f61d05",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 327735,
            "upload_time": "2024-04-19T19:19:14",
            "upload_time_iso_8601": "2024-04-19T19:19:14.410132Z",
            "url": "https://files.pythonhosted.org/packages/4c/2d/1f97441d377b457831bd9327dbdaa29888effa2edf6318cb4138a425538f/coredis-4.17.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a3f1dcd57f6df67b7a20b1c27abcf768cf6789be5f33d173739f482d672e9d1",
                "md5": "3571e7c98f391bef61102df1af71f91f",
                "sha256": "9421423bb109eb62b7595e1d0c84d8c9399bf160826ee478b6b7771bf6ad831e"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3571e7c98f391bef61102df1af71f91f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 353755,
            "upload_time": "2024-04-19T19:19:16",
            "upload_time_iso_8601": "2024-04-19T19:19:16.170598Z",
            "url": "https://files.pythonhosted.org/packages/3a/3f/1dcd57f6df67b7a20b1c27abcf768cf6789be5f33d173739f482d672e9d1/coredis-4.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3824de68bdd4b3549a8a05674f0952e646d45afd15453543e0e679dc6899174c",
                "md5": "f502075ef1d26d06cccbfc580dab33ba",
                "sha256": "a74abdeda89ff5ea40d0da771d2871148b64b2f1c758f11485397adc1928b08e"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f502075ef1d26d06cccbfc580dab33ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 357309,
            "upload_time": "2024-04-19T19:19:18",
            "upload_time_iso_8601": "2024-04-19T19:19:18.745641Z",
            "url": "https://files.pythonhosted.org/packages/38/24/de68bdd4b3549a8a05674f0952e646d45afd15453543e0e679dc6899174c/coredis-4.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab662bd9f9e1c10b307caf8f4e77527c620a0320291aa83a9e0e98e8df5a326c",
                "md5": "429bae7fbd4bb4e62c7eb85c042e242c",
                "sha256": "0ddad826c5bc91f05e5fe36435086cdbe51019b2f4f0faf96d40250823548fee"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "429bae7fbd4bb4e62c7eb85c042e242c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 360856,
            "upload_time": "2024-04-19T19:19:21",
            "upload_time_iso_8601": "2024-04-19T19:19:21.312687Z",
            "url": "https://files.pythonhosted.org/packages/ab/66/2bd9f9e1c10b307caf8f4e77527c620a0320291aa83a9e0e98e8df5a326c/coredis-4.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f73999439bb6f8718839c30172d7bded1b54e4844d893cbc6b53d938ce5e1b16",
                "md5": "81eec8fdd29964ca7af73917872f39f0",
                "sha256": "bff9791ed62d008696a6ceec40e37b706abf73df2d77f8c73dbcffdfd7b0f306"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81eec8fdd29964ca7af73917872f39f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 330497,
            "upload_time": "2024-04-19T19:19:23",
            "upload_time_iso_8601": "2024-04-19T19:19:23.723308Z",
            "url": "https://files.pythonhosted.org/packages/f7/39/99439bb6f8718839c30172d7bded1b54e4844d893cbc6b53d938ce5e1b16/coredis-4.17.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "784cf3f23ecdd3a068f4bff79a6233201592a06f46692e9494b0bc4272e5463c",
                "md5": "47883bcdc24e7445b1ae9059e9037e98",
                "sha256": "c259ad4e7be06564715da9ba0ae89cb77c319a8d5d75e4416a22b9964a5f62e6"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "47883bcdc24e7445b1ae9059e9037e98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 328575,
            "upload_time": "2024-04-19T19:19:26",
            "upload_time_iso_8601": "2024-04-19T19:19:26.897386Z",
            "url": "https://files.pythonhosted.org/packages/78/4c/f3f23ecdd3a068f4bff79a6233201592a06f46692e9494b0bc4272e5463c/coredis-4.17.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e776f3152cfddc22dd4d344aa8c1d93b9626402cbae6139085ebcbd9f8d906",
                "md5": "91011c9a78bd7261033c994fdd6b16c6",
                "sha256": "e257df61af27ab1eb53f588970758d04c930a29b10ff57d480258648d8ff471c"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91011c9a78bd7261033c994fdd6b16c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 353498,
            "upload_time": "2024-04-19T19:19:28",
            "upload_time_iso_8601": "2024-04-19T19:19:28.554964Z",
            "url": "https://files.pythonhosted.org/packages/72/e7/76f3152cfddc22dd4d344aa8c1d93b9626402cbae6139085ebcbd9f8d906/coredis-4.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80e298d2b6275c2bec2c3d4a9177b84a565fa05cbccc6ca4ecbde6afa2b9b37d",
                "md5": "a15fcf3dc5f63c9bcf750c4b74a6df39",
                "sha256": "865a4add07e70d2e566ebb4ebccfe66edeb58fccda49773f50ed41f0d682e13c"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a15fcf3dc5f63c9bcf750c4b74a6df39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 356573,
            "upload_time": "2024-04-19T19:19:30",
            "upload_time_iso_8601": "2024-04-19T19:19:30.157896Z",
            "url": "https://files.pythonhosted.org/packages/80/e2/98d2b6275c2bec2c3d4a9177b84a565fa05cbccc6ca4ecbde6afa2b9b37d/coredis-4.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "820d7aa2155747eee52945ba8e519820e3962a26852b7a93aa8810660ce6f7b9",
                "md5": "9b1e965de0e40c6b517fff6b7f2c46ea",
                "sha256": "ff7aad2be08387dd24ee3c755dd842fa85d0f428199d4d0fae9dae4ed347f4fb"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9b1e965de0e40c6b517fff6b7f2c46ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 360566,
            "upload_time": "2024-04-19T19:19:32",
            "upload_time_iso_8601": "2024-04-19T19:19:32.616386Z",
            "url": "https://files.pythonhosted.org/packages/82/0d/7aa2155747eee52945ba8e519820e3962a26852b7a93aa8810660ce6f7b9/coredis-4.17.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f412f7d665771839bee421c37a2bdff9ce67aca32fb86940f55705122add0353",
                "md5": "cf10c77b6d2920a279b3f4a7a4433101",
                "sha256": "e4795c93a3849b72064247fb462660f5fb81f6c8afc5361ee1fcfdaa2a0007ba"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf10c77b6d2920a279b3f4a7a4433101",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 332337,
            "upload_time": "2024-04-19T19:19:34",
            "upload_time_iso_8601": "2024-04-19T19:19:34.283071Z",
            "url": "https://files.pythonhosted.org/packages/f4/12/f7d665771839bee421c37a2bdff9ce67aca32fb86940f55705122add0353/coredis-4.17.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe80ec35d02749545dcfbbffc35cdf4ff03c544bd6f42d3ee1f1187591038a76",
                "md5": "42a2e681402193089214713edce5f9ed",
                "sha256": "0071a1d744fae8d0dd185f2d7638df90bb792bceafa2ac26ea84582ca6c83678"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "42a2e681402193089214713edce5f9ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 330198,
            "upload_time": "2024-04-19T19:19:36",
            "upload_time_iso_8601": "2024-04-19T19:19:36.065133Z",
            "url": "https://files.pythonhosted.org/packages/fe/80/ec35d02749545dcfbbffc35cdf4ff03c544bd6f42d3ee1f1187591038a76/coredis-4.17.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fe6a7fab086e4b5f0e533d8c71e8e670dfc01ee8ddfbd9b899967f267ddd1e8",
                "md5": "cf5c8cddce58ecec083797b553493080",
                "sha256": "f6e8513a6ee1e667e0af9bbace1732aeaeb148a9d66407dd4c82775e370c3ce8"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf5c8cddce58ecec083797b553493080",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 354246,
            "upload_time": "2024-04-19T19:19:38",
            "upload_time_iso_8601": "2024-04-19T19:19:38.452435Z",
            "url": "https://files.pythonhosted.org/packages/1f/e6/a7fab086e4b5f0e533d8c71e8e670dfc01ee8ddfbd9b899967f267ddd1e8/coredis-4.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ba090beb15354927cbd13d13e1b48f88526453c2d3b4096538590c6e28f9c6b",
                "md5": "4972b526fad0b04a8a791e201c41a693",
                "sha256": "1af32e2650bd1ef66cde515d2cab444b139fb33ddb3b816cf8c09a4c17bc8c42"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4972b526fad0b04a8a791e201c41a693",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 357551,
            "upload_time": "2024-04-19T19:19:40",
            "upload_time_iso_8601": "2024-04-19T19:19:40.694322Z",
            "url": "https://files.pythonhosted.org/packages/9b/a0/90beb15354927cbd13d13e1b48f88526453c2d3b4096538590c6e28f9c6b/coredis-4.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd6819ee426e325e7b51ba0d7f38a9a552198254a92cc84ccc58d31b0dfac087",
                "md5": "c8c1f576ac339b09b352dec29fd73aa2",
                "sha256": "65457fcec50dee4bc953ecd0ee5f999674c4d2cf34feea63facb67f82a2fc1c4"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c8c1f576ac339b09b352dec29fd73aa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 361027,
            "upload_time": "2024-04-19T19:19:42",
            "upload_time_iso_8601": "2024-04-19T19:19:42.424041Z",
            "url": "https://files.pythonhosted.org/packages/dd/68/19ee426e325e7b51ba0d7f38a9a552198254a92cc84ccc58d31b0dfac087/coredis-4.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "081c7249845c0f6105290d70d90c9ad48b550f5bcb989766819d38aa0f784aec",
                "md5": "738c6c64527c9b47aedd116b2c890349",
                "sha256": "a8254fcc746efd72990d565d87e5399646ad737b7a61d86ef129df846e86b0d3"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "738c6c64527c9b47aedd116b2c890349",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 239667,
            "upload_time": "2024-04-19T19:19:44",
            "upload_time_iso_8601": "2024-04-19T19:19:44.239835Z",
            "url": "https://files.pythonhosted.org/packages/08/1c/7249845c0f6105290d70d90c9ad48b550f5bcb989766819d38aa0f784aec/coredis-4.17.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef0c0f2fb1cedd224666ef08e898447bb9cf4d1e98a86b03119f1c6513093ddc",
                "md5": "8c22070c6ab9b8ab58741a5038b74d57",
                "sha256": "04e9976e71a42004dfe19a862c648b4047bf813e15184cddfd3cb37eb704b83f"
            },
            "downloads": -1,
            "filename": "coredis-4.17.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8c22070c6ab9b8ab58741a5038b74d57",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 243157,
            "upload_time": "2024-04-19T19:19:45",
            "upload_time_iso_8601": "2024-04-19T19:19:45.876601Z",
            "url": "https://files.pythonhosted.org/packages/ef/0c/0f2fb1cedd224666ef08e898447bb9cf4d1e98a86b03119f1c6513093ddc/coredis-4.17.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 19:19:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "alisaifee",
    "github_project": "coredis",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "coredis"
}
        
Elapsed time: 0.29960s