reddish icon indicating copy to clipboard operation
reddish copied to clipboard

An async redis client for python with minimal API

Results 5 reddish issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

Adds ```add``` to ```MultiExec``` to add Commands. use: ```python from reddish.trio import MultiExec, Command tx = MultiExec( Command('ECHO {}', 'foo'), Command('ECHO {}', 'bar') ) # ... same code hire tx.add(...

Some commands in the [redis ai module](https://oss.redis.com/redisai/commands/#aidagexecute) accept other (redis ai) commands as arguments. It should be possible to inline commands similar to how `Args` works Example: ```python sub_cmd =...

enhancement

add optional support for `asyncio` using `anyio`. It should be possible to install this via `pip install reddish[anyio]`

enhancement