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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 2.16.2
3
+ Version: 2.16.3
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
@@ -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.2"
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",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 2.16.2
3
+ Version: 2.16.3
4
4
  Summary: Python SDK for Firecrawl API
5
5
  Home-page: https://github.com/mendableai/firecrawl
6
6
  Author: Mendable.ai
File without changes
File without changes
File without changes
File without changes
File without changes