An extension for Quart that integrates Redis, providing support for caching, session storage, and pub/sub. Version 3.0.0 requires Python >=3.11 and Quart >=0.18. Released on 2023-12-01; maintenance cadence is irregular.
pip install quart-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize QuartRedis with the Quart app, then acquire connections from the pool.
Replace aredis usage with redis.asyncio. The QuartRedis interface remains the same but underlying client changed.
Set app.config['REDIS_URI'] = 'redis://...' instead of separate host/port/db config.
Use 'async with redis.connection() as conn:' to auto-release.
No resource links recorded.