summaryrefslogtreecommitdiff
path: root/src/home/api/__init__.py
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2021-11-27 16:17:05 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-04-24 01:33:04 +0300
commitc412bf2ee0a3fbf9032fc32a26837d4fbc7585c5 (patch)
tree5cca6bcab79331ad82cab4219c7692b9dd4eea21 /src/home/api/__init__.py
initial public
Diffstat (limited to 'src/home/api/__init__.py')
-rw-r--r--src/home/api/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/home/api/__init__.py b/src/home/api/__init__.py
new file mode 100644
index 0000000..782a61e
--- /dev/null
+++ b/src/home/api/__init__.py
@@ -0,0 +1,11 @@
+import importlib
+
+__all__ = ['WebAPIClient', 'RequestParams']
+
+
+def __getattr__(name):
+ if name in __all__:
+ module = importlib.import_module(f'.web_api_client', __name__)
+ return getattr(module, name)
+
+ raise AttributeError(f"module {__name__!r} has no attribute {name!r}")