ScreenX 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.
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2023 structureddata
|
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,123 @@
|
|
1
|
+
Metadata-Version: 2.2
|
2
|
+
Name: ScreenX
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: The Ultimate AI-Powered Web Automation & Scraping Bot
|
5
|
+
Author: Hitarth B
|
6
|
+
Author-email: structureddatadrive@gmail.com
|
7
|
+
License: MIT
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.6
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE.txt
|
14
|
+
Requires-Dist: selenium>=4.24.0
|
15
|
+
Requires-Dist: pandas>=2.2.2
|
16
|
+
Provides-Extra: dev
|
17
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
18
|
+
Requires-Dist: twine>=4.0.2; extra == "dev"
|
19
|
+
Dynamic: author
|
20
|
+
Dynamic: author-email
|
21
|
+
Dynamic: classifier
|
22
|
+
Dynamic: description
|
23
|
+
Dynamic: description-content-type
|
24
|
+
Dynamic: license
|
25
|
+
Dynamic: provides-extra
|
26
|
+
Dynamic: requires-dist
|
27
|
+
Dynamic: requires-python
|
28
|
+
Dynamic: summary
|
29
|
+
|
30
|
+
ScreenX - The Ultimate AI-Powered Web Automation & Scraping Bot
|
31
|
+
|
32
|
+
π Overview
|
33
|
+
|
34
|
+
ScreenX is a powerful Python package designed for intelligent web automation, seamless navigation, and high-speed web scraping. It enables users to interact with websites just like a humanβclick buttons, fill forms, scrape data, handle pop-ups, and more. Whether you're automating repetitive tasks, extracting insights, or interacting with dynamic content, ScreenX simplifies the process.
|
35
|
+
|
36
|
+
π₯ Key Features
|
37
|
+
|
38
|
+
β
Automated Web Navigation β Browse, click, fill forms, and interact dynamically.β
Advanced Web Scraping β Extract real-time data from static & dynamic pages.β
AI-Powered Decision Making β Perform actions based on extracted information.β
Headless Browsing β Run automation without opening a visible browser.β
Anti-Bot Detection Evasion β Mimic human-like behavior & bypass restrictions.β
CAPTCHA Handling β Supports integration with third-party solvers.β
Multi-Threaded Execution β Boost efficiency with parallel scraping.β
Easy-to-Use API β Simple and intuitive function calls for quick deployment.
|
39
|
+
|
40
|
+
π¦ Installation
|
41
|
+
|
42
|
+
ScreenX requires Python 3.6+. Install it using:
|
43
|
+
|
44
|
+
pip install ScreenX
|
45
|
+
|
46
|
+
Additional Dependencies:
|
47
|
+
|
48
|
+
To unlock full capabilities, install:
|
49
|
+
|
50
|
+
pip install selenium beautifulsoup4 requests lxml
|
51
|
+
|
52
|
+
β‘ Quick Start
|
53
|
+
|
54
|
+
Here's a simple example of using ScreenX to navigate a website and scrape data:
|
55
|
+
|
56
|
+
from ScreenX import ScreenX
|
57
|
+
|
58
|
+
bot = ScreenX(headless=True)
|
59
|
+
bot.open("https://example.com")
|
60
|
+
bot.click("Login")
|
61
|
+
bot.fill("username", "your_username")
|
62
|
+
bot.fill("password", "your_password")
|
63
|
+
bot.submit()
|
64
|
+
|
65
|
+
data = bot.scrape(".product-list")
|
66
|
+
print(data)
|
67
|
+
|
68
|
+
bot.close()
|
69
|
+
|
70
|
+
π οΈ Usage Examples
|
71
|
+
|
72
|
+
1οΈβ£ Web Navigation
|
73
|
+
|
74
|
+
bot = ScreenX()
|
75
|
+
bot.open("https://example.com/products")
|
76
|
+
product_names = bot.scrape(".product-title")
|
77
|
+
print(product_names)
|
78
|
+
bot.close()
|
79
|
+
|
80
|
+
2οΈβ£ Automating Form Submission
|
81
|
+
|
82
|
+
bot = ScreenX()
|
83
|
+
bot.open("https://example.com/contact")
|
84
|
+
bot.fill("#name", "John Doe")
|
85
|
+
bot.fill("#email", "john@example.com")
|
86
|
+
bot.fill("#message", "Hello, this is an automated message.")
|
87
|
+
bot.submit("#submit-btn")
|
88
|
+
bot.close()
|
89
|
+
|
90
|
+
3οΈβ£ Handling Dynamic Content
|
91
|
+
|
92
|
+
bot = ScreenX()
|
93
|
+
bot.open("https://example.com")
|
94
|
+
bot.wait_for_element("#dynamic-content")
|
95
|
+
data = bot.scrape("#dynamic-content")
|
96
|
+
print(data)
|
97
|
+
bot.close()
|
98
|
+
|
99
|
+
π Use Cases
|
100
|
+
|
101
|
+
Automate repetitive web tasks (e.g., login, form filling, booking)
|
102
|
+
|
103
|
+
Extract real-time market data (e.g., stock prices, product listings)
|
104
|
+
|
105
|
+
Monitor e-commerce websites (e.g., price tracking, product availability)
|
106
|
+
|
107
|
+
Automate social media interactions (e.g., liking, following, commenting)
|
108
|
+
|
109
|
+
Competitor Analysis & SEO Tracking
|
110
|
+
|
111
|
+
π€ Contributions
|
112
|
+
|
113
|
+
We welcome contributions! Feel free to submit issues, feature requests, or pull requests via GitHub.
|
114
|
+
|
115
|
+
π License
|
116
|
+
|
117
|
+
ScreenX is licensed under the MIT License.
|
118
|
+
|
119
|
+
π§ Contact
|
120
|
+
|
121
|
+
For any queries or support, reach out via your-email@example.com or open an issue on GitHub.
|
122
|
+
|
123
|
+
π Automate, Scrape, and Navigate the Web Like a Pro with We
|
@@ -0,0 +1,5 @@
|
|
1
|
+
screenx-0.0.1.dist-info/LICENSE.txt,sha256=jvPz4O2f9EcFbKHop6kD-f8A8CfH3cDJLKit9j71Y9w,1070
|
2
|
+
screenx-0.0.1.dist-info/METADATA,sha256=-bfrshzHhB9UrooJFdFfWWkirmulAazbgAUxouP2dw8,3819
|
3
|
+
screenx-0.0.1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
4
|
+
screenx-0.0.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
5
|
+
screenx-0.0.1.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
|