word_cloud_bot/connector.py

8 lines
186 B
Python
Raw Normal View History

2021-05-05 03:41:27 +00:00
import redis
pool = redis.ConnectionPool(host='127.0.0.1', port=6379, encoding='utf8', decode_responses=True)
def get_connection():
return redis.StrictRedis(connection_pool=pool)