11 lines
379 B
Python
Executable File
11 lines
379 B
Python
Executable File
# legacy imports
|
|
from redis.client import Redis, ConnectionPool
|
|
from redis.exceptions import RedisError, ConnectionError, AuthenticationError
|
|
from redis.exceptions import ResponseError, InvalidResponse, InvalidData
|
|
|
|
__all__ = [
|
|
'Redis', 'ConnectionPool',
|
|
'RedisError', 'ConnectionError', 'ResponseError', 'AuthenticationError'
|
|
'InvalidResponse', 'InvalidData',
|
|
]
|