Remove print statement in map

This commit is contained in:
anjor 2024-09-03 10:09:52 +01:00 committed by Gergő Móricz
parent b8b8522b33
commit c45a132cd5

View File

@ -228,7 +228,7 @@ class FirecrawlApp:
json_data = {'url': url}
if params:
json_data.update(params)
# Make the POST request with the prepared headers and JSON data
response = requests.post(
f'{self.api_url}{endpoint}',
@ -238,7 +238,7 @@ class FirecrawlApp:
if response.status_code == 200:
response = response.json()
if response['success'] and 'links' in response:
return response['links']
return response
else:
raise Exception(f'Failed to map URL. Error: {response["error"]}')
else:
@ -434,4 +434,4 @@ class CrawlWatcher:
self.dispatch_event('document', doc)
elif msg['type'] == 'document':
self.data.append(msg['data'])
self.dispatch_event('document', msg['data'])
self.dispatch_event('document', msg['data'])