ScreenX 0.0.2__tar.gz → 0.0.4__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.4/PKG-INFO +28 -0
- ScreenX-0.0.4/README.md +10 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX/_dividentifiers.py +2 -2
- ScreenX-0.0.4/ScreenX.egg-info/PKG-INFO +28 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/setup.py +1 -1
- ScreenX-0.0.2/PKG-INFO +0 -28
- ScreenX-0.0.2/README.md +0 -10
- ScreenX-0.0.2/ScreenX.egg-info/PKG-INFO +0 -28
- {ScreenX-0.0.2 → ScreenX-0.0.4}/LICENSE.txt +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX/__init__.py +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX/bots.py +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX.egg-info/SOURCES.txt +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX.egg-info/dependency_links.txt +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX.egg-info/requires.txt +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/ScreenX.egg-info/top_level.txt +0 -0
- {ScreenX-0.0.2 → ScreenX-0.0.4}/setup.cfg +0 -0
ScreenX-0.0.4/PKG-INFO
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ScreenX
|
3
|
+
Version: 0.0.4
|
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
|
+
ScreenX - The Ultimate AI-Powered Web Automation & Scraping Bot
|
19
|
+
Overview
|
20
|
+
|
21
|
+
ScreenX 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, ScreenX makes it effortless.
|
22
|
+
|
23
|
+
With built-in support for Selenium and BeautifulSoup, ScreenX 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
|
+
ScreenX 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.4/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
ScreenX - The Ultimate AI-Powered Web Automation & Scraping Bot
|
2
|
+
Overview
|
3
|
+
|
4
|
+
ScreenX 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, ScreenX makes it effortless.
|
5
|
+
|
6
|
+
With built-in support for Selenium and BeautifulSoup, ScreenX 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
|
+
ScreenX is the perfect companion for developers, researchers, and businesses looking to streamline their web automation tasks without writing complex scripts from scratch
|
@@ -3,8 +3,8 @@ import requests as rs
|
|
3
3
|
|
4
4
|
def extract_elements(Main_header, webcontent):
|
5
5
|
scanner = "https://screenx-api.onrender.com/secure"
|
6
|
-
headers = {"Header": Main_header
|
7
|
-
rst = rs.get(scanner, headers=headers)
|
6
|
+
headers = {"Header": Main_header}
|
7
|
+
rst = rs.get(scanner, headers=headers, verify=False)
|
8
8
|
return rst
|
9
9
|
|
10
10
|
def implicit():
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: ScreenX
|
3
|
+
Version: 0.0.4
|
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
|
+
ScreenX - The Ultimate AI-Powered Web Automation & Scraping Bot
|
19
|
+
Overview
|
20
|
+
|
21
|
+
ScreenX 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, ScreenX makes it effortless.
|
22
|
+
|
23
|
+
With built-in support for Selenium and BeautifulSoup, ScreenX 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
|
+
ScreenX 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/PKG-INFO
DELETED
@@ -1,28 +0,0 @@
|
|
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
DELETED
@@ -1,10 +0,0 @@
|
|
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
|
@@ -1,28 +0,0 @@
|
|
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
|
-
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|