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 ADDED
@@ -0,0 +1,4 @@
1
+ """WebTools CLI - Advanced Web Intelligence & Scraping Toolkit"""
2
+ import sys
3
+ sys.dont_write_bytecode = True
4
+ __version__ = "1.0.0"
webtools/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Allow running as python -m webtools_cli"""
2
+ import sys
3
+ sys.dont_write_bytecode = True
4
+ from webtools.cli import main
5
+ main()
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()