You can find the package, here.
pip3 install redis-persistence
- Python 3.8
- Redis 3.5
from redispersistence.persistence import RedisPersistence
You need to use this persistence with pyton-telegram-bot module.
redis_instance = Redis(host='localhost', port=6379, db=0)
persistence = RedisPersistence(redis_instance)
updater = Updater(BOT_TOKEN, persistence=persistence)