blob: 437f20c2c744096d9001c72e66ad2f819faf4fb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# legacy imports
from redis.client import Redis, ConnectionPool
from redis.exceptions import RedisError, ConnectionError, AuthenticationError
from redis.exceptions import ResponseError, InvalidResponse, InvalidData
__version__ = '2.2.2'
__all__ = [
'Redis', 'ConnectionPool',
'RedisError', 'ConnectionError', 'ResponseError', 'AuthenticationError'
'InvalidResponse', 'InvalidData',
]
|