redis
Package — DatabasePython 3.7+Intermediate
Python client for Redis in-memory data store
Quick Info
- Documentation
- Official Docs
- Python Version
- 3.7+
- Dependencies
- async-timeout (Python < 3.11)
- Install
pip install redis
Learn by Difficulty
Quick Example
python
# Install: pip install redis import redis # Basic redis usage print(f"Using redis") # See documentation for detailed examples
redis is a third-party package. Python client for Redis in-memory data store. Install with: pip install redis
Try in PlaygroundTags
packagedatabasecachein-memorykey-valuedatatype
Related Items
sqlite3
Stdlib — Database
Built-in SQLite database interface; no server needed
pymongo
Package — Database
Official MongoDB driver for Python
celery
Package — Cloud/DevOps
Distributed task queue for async job processing
rq
Package — Scheduling
Redis Queue: simple job queue backed by Redis
aioredis
Package — Database
Async Redis client for asyncio applications
diskcache
Package — Caching
Disk-based cache using SQLite; survives restarts