diff options
Diffstat (limited to 'src/home/api/__init__.py')
-rw-r--r-- | src/home/api/__init__.py | 11 |
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}") |