scwrypts/py/redis/client.py

16 lines
384 B
Python
Raw Permalink Normal View History

from redis import StrictRedis
from py.scwrypts import getenv
class RedisClient(StrictRedis):
def __init__(self):
super().__init__(
host = getenv('REDIS_HOST'),
port = getenv('REDIS_PORT'),
password = getenv('REDIS_AUTH', required=False),
decode_responses = True,
)
Client = RedisClient()