ubox-cli 0.0.1__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.
- ubox_cli/__init__.py +27 -0
- ubox_cli/cli.py +1393 -0
- ubox_cli/ubox_config.py +91 -0
- ubox_cli/ubox_handler.py +915 -0
- ubox_cli-0.0.1.dist-info/METADATA +207 -0
- ubox_cli-0.0.1.dist-info/RECORD +8 -0
- ubox_cli-0.0.1.dist-info/WHEEL +4 -0
- ubox_cli-0.0.1.dist-info/entry_points.txt +2 -0
ubox_cli/__init__.py
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
"""
|
|
4
|
+
UBox CLI工具包
|
|
5
|
+
|
|
6
|
+
通过命令行操作UBox设备自动化能力
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from . import cli
|
|
10
|
+
from . import ubox_handler
|
|
11
|
+
from . import ubox_config
|
|
12
|
+
|
|
13
|
+
__version__ = "0.2.0"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def main():
|
|
17
|
+
"""主入口点"""
|
|
18
|
+
cli.main()
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
__all__ = [
|
|
22
|
+
"main",
|
|
23
|
+
"cli",
|
|
24
|
+
"ubox_handler",
|
|
25
|
+
"ubox_config",
|
|
26
|
+
"__version__",
|
|
27
|
+
]
|