We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d394f5 commit 20dbee5Copy full SHA for 20dbee5
solvedac_community/__init__.py
@@ -11,27 +11,7 @@
11
Copyright (c) 2023 DevRuby
12
"""
13
14
+from . import HTTPClients
15
from .client import Client
16
-__all__ = ["Client"]
17
-
18
-count = 0
19
20
-try:
21
- import aiohttp
22
23
- count += 1
24
-except ImportError:
25
- pass
26
27
28
- import httpx
29
30
31
32
33
34
-if count == 0:
35
- raise ImportError(
36
- "\nAt least one of aiohttp or httpx libraries is required\nTry `pip install aiohttp` or `pip install httpx`"
37
- )
+__all__ = ["Client", "HTTPClients"]
0 commit comments