firecrawl 2.16.0__tar.gz → 2.16.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.
- {firecrawl-2.16.0 → firecrawl-2.16.1}/PKG-INFO +1 -1
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl/__init__.py +1 -1
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl/firecrawl.py +3 -3
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl.egg-info/PKG-INFO +1 -1
- {firecrawl-2.16.0 → firecrawl-2.16.1}/LICENSE +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/README.md +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl/__tests__/e2e_withAuth/__init__.py +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl/__tests__/e2e_withAuth/test.py +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl/__tests__/v1/e2e_withAuth/__init__.py +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl/__tests__/v1/e2e_withAuth/test.py +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl.egg-info/SOURCES.txt +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl.egg-info/dependency_links.txt +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl.egg-info/requires.txt +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/firecrawl.egg-info/top_level.txt +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/pyproject.toml +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/setup.cfg +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/setup.py +0 -0
- {firecrawl-2.16.0 → firecrawl-2.16.1}/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.1"
|
|
17
17
|
|
|
18
18
|
# Define the logger for the Firecrawl project
|
|
19
19
|
logger: logging.Logger = logging.getLogger("firecrawl")
|
|
@@ -3374,7 +3374,7 @@ class AsyncFirecrawlApp(FirecrawlApp):
|
|
|
3374
3374
|
except:
|
|
3375
3375
|
raise Exception(f'Failed to parse Firecrawl response as JSON.')
|
|
3376
3376
|
else:
|
|
3377
|
-
self._handle_error(response, 'start batch scrape job')
|
|
3377
|
+
await self._handle_error(response, 'start batch scrape job')
|
|
3378
3378
|
|
|
3379
3379
|
async def crawl_url(
|
|
3380
3380
|
self,
|
|
@@ -3493,7 +3493,7 @@ class AsyncFirecrawlApp(FirecrawlApp):
|
|
|
3493
3493
|
raise Exception(f'Failed to parse Firecrawl response as JSON.')
|
|
3494
3494
|
return await self._async_monitor_job_status(id, headers, poll_interval)
|
|
3495
3495
|
else:
|
|
3496
|
-
self._handle_error(response, 'start crawl job')
|
|
3496
|
+
await self._handle_error(response, 'start crawl job')
|
|
3497
3497
|
|
|
3498
3498
|
|
|
3499
3499
|
async def async_crawl_url(
|
|
@@ -3611,7 +3611,7 @@ class AsyncFirecrawlApp(FirecrawlApp):
|
|
|
3611
3611
|
except:
|
|
3612
3612
|
raise Exception(f'Failed to parse Firecrawl response as JSON.')
|
|
3613
3613
|
else:
|
|
3614
|
-
self._handle_error(response, 'start crawl job')
|
|
3614
|
+
await self._handle_error(response, 'start crawl job')
|
|
3615
3615
|
|
|
3616
3616
|
async def check_crawl_status(self, id: str) -> CrawlStatusResponse:
|
|
3617
3617
|
"""
|
|
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
|