This commit is contained in:
Nicolas 2025-04-18 13:44:16 -07:00
parent c7df80e2a8
commit 2c72097c3f
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import os
from .firecrawl import FirecrawlApp, JsonConfig, ScrapeOptions # noqa from .firecrawl import FirecrawlApp, JsonConfig, ScrapeOptions # noqa
__version__ = "2.1.0" __version__ = "2.1.1"
# Define the logger for the Firecrawl project # Define the logger for the Firecrawl project
logger: logging.Logger = logging.getLogger("firecrawl") logger: logging.Logger = logging.getLogger("firecrawl")

View File

@ -3153,7 +3153,6 @@ class AsyncFirecrawlApp(FirecrawlApp):
response = await self._async_post_request( response = await self._async_post_request(
f'{self.api_url}/v1/crawl', params_dict, headers) f'{self.api_url}/v1/crawl', params_dict, headers)
print(response)
if response.get('success'): if response.get('success'):
try: try:
id = response.get('id') id = response.get('id')