trio-redis A Redis client based on Trio. Example import trio from trio_redis import Redis async def hello_world(): async with Redis() as redis: await redis.set("some-key", "hello, world!") print(await redis.get("some-key")) trio.run(hello_world)