dq-made-easy-cli 0.6.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dq_cli/__init__.py +16 -0
- dq_cli/mcp_server.py +746 -0
- dq_cli/onboard.py +399 -0
- dq_cli/run_plan.py +935 -0
- dq_made_easy_cli-0.6.3.dist-info/METADATA +92 -0
- dq_made_easy_cli-0.6.3.dist-info/RECORD +9 -0
- dq_made_easy_cli-0.6.3.dist-info/WHEEL +5 -0
- dq_made_easy_cli-0.6.3.dist-info/entry_points.txt +4 -0
- dq_made_easy_cli-0.6.3.dist-info/top_level.txt +1 -0
dq_cli/__init__.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
__all__ = ["main"]
|
|
6
|
+
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from .run_plan import main as main
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def __getattr__(name: str):
|
|
12
|
+
if name == "main":
|
|
13
|
+
from .run_plan import main as run_plan_main
|
|
14
|
+
|
|
15
|
+
return run_plan_main
|
|
16
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|