Files
scwrypts/py/lib/redis/client.py
T

16 lines
388 B
Python
Raw Normal View History

2022-04-28 16:09:23 -06:00
from redis import StrictRedis
2023-01-11 17:09:59 -07:00
from py.lib.scwrypts import getenv
2022-04-28 16:09:23 -06:00
class RedisClient(StrictRedis):
def __init__(self):
super().__init__(
host = getenv('REDIS_HOST'),
port = getenv('REDIS_PORT'),
2022-08-02 19:08:33 -06:00
password = getenv('REDIS_AUTH', required=False),
2022-04-28 16:09:23 -06:00
decode_responses = True,
)
Client = RedisClient()