webtools-cli 1.0.0__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.
- webtools/__init__.py +4 -0
- webtools/__main__.py +5 -0
- webtools/cli.py +15 -0
- webtools/core.py +2596 -0
- webtools/web/Web_Tools.png +0 -0
- webtools/web/index.html +1102 -0
- webtools/web/script.js +1805 -0
- webtools/web/style.css +71 -0
- webtools_cli-1.0.0.dist-info/METADATA +110 -0
- webtools_cli-1.0.0.dist-info/RECORD +14 -0
- webtools_cli-1.0.0.dist-info/WHEEL +5 -0
- webtools_cli-1.0.0.dist-info/entry_points.txt +2 -0
- webtools_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
- webtools_cli-1.0.0.dist-info/top_level.txt +1 -0
webtools/__init__.py
ADDED
webtools/__main__.py
ADDED
webtools/cli.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""CLI entry point for webtools command"""
|
|
2
|
+
import sys
|
|
3
|
+
sys.dont_write_bytecode = True
|
|
4
|
+
|
|
5
|
+
def main():
|
|
6
|
+
"""Main entry point for the webtools CLI command"""
|
|
7
|
+
from webtools.core import main_launcher
|
|
8
|
+
try:
|
|
9
|
+
main_launcher()
|
|
10
|
+
except KeyboardInterrupt:
|
|
11
|
+
print("\n👋 Goodbye!")
|
|
12
|
+
sys.exit(0)
|
|
13
|
+
|
|
14
|
+
if __name__ == "__main__":
|
|
15
|
+
main()
|