firecrawl 2.16.2__tar.gz → 2.16.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.
Potentially problematic release.
This version of firecrawl might be problematic. Click here for more details.
- {firecrawl-2.16.2 → firecrawl-2.16.3}/PKG-INFO +1 -1
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl/__init__.py +1 -1
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl/firecrawl.py +4 -1
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl.egg-info/PKG-INFO +1 -1
- {firecrawl-2.16.2 → firecrawl-2.16.3}/LICENSE +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/README.md +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl/__tests__/e2e_withAuth/__init__.py +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl/__tests__/e2e_withAuth/test.py +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl/__tests__/v1/e2e_withAuth/__init__.py +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl/__tests__/v1/e2e_withAuth/test.py +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl.egg-info/SOURCES.txt +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl.egg-info/dependency_links.txt +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl.egg-info/requires.txt +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/firecrawl.egg-info/top_level.txt +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/pyproject.toml +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/setup.cfg +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/setup.py +0 -0
- {firecrawl-2.16.2 → firecrawl-2.16.3}/tests/test_change_tracking.py +0 -0
|
@@ -13,7 +13,7 @@ import os
|
|
|
13
13
|
|
|
14
14
|
from .firecrawl import FirecrawlApp, AsyncFirecrawlApp, JsonConfig, ScrapeOptions, ChangeTrackingOptions # noqa
|
|
15
15
|
|
|
16
|
-
__version__ = "2.16.
|
|
16
|
+
__version__ = "2.16.3"
|
|
17
17
|
|
|
18
18
|
# Define the logger for the Firecrawl project
|
|
19
19
|
logger: logging.Logger = logging.getLogger("firecrawl")
|
|
@@ -520,6 +520,9 @@ class FirecrawlApp:
|
|
|
520
520
|
Raises:
|
|
521
521
|
Exception: If scraping fails
|
|
522
522
|
"""
|
|
523
|
+
# Validate any additional kwargs
|
|
524
|
+
self._validate_kwargs(kwargs, "scrape_url")
|
|
525
|
+
|
|
523
526
|
_headers = self._prepare_headers()
|
|
524
527
|
|
|
525
528
|
# Build scrape parameters
|
|
@@ -2597,7 +2600,7 @@ class FirecrawlApp:
|
|
|
2597
2600
|
method_params = {
|
|
2598
2601
|
"scrape_url": {"formats", "include_tags", "exclude_tags", "only_main_content", "wait_for",
|
|
2599
2602
|
"timeout", "location", "mobile", "skip_tls_verification", "remove_base64_images",
|
|
2600
|
-
"block_ads", "proxy", "extract", "json_options", "actions", "change_tracking_options", "integration"},
|
|
2603
|
+
"block_ads", "proxy", "extract", "json_options", "actions", "change_tracking_options", "max_age", "integration"},
|
|
2601
2604
|
"search": {"limit", "tbs", "filter", "lang", "country", "location", "timeout", "scrape_options", "integration"},
|
|
2602
2605
|
"crawl_url": {"include_paths", "exclude_paths", "max_depth", "max_discovery_depth", "limit",
|
|
2603
2606
|
"allow_backward_links", "allow_external_links", "ignore_sitemap", "scrape_options",
|
|
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
|