ScreenX 0.0.1__tar.gz → 0.0.2__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.2/PKG-INFO +28 -0
- ScreenX-0.0.2/README.md +10 -0
- ScreenX-0.0.2/ScreenX/__init__.py +11 -0
- ScreenX-0.0.2/ScreenX/_dividentifiers.py +18 -0
- ScreenX-0.0.2/ScreenX/bots.py +33 -0
- ScreenX-0.0.2/ScreenX.egg-info/PKG-INFO +28 -0
- ScreenX-0.0.2/ScreenX.egg-info/SOURCES.txt +11 -0
- ScreenX-0.0.2/ScreenX.egg-info/top_level.txt +1 -0
- {screenx-0.0.1 → ScreenX-0.0.2}/setup.cfg +4 -4
- ScreenX-0.0.2/setup.py +29 -0
- screenx-0.0.1/PKG-INFO +0 -123
- screenx-0.0.1/README.md +0 -94
- screenx-0.0.1/ScreenX/ScreenX.egg-info/PKG-INFO +0 -123
- screenx-0.0.1/ScreenX/ScreenX.egg-info/SOURCES.txt +0 -8
- screenx-0.0.1/ScreenX/ScreenX.egg-info/top_level.txt +0 -1
- screenx-0.0.1/setup.py +0 -47
- {screenx-0.0.1 → ScreenX-0.0.2}/LICENSE.txt +0 -0
- {screenx-0.0.1/ScreenX → ScreenX-0.0.2}/ScreenX.egg-info/dependency_links.txt +0 -0
- {screenx-0.0.1/ScreenX → ScreenX-0.0.2}/ScreenX.egg-info/requires.txt +0 -0
ScreenX-0.0.2/PKG-INFO
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ScreenX
|
3
|
+
Version: 0.0.2
|
4
|
+
Summary: The Ultimate AI-Powered Web Automation & Scraping Bot
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: David C
|
7
|
+
Author-email: structureddatadrive@gmail.com
|
8
|
+
License: MIT
|
9
|
+
Platform: UNKNOWN
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Requires-Python: >=3.6
|
14
|
+
Description-Content-Type: text/markdown
|
15
|
+
Provides-Extra: dev
|
16
|
+
License-File: LICENSE.txt
|
17
|
+
|
18
|
+
ScreenX3 - The Ultimate AI-Powered Web Automation & Scraping Bot
|
19
|
+
Overview
|
20
|
+
|
21
|
+
ScreenX3 is a powerful and flexible Python package designed for seamless web automation, intelligent navigation, and efficient web scraping. Whether you need to automate form submissions, interact with dynamic web pages, or extract valuable data from websites, ScreenX3 makes it effortless.
|
22
|
+
|
23
|
+
With built-in support for Selenium and BeautifulSoup, ScreenX3 can mimic human-like browsing behavior, handle user inputs, click buttons, fill forms, and navigate multiple pages with ease. It also includes smart delay mechanisms to avoid detection and bypass anti-bot measures.
|
24
|
+
|
25
|
+
Key features include headless browsing, session persistence, CAPTCHA handling support, and multi-threaded scraping for high-speed data extraction. The package is easy to integrate with AI-based decision-making models, making it ideal for automated research, price tracking, social media interactions, and much more.
|
26
|
+
|
27
|
+
ScreenX3 is the perfect companion for developers, researchers, and businesses looking to streamline their web automation tasks without writing complex scripts from scratch
|
28
|
+
|
ScreenX-0.0.2/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
ScreenX3 - The Ultimate AI-Powered Web Automation & Scraping Bot
|
2
|
+
Overview
|
3
|
+
|
4
|
+
ScreenX3 is a powerful and flexible Python package designed for seamless web automation, intelligent navigation, and efficient web scraping. Whether you need to automate form submissions, interact with dynamic web pages, or extract valuable data from websites, ScreenX3 makes it effortless.
|
5
|
+
|
6
|
+
With built-in support for Selenium and BeautifulSoup, ScreenX3 can mimic human-like browsing behavior, handle user inputs, click buttons, fill forms, and navigate multiple pages with ease. It also includes smart delay mechanisms to avoid detection and bypass anti-bot measures.
|
7
|
+
|
8
|
+
Key features include headless browsing, session persistence, CAPTCHA handling support, and multi-threaded scraping for high-speed data extraction. The package is easy to integrate with AI-based decision-making models, making it ideal for automated research, price tracking, social media interactions, and much more.
|
9
|
+
|
10
|
+
ScreenX3 is the perfect companion for developers, researchers, and businesses looking to streamline their web automation tasks without writing complex scripts from scratch
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import time
|
2
|
+
import requests as rs
|
3
|
+
|
4
|
+
def extract_elements(Main_header, webcontent):
|
5
|
+
scanner = "https://screenx-api.onrender.com/secure"
|
6
|
+
headers = {"Header": Main_header, 'webcontent': webcontent}
|
7
|
+
rst = rs.get(scanner, headers=headers)
|
8
|
+
return rst
|
9
|
+
|
10
|
+
def implicit():
|
11
|
+
time.sleep(3)
|
12
|
+
return None
|
13
|
+
|
14
|
+
def explicit():
|
15
|
+
time.sleep(30)
|
16
|
+
return None
|
17
|
+
|
18
|
+
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import requests
|
2
|
+
from ._dividentifiers import extract_elements
|
3
|
+
|
4
|
+
|
5
|
+
def div_identifier(header,content):
|
6
|
+
try:
|
7
|
+
element = extract_elements(Main_header = header, webcontent=content).json()['webpage_elements']
|
8
|
+
return element
|
9
|
+
except Exception as e:
|
10
|
+
print(f"Error: {e}")
|
11
|
+
return None
|
12
|
+
|
13
|
+
##################### Old packages ############################
|
14
|
+
def Romulus(header, html):
|
15
|
+
if html is None:
|
16
|
+
element_name = extract_elements(Main_header = header, webcontent=html).json()['webpage_elements']
|
17
|
+
return element_name['div5']
|
18
|
+
else:
|
19
|
+
raise ValueError("Invalid HTML content")
|
20
|
+
|
21
|
+
def Marcius(header, webelements):
|
22
|
+
if webelement is None:
|
23
|
+
element_name = extract_elements(Main_header = header, webcontent=webelements).json()['webpage_elements']
|
24
|
+
return element_name['div6']
|
25
|
+
else:
|
26
|
+
raise ValueError("Invalid HTML content")
|
27
|
+
|
28
|
+
def navigator(header, elements):
|
29
|
+
if html is None:
|
30
|
+
element_name = extract_elements(Main_header = header, webcontent=elements).json()['webpage_elements']
|
31
|
+
return element_name['div7']
|
32
|
+
else:
|
33
|
+
raise ValueError("Invalid HTML content")
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ScreenX
|
3
|
+
Version: 0.0.2
|
4
|
+
Summary: The Ultimate AI-Powered Web Automation & Scraping Bot
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: David C
|
7
|
+
Author-email: structureddatadrive@gmail.com
|
8
|
+
License: MIT
|
9
|
+
Platform: UNKNOWN
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
12
|
+
Classifier: Operating System :: OS Independent
|
13
|
+
Requires-Python: >=3.6
|
14
|
+
Description-Content-Type: text/markdown
|
15
|
+
Provides-Extra: dev
|
16
|
+
License-File: LICENSE.txt
|
17
|
+
|
18
|
+
ScreenX3 - The Ultimate AI-Powered Web Automation & Scraping Bot
|
19
|
+
Overview
|
20
|
+
|
21
|
+
ScreenX3 is a powerful and flexible Python package designed for seamless web automation, intelligent navigation, and efficient web scraping. Whether you need to automate form submissions, interact with dynamic web pages, or extract valuable data from websites, ScreenX3 makes it effortless.
|
22
|
+
|
23
|
+
With built-in support for Selenium and BeautifulSoup, ScreenX3 can mimic human-like browsing behavior, handle user inputs, click buttons, fill forms, and navigate multiple pages with ease. It also includes smart delay mechanisms to avoid detection and bypass anti-bot measures.
|
24
|
+
|
25
|
+
Key features include headless browsing, session persistence, CAPTCHA handling support, and multi-threaded scraping for high-speed data extraction. The package is easy to integrate with AI-based decision-making models, making it ideal for automated research, price tracking, social media interactions, and much more.
|
26
|
+
|
27
|
+
ScreenX3 is the perfect companion for developers, researchers, and businesses looking to streamline their web automation tasks without writing complex scripts from scratch
|
28
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
LICENSE.txt
|
2
|
+
README.md
|
3
|
+
setup.py
|
4
|
+
ScreenX/__init__.py
|
5
|
+
ScreenX/_dividentifiers.py
|
6
|
+
ScreenX/bots.py
|
7
|
+
ScreenX.egg-info/PKG-INFO
|
8
|
+
ScreenX.egg-info/SOURCES.txt
|
9
|
+
ScreenX.egg-info/dependency_links.txt
|
10
|
+
ScreenX.egg-info/requires.txt
|
11
|
+
ScreenX.egg-info/top_level.txt
|
@@ -0,0 +1 @@
|
|
1
|
+
ScreenX
|
@@ -1,4 +1,4 @@
|
|
1
|
-
[egg_info]
|
2
|
-
tag_build =
|
3
|
-
tag_date = 0
|
4
|
-
|
1
|
+
[egg_info]
|
2
|
+
tag_build =
|
3
|
+
tag_date = 0
|
4
|
+
|
ScreenX-0.0.2/setup.py
ADDED
@@ -0,0 +1,29 @@
|
|
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.2",
|
10
|
+
description='''The Ultimate AI-Powered Web Automation & Scraping Bot''',
|
11
|
+
# package_dir={"": "ScreenX"},
|
12
|
+
packages=find_packages(),
|
13
|
+
long_description=long_description,
|
14
|
+
long_description_content_type="text/markdown",
|
15
|
+
# url="https://github.com/ArjanCodes/2023-package",
|
16
|
+
author="David C",
|
17
|
+
author_email="structureddatadrive@gmail.com",
|
18
|
+
license="MIT",
|
19
|
+
classifiers=[
|
20
|
+
"License :: OSI Approved :: MIT License",
|
21
|
+
"Programming Language :: Python :: 3",
|
22
|
+
"Operating System :: OS Independent",
|
23
|
+
],
|
24
|
+
install_requires=["selenium >= 4.24.0","pandas>=2.2.2"],
|
25
|
+
extras_require={
|
26
|
+
"dev": ["pytest>=7.0", "twine>=4.0.2"],
|
27
|
+
},
|
28
|
+
python_requires=">=3.6",
|
29
|
+
)
|
screenx-0.0.1/PKG-INFO
DELETED
@@ -1,123 +0,0 @@
|
|
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
DELETED
@@ -1,94 +0,0 @@
|
|
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
|
@@ -1,123 +0,0 @@
|
|
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
|
@@ -1 +0,0 @@
|
|
1
|
-
|
screenx-0.0.1/setup.py
DELETED
@@ -1,47 +0,0 @@
|
|
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
|
-
)
|
File without changes
|
File without changes
|
File without changes
|