ScreenX 0.0.1__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.
- screenx-0.0.1/LICENSE.txt +21 -0
- screenx-0.0.1/PKG-INFO +123 -0
- screenx-0.0.1/README.md +94 -0
- screenx-0.0.1/ScreenX/ScreenX.egg-info/PKG-INFO +123 -0
- screenx-0.0.1/ScreenX/ScreenX.egg-info/SOURCES.txt +8 -0
- screenx-0.0.1/ScreenX/ScreenX.egg-info/dependency_links.txt +1 -0
- screenx-0.0.1/ScreenX/ScreenX.egg-info/requires.txt +6 -0
- screenx-0.0.1/ScreenX/ScreenX.egg-info/top_level.txt +1 -0
- screenx-0.0.1/setup.cfg +4 -0
- screenx-0.0.1/setup.py +47 -0
@@ -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.
|
screenx-0.0.1/PKG-INFO
ADDED
@@ -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
|
screenx-0.0.1/README.md
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
ScreenX - The Ultimate AI-Powered Web Automation & Scraping Bot
|
2
|
+
|
3
|
+
🚀 Overview
|
4
|
+
|
5
|
+
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.
|
6
|
+
|
7
|
+
🔥 Key Features
|
8
|
+
|
9
|
+
✅ 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.
|
10
|
+
|
11
|
+
📦 Installation
|
12
|
+
|
13
|
+
ScreenX requires Python 3.6+. Install it using:
|
14
|
+
|
15
|
+
pip install ScreenX
|
16
|
+
|
17
|
+
Additional Dependencies:
|
18
|
+
|
19
|
+
To unlock full capabilities, install:
|
20
|
+
|
21
|
+
pip install selenium beautifulsoup4 requests lxml
|
22
|
+
|
23
|
+
⚡ Quick Start
|
24
|
+
|
25
|
+
Here's a simple example of using ScreenX to navigate a website and scrape data:
|
26
|
+
|
27
|
+
from ScreenX import ScreenX
|
28
|
+
|
29
|
+
bot = ScreenX(headless=True)
|
30
|
+
bot.open("https://example.com")
|
31
|
+
bot.click("Login")
|
32
|
+
bot.fill("username", "your_username")
|
33
|
+
bot.fill("password", "your_password")
|
34
|
+
bot.submit()
|
35
|
+
|
36
|
+
data = bot.scrape(".product-list")
|
37
|
+
print(data)
|
38
|
+
|
39
|
+
bot.close()
|
40
|
+
|
41
|
+
🛠️ Usage Examples
|
42
|
+
|
43
|
+
1️⃣ Web Navigation
|
44
|
+
|
45
|
+
bot = ScreenX()
|
46
|
+
bot.open("https://example.com/products")
|
47
|
+
product_names = bot.scrape(".product-title")
|
48
|
+
print(product_names)
|
49
|
+
bot.close()
|
50
|
+
|
51
|
+
2️⃣ Automating Form Submission
|
52
|
+
|
53
|
+
bot = ScreenX()
|
54
|
+
bot.open("https://example.com/contact")
|
55
|
+
bot.fill("#name", "John Doe")
|
56
|
+
bot.fill("#email", "john@example.com")
|
57
|
+
bot.fill("#message", "Hello, this is an automated message.")
|
58
|
+
bot.submit("#submit-btn")
|
59
|
+
bot.close()
|
60
|
+
|
61
|
+
3️⃣ Handling Dynamic Content
|
62
|
+
|
63
|
+
bot = ScreenX()
|
64
|
+
bot.open("https://example.com")
|
65
|
+
bot.wait_for_element("#dynamic-content")
|
66
|
+
data = bot.scrape("#dynamic-content")
|
67
|
+
print(data)
|
68
|
+
bot.close()
|
69
|
+
|
70
|
+
🌍 Use Cases
|
71
|
+
|
72
|
+
Automate repetitive web tasks (e.g., login, form filling, booking)
|
73
|
+
|
74
|
+
Extract real-time market data (e.g., stock prices, product listings)
|
75
|
+
|
76
|
+
Monitor e-commerce websites (e.g., price tracking, product availability)
|
77
|
+
|
78
|
+
Automate social media interactions (e.g., liking, following, commenting)
|
79
|
+
|
80
|
+
Competitor Analysis & SEO Tracking
|
81
|
+
|
82
|
+
🤝 Contributions
|
83
|
+
|
84
|
+
We welcome contributions! Feel free to submit issues, feature requests, or pull requests via GitHub.
|
85
|
+
|
86
|
+
📜 License
|
87
|
+
|
88
|
+
ScreenX is licensed under the MIT License.
|
89
|
+
|
90
|
+
📧 Contact
|
91
|
+
|
92
|
+
For any queries or support, reach out via your-email@example.com or open an issue on GitHub.
|
93
|
+
|
94
|
+
🚀 Automate, Scrape, and Navigate the Web Like a Pro with We
|
@@ -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 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
|
screenx-0.0.1/setup.cfg
ADDED
screenx-0.0.1/setup.py
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
from setuptools import find_packages, setup
|
2
|
+
|
3
|
+
with open("README.md", "r") as f:
|
4
|
+
long_description = f.read()
|
5
|
+
|
6
|
+
setup(
|
7
|
+
# name="ScrapeX",
|
8
|
+
name="ScreenX",
|
9
|
+
version="0.0.1",
|
10
|
+
description='''The Ultimate AI-Powered Web Automation & Scraping Bot
|
11
|
+
ScreenX is a next-generation Python package designed to automate web interactions, intelligently navigate websites, and extract valuable data—all with minimal effort. Whether you're looking to automate repetitive web tasks, interact with dynamic content, or scrape large datasets, ScreenX provides a seamless and efficient solution.
|
12
|
+
|
13
|
+
Powered by Selenium, BeautifulSoup, and AI-driven decision-making, ScreenX can mimic human-like browsing behavior, fill forms, click buttons, handle pop-ups, and even bypass anti-bot mechanisms. It supports headless browsing for efficiency, multi-threading for high-speed scraping, and CAPTCHA-solving integration for uninterrupted automation.
|
14
|
+
|
15
|
+
With an intuitive API, ScreenX allows users to define actions dynamically, making it perfect for automated research, e-commerce monitoring, social media engagement, and competitor analysis. Whether you need real-time data extraction or full-scale website interaction, ScreenX is your go-to automation toolkit.
|
16
|
+
|
17
|
+
Designed for developers, businesses, and researchers alike, ScreenX eliminates the complexity of web automation—letting you focus on results, not code. 🚀
|
18
|
+
|
19
|
+
✅ Key Features:
|
20
|
+
✔️ Intelligent Web Navigation & Automation
|
21
|
+
✔️ Advanced Web Scraping with Dynamic Handling
|
22
|
+
✔️ AI-Powered Decision Making & Interaction
|
23
|
+
✔️ Headless Browsing for High Performance
|
24
|
+
✔️ Anti-Bot Detection Evasion & CAPTCHA Handling
|
25
|
+
✔️ Multi-Threaded Scraping for Faster Execution
|
26
|
+
✔️ Easy-to-Use API for Seamless Integration
|
27
|
+
|
28
|
+
Say goodbye to manual web interactions—ScreenX does it all for you! 🕵️♂️💻''',
|
29
|
+
package_dir={"": "ScreenX"},
|
30
|
+
packages=find_packages(where='ScreenX'),
|
31
|
+
long_description=long_description,
|
32
|
+
long_description_content_type="text/markdown",
|
33
|
+
# url="https://github.com/ArjanCodes/2023-package",
|
34
|
+
author="Hitarth B",
|
35
|
+
author_email="structureddatadrive@gmail.com",
|
36
|
+
license="MIT",
|
37
|
+
classifiers=[
|
38
|
+
"License :: OSI Approved :: MIT License",
|
39
|
+
"Programming Language :: Python :: 3",
|
40
|
+
"Operating System :: OS Independent",
|
41
|
+
],
|
42
|
+
install_requires=["selenium >= 4.24.0","pandas>=2.2.2"],
|
43
|
+
extras_require={
|
44
|
+
"dev": ["pytest>=7.0", "twine>=4.0.2"],
|
45
|
+
},
|
46
|
+
python_requires=">=3.6",
|
47
|
+
)
|