firecrawl 1.6.4__tar.gz → 1.6.7__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-1.6.4 → firecrawl-1.6.7}/PKG-INFO +1 -1
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl/__init__.py +1 -1
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl/firecrawl.py +4 -4
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl.egg-info/PKG-INFO +1 -1
- {firecrawl-1.6.4 → firecrawl-1.6.7}/LICENSE +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/README.md +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl/__tests__/e2e_withAuth/__init__.py +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl/__tests__/e2e_withAuth/test.py +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl/__tests__/v1/e2e_withAuth/__init__.py +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl/__tests__/v1/e2e_withAuth/test.py +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl.egg-info/SOURCES.txt +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl.egg-info/dependency_links.txt +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl.egg-info/requires.txt +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/firecrawl.egg-info/top_level.txt +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/pyproject.toml +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/setup.cfg +0 -0
- {firecrawl-1.6.4 → firecrawl-1.6.7}/setup.py +0 -0
|
@@ -704,15 +704,15 @@ class CrawlWatcher:
|
|
|
704
704
|
async def _handle_message(self, msg: Dict[str, Any]):
|
|
705
705
|
if msg['type'] == 'done':
|
|
706
706
|
self.status = 'completed'
|
|
707
|
-
self.dispatch_event('done', {'status': self.status, 'data': self.data})
|
|
707
|
+
self.dispatch_event('done', {'status': self.status, 'data': self.data, 'id': self.id})
|
|
708
708
|
elif msg['type'] == 'error':
|
|
709
709
|
self.status = 'failed'
|
|
710
|
-
self.dispatch_event('error', {'status': self.status, 'data': self.data, 'error': msg['error']})
|
|
710
|
+
self.dispatch_event('error', {'status': self.status, 'data': self.data, 'error': msg['error'], 'id': self.id})
|
|
711
711
|
elif msg['type'] == 'catchup':
|
|
712
712
|
self.status = msg['data']['status']
|
|
713
713
|
self.data.extend(msg['data'].get('data', []))
|
|
714
714
|
for doc in self.data:
|
|
715
|
-
self.dispatch_event('document', doc)
|
|
715
|
+
self.dispatch_event('document', {'data': doc, 'id': self.id})
|
|
716
716
|
elif msg['type'] == 'document':
|
|
717
717
|
self.data.append(msg['data'])
|
|
718
|
-
self.dispatch_event('document', msg['data'])
|
|
718
|
+
self.dispatch_event('document', {'data': msg['data'], 'id': self.id})
|
|
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
|