forked from mirror/ledisdb
32 lines
796 B
Python
32 lines
796 B
Python
from redis.client import Redis, StrictRedis
|
|
from redis.connection import (
|
|
BlockingConnectionPool,
|
|
ConnectionPool,
|
|
Connection,
|
|
UnixDomainSocketConnection
|
|
)
|
|
from redis.utils import from_url
|
|
from redis.exceptions import (
|
|
AuthenticationError,
|
|
ConnectionError,
|
|
BusyLoadingError,
|
|
DataError,
|
|
InvalidResponse,
|
|
PubSubError,
|
|
RedisError,
|
|
ResponseError,
|
|
WatchError,
|
|
)
|
|
|
|
|
|
__version__ = '2.7.6'
|
|
VERSION = tuple(map(int, __version__.split('.')))
|
|
|
|
__all__ = [
|
|
'Redis', 'StrictRedis', 'ConnectionPool', 'BlockingConnectionPool',
|
|
'Connection', 'UnixDomainSocketConnection',
|
|
'RedisError', 'ConnectionError', 'ResponseError', 'AuthenticationError',
|
|
'InvalidResponse', 'DataError', 'PubSubError', 'WatchError', 'from_url',
|
|
'BusyLoadingError'
|
|
]
|