webtools-cli 1.2.6__tar.gz → 1.2.8__tar.gz
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_cli-1.2.6 → webtools_cli-1.2.8}/PKG-INFO +2 -2
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/README.md +1 -1
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/pyproject.toml +1 -1
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/core.py +1031 -22
- webtools_cli-1.2.8/webtools/install.py +17 -0
- webtools_cli-1.2.6/webtools/install.py → webtools_cli-1.2.8/webtools/mega_client.py +188 -168
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/web/index.html +367 -238
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/web/script.js +363 -35
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/web/style.css +13 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools_cli.egg-info/PKG-INFO +2 -2
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools_cli.egg-info/SOURCES.txt +1 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/LICENSE +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/setup.cfg +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/__init__.py +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/__main__.py +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools/cli.py +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools_cli.egg-info/dependency_links.txt +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools_cli.egg-info/entry_points.txt +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools_cli.egg-info/requires.txt +0 -0
- {webtools_cli-1.2.6 → webtools_cli-1.2.8}/webtools_cli.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: webtools-cli
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.8
|
|
4
4
|
Summary: Advanced Web Intelligence & Scraping Toolkit with CLI and Web UI
|
|
5
5
|
Author: Abhinav Adarsh
|
|
6
6
|
License-Expression: MIT
|
|
@@ -54,7 +54,7 @@ WebTools CLI is an advanced web intelligence suite for researchers, OSINT enthus
|
|
|
54
54
|
|
|
55
55
|
- **🎯 Stealth & Speed**: Smart proxy rotation and Turbo-Fetch logic for evasion and performance.
|
|
56
56
|
- **🧠 AI-Powered**: Automated content summarization, sentiment analysis, and readability scoring.
|
|
57
|
-
- **☁️ Cloud-Native**: Integrated Mega.nz storage
|
|
57
|
+
- **☁️ Cloud-Native**: Integrated Mega.nz storage for seamless media backups and file management.
|
|
58
58
|
- **🔧 Security-Centric**: Built-in honeypot detection, threat leveling, and image forensic analysis.
|
|
59
59
|
- **💻 Terminal-First**: Designed for power users who live in the command line.
|
|
60
60
|
- **🛡️ Cross-Platform**: Works seamlessly on Windows, Linux, and macOS (with auto-download for Windows tunnels).
|
|
@@ -16,7 +16,7 @@ WebTools CLI is an advanced web intelligence suite for researchers, OSINT enthus
|
|
|
16
16
|
|
|
17
17
|
- **🎯 Stealth & Speed**: Smart proxy rotation and Turbo-Fetch logic for evasion and performance.
|
|
18
18
|
- **🧠 AI-Powered**: Automated content summarization, sentiment analysis, and readability scoring.
|
|
19
|
-
- **☁️ Cloud-Native**: Integrated Mega.nz storage
|
|
19
|
+
- **☁️ Cloud-Native**: Integrated Mega.nz storage for seamless media backups and file management.
|
|
20
20
|
- **🔧 Security-Centric**: Built-in honeypot detection, threat leveling, and image forensic analysis.
|
|
21
21
|
- **💻 Terminal-First**: Designed for power users who live in the command line.
|
|
22
22
|
- **🛡️ Cross-Platform**: Works seamlessly on Windows, Linux, and macOS (with auto-download for Windows tunnels).
|