Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/redis/asyncio/__init__.py: 89%

9 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 07:16 +0000

1from redis.asyncio.client import Redis, StrictRedis 

2from redis.asyncio.cluster import RedisCluster 

3from redis.asyncio.connection import ( 

4 BlockingConnectionPool, 

5 Connection, 

6 ConnectionPool, 

7 SSLConnection, 

8 UnixDomainSocketConnection, 

9) 

10from redis.asyncio.parser import CommandsParser 

11from redis.asyncio.sentinel import ( 

12 Sentinel, 

13 SentinelConnectionPool, 

14 SentinelManagedConnection, 

15 SentinelManagedSSLConnection, 

16) 

17from redis.asyncio.utils import from_url 

18from redis.backoff import default_backoff 

19from redis.exceptions import ( 

20 AuthenticationError, 

21 AuthenticationWrongNumberOfArgsError, 

22 BusyLoadingError, 

23 ChildDeadlockedError, 

24 ConnectionError, 

25 DataError, 

26 InvalidResponse, 

27 PubSubError, 

28 ReadOnlyError, 

29 RedisError, 

30 ResponseError, 

31 TimeoutError, 

32 WatchError, 

33) 

34 

35__all__ = [ 

36 "AuthenticationError", 

37 "AuthenticationWrongNumberOfArgsError", 

38 "BlockingConnectionPool", 

39 "BusyLoadingError", 

40 "ChildDeadlockedError", 

41 "CommandsParser", 

42 "Connection", 

43 "ConnectionError", 

44 "ConnectionPool", 

45 "DataError", 

46 "from_url", 

47 "default_backoff", 

48 "InvalidResponse", 

49 "PubSubError", 

50 "ReadOnlyError", 

51 "Redis", 

52 "RedisCluster", 

53 "RedisError", 

54 "ResponseError", 

55 "Sentinel", 

56 "SentinelConnectionPool", 

57 "SentinelManagedConnection", 

58 "SentinelManagedSSLConnection", 

59 "SSLConnection", 

60 "StrictRedis", 

61 "TimeoutError", 

62 "UnixDomainSocketConnection", 

63 "WatchError", 

64]