firecrawl 2.4.0__tar.gz → 2.4.1__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.4.0
3
+ Version: 2.4.1
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, JsonConfig, ScrapeOptions # noqa
15
15
 
16
- __version__ = "2.4.0"
16
+ __version__ = "2.4.1"
17
17
 
18
18
  # Define the logger for the Firecrawl project
19
19
  logger: logging.Logger = logging.getLogger("firecrawl")
@@ -210,6 +210,7 @@ class ScrapeParams(ScrapeOptions):
210
210
  jsonOptions: Optional[JsonConfig] = None
211
211
  actions: Optional[List[Union[WaitAction, ScreenshotAction, ClickAction, WriteAction, PressAction, ScrollAction, ScrapeAction, ExecuteJavascriptAction]]] = None
212
212
  agent: Optional[AgentOptions] = None
213
+ webhook: Optional[WebhookConfig] = None
213
214
 
214
215
  class ScrapeResponse(FirecrawlDocument[T], Generic[T]):
215
216
  """Response from scraping operations."""
@@ -2432,15 +2433,15 @@ class FirecrawlApp:
2432
2433
  "batch_scrape_urls": {"formats", "headers", "include_tags", "exclude_tags", "only_main_content",
2433
2434
  "wait_for", "timeout", "location", "mobile", "skip_tls_verification",
2434
2435
  "remove_base64_images", "block_ads", "proxy", "extract", "json_options",
2435
- "actions", "agent"},
2436
+ "actions", "agent", "webhook"},
2436
2437
  "async_batch_scrape_urls": {"formats", "headers", "include_tags", "exclude_tags", "only_main_content",
2437
2438
  "wait_for", "timeout", "location", "mobile", "skip_tls_verification",
2438
2439
  "remove_base64_images", "block_ads", "proxy", "extract", "json_options",
2439
- "actions", "agent"},
2440
+ "actions", "agent", "webhook"},
2440
2441
  "batch_scrape_urls_and_watch": {"formats", "headers", "include_tags", "exclude_tags", "only_main_content",
2441
2442
  "wait_for", "timeout", "location", "mobile", "skip_tls_verification",
2442
2443
  "remove_base64_images", "block_ads", "proxy", "extract", "json_options",
2443
- "actions", "agent"}
2444
+ "actions", "agent", "webhook"}
2444
2445
  }
2445
2446
 
2446
2447
  # Get allowed parameters for this method
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: firecrawl
3
- Version: 2.4.0
3
+ Version: 2.4.1
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