phantomfetch 0.5.2__tar.gz → 0.5.3__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.
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/PKG-INFO +1 -1
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/pyproject.toml +1 -1
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/engines/browser/actions.py +1 -2
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/README.md +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/__init__.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/cache.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/captcha.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/engines/__init__.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/engines/base.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/engines/browser/__init__.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/engines/browser/cdp.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/engines/curl.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/fetch.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/pool.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/telemetry.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/tools/selector_builder.py +0 -0
- {phantomfetch-0.5.2 → phantomfetch-0.5.3}/src/phantomfetch/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: phantomfetch
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.3
|
|
4
4
|
Summary: High-performance agentic web scraping library combining curl-cffi speed with Playwright browser capabilities
|
|
5
5
|
Keywords: web-scraping,playwright,curl-cffi,async,browser-automation,http-client,agentic,anti-detection
|
|
6
6
|
Author: CosmicBull
|
|
@@ -581,8 +581,7 @@ async def execute_actions(
|
|
|
581
581
|
kwargs[k] = v
|
|
582
582
|
|
|
583
583
|
img_bytes = await screenshot_ctx.screenshot(path=path, **kwargs)
|
|
584
|
-
|
|
585
|
-
result.data = img_bytes
|
|
584
|
+
result.data = img_bytes
|
|
586
585
|
|
|
587
586
|
case "wait_for_load":
|
|
588
587
|
target_page = ctx if isinstance(ctx, Page) else ctx.page
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|