webtools-cli 1.0.0__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Abhinav Adarsh
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: webtools-cli
3
+ Version: 1.0.0
4
+ Summary: Advanced Web Intelligence & Scraping Toolkit with CLI and Web UI
5
+ Author: Abhinav Adarsh
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/abhinavgautam08/webtools
8
+ Keywords: web-scraping,osint,seo,intelligence,cli
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Internet :: WWW/HTTP
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: flask
23
+ Requires-Dist: requests
24
+ Requires-Dist: beautifulsoup4
25
+ Requires-Dist: qrcode
26
+ Requires-Dist: opencv-python
27
+ Requires-Dist: numpy
28
+ Requires-Dist: textblob
29
+ Requires-Dist: Pillow
30
+ Requires-Dist: mtranslate
31
+ Requires-Dist: colorama
32
+ Requires-Dist: pyreadline3; platform_system == "Windows"
33
+ Provides-Extra: playwright
34
+ Requires-Dist: playwright; extra == "playwright"
35
+ Dynamic: license-file
36
+
37
+ <p align="center">
38
+ <img src="Web_Tools.png" alt="WebTools CLI" width="180">
39
+ </p>
40
+
41
+ <h1 align="center">WebTools CLI</h1>
42
+
43
+ <p align="center">
44
+ <strong>Advanced Web Intelligence & Scraping Toolkit</strong><br>
45
+ <em>OSINT - SEO - AI Analysis - Security Scanner</em>
46
+ </p>
47
+
48
+ <p align="center">
49
+ <img src="https://img.shields.io/badge/python-3.9+-blue?logo=python&logoColor=white" alt="Python">
50
+ <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
51
+ <img src="https://img.shields.io/badge/version-1.0.0-cyan" alt="Version">
52
+ </p>
53
+
54
+ ---
55
+
56
+ ## Install
57
+
58
+ ```bash
59
+ pip install webtools-cli
60
+ ```
61
+
62
+ ## Usage
63
+
64
+ ```bash
65
+ # Launch CLI
66
+ webtools
67
+
68
+ # Or via Python module
69
+ python -m webtools
70
+ ```
71
+
72
+ ## Features
73
+
74
+ | Feature | Description |
75
+ |---------|-------------|
76
+ | **Web Mode** | Full web UI with Cloudflare tunnel + QR code sharing |
77
+ | **CLI Intelligence** | Deep scan any URL from terminal |
78
+ | **Security Scanner** | Threat detection, honeypot traps, CSRF checks |
79
+ | **SEO Analyzer** | Score, headings, broken links, image audit |
80
+ | **AI Analysis** | Sentiment, readability, keywords, summarization |
81
+ | **OSINT** | Emails, phones, locations, social media, tech stack |
82
+ | **Smart Media** | Image quality filter + video deep-scan with sniffer |
83
+ | **Proxy Intelligence** | Smart proxy rotation with learning algorithm |
84
+ | **Playwright Fallback** | Handles SPAs and auth walls automatically |
85
+ | **Performance Tracker** | Phase-by-phase timing with historical stats |
86
+
87
+ ## CLI Commands
88
+
89
+ | Command | Description |
90
+ |---------|-------------|
91
+ | `/web` or `/w` | Launch Web UI mode |
92
+ | `/cli` or `/c` | Launch CLI Intelligence mode |
93
+ | `/image` or `/i` | Image Forensics & AI Detection |
94
+ | `/help` or `/h` | Show all commands |
95
+ | `/history` or `/hi` | View scan history |
96
+ | `/clear` | Purge scraped data |
97
+ | `/quit` or `/q` | Exit |
98
+
99
+ ## Requirements
100
+
101
+ - Python 3.9+
102
+ - Optional: `playwright` for SPA/auth wall bypass
103
+
104
+ ## Author
105
+
106
+ **Abhinav Adarsh**
107
+
108
+ ## License
109
+
110
+ MIT
@@ -0,0 +1,74 @@
1
+ <p align="center">
2
+ <img src="Web_Tools.png" alt="WebTools CLI" width="180">
3
+ </p>
4
+
5
+ <h1 align="center">WebTools CLI</h1>
6
+
7
+ <p align="center">
8
+ <strong>Advanced Web Intelligence & Scraping Toolkit</strong><br>
9
+ <em>OSINT - SEO - AI Analysis - Security Scanner</em>
10
+ </p>
11
+
12
+ <p align="center">
13
+ <img src="https://img.shields.io/badge/python-3.9+-blue?logo=python&logoColor=white" alt="Python">
14
+ <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
15
+ <img src="https://img.shields.io/badge/version-1.0.0-cyan" alt="Version">
16
+ </p>
17
+
18
+ ---
19
+
20
+ ## Install
21
+
22
+ ```bash
23
+ pip install webtools-cli
24
+ ```
25
+
26
+ ## Usage
27
+
28
+ ```bash
29
+ # Launch CLI
30
+ webtools
31
+
32
+ # Or via Python module
33
+ python -m webtools
34
+ ```
35
+
36
+ ## Features
37
+
38
+ | Feature | Description |
39
+ |---------|-------------|
40
+ | **Web Mode** | Full web UI with Cloudflare tunnel + QR code sharing |
41
+ | **CLI Intelligence** | Deep scan any URL from terminal |
42
+ | **Security Scanner** | Threat detection, honeypot traps, CSRF checks |
43
+ | **SEO Analyzer** | Score, headings, broken links, image audit |
44
+ | **AI Analysis** | Sentiment, readability, keywords, summarization |
45
+ | **OSINT** | Emails, phones, locations, social media, tech stack |
46
+ | **Smart Media** | Image quality filter + video deep-scan with sniffer |
47
+ | **Proxy Intelligence** | Smart proxy rotation with learning algorithm |
48
+ | **Playwright Fallback** | Handles SPAs and auth walls automatically |
49
+ | **Performance Tracker** | Phase-by-phase timing with historical stats |
50
+
51
+ ## CLI Commands
52
+
53
+ | Command | Description |
54
+ |---------|-------------|
55
+ | `/web` or `/w` | Launch Web UI mode |
56
+ | `/cli` or `/c` | Launch CLI Intelligence mode |
57
+ | `/image` or `/i` | Image Forensics & AI Detection |
58
+ | `/help` or `/h` | Show all commands |
59
+ | `/history` or `/hi` | View scan history |
60
+ | `/clear` | Purge scraped data |
61
+ | `/quit` or `/q` | Exit |
62
+
63
+ ## Requirements
64
+
65
+ - Python 3.9+
66
+ - Optional: `playwright` for SPA/auth wall bypass
67
+
68
+ ## Author
69
+
70
+ **Abhinav Adarsh**
71
+
72
+ ## License
73
+
74
+ MIT
@@ -0,0 +1,55 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "webtools-cli"
7
+ version = "1.0.0"
8
+ description = "Advanced Web Intelligence & Scraping Toolkit with CLI and Web UI"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.9"
12
+ authors = [
13
+ {name = "Abhinav Adarsh"},
14
+ ]
15
+ keywords = ["web-scraping", "osint", "seo", "intelligence", "cli"]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Environment :: Console",
19
+ "Intended Audience :: Developers",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Topic :: Internet :: WWW/HTTP",
27
+ ]
28
+ dependencies = [
29
+ "flask",
30
+ "requests",
31
+ "beautifulsoup4",
32
+ "qrcode",
33
+ "opencv-python",
34
+ "numpy",
35
+ "textblob",
36
+ "Pillow",
37
+ "mtranslate",
38
+ "colorama",
39
+ "pyreadline3; platform_system == 'Windows'",
40
+ ]
41
+
42
+ [project.optional-dependencies]
43
+ playwright = ["playwright"]
44
+
45
+ [project.scripts]
46
+ webtools = "webtools.cli:main"
47
+
48
+ [project.urls]
49
+ Homepage = "https://github.com/abhinavgautam08/webtools"
50
+
51
+ [tool.setuptools.packages.find]
52
+ include = ["webtools*"]
53
+
54
+ [tool.setuptools.package-data]
55
+ webtools = ["web/*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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"
@@ -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()
@@ -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()