redish
redish copied to clipboard
No support for authorization (password)
Need the module to handle the password authorization to redis.
Here's a simple fix to this issue:
def __init__(self, host=None, port=None, db=None,
serializer=None,password=""):
self.host = host or self.host
self.port = port or self.port
self.serializer = serializer or self.serializer
self.db = db or self.db
self.api = _RedisClient(self.host, self.port, self.db, password)