firecrawl 2.14.0__py3-none-any.whl → 2.15.0__py3-none-any.whl
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/__init__.py +1 -1
- firecrawl/firecrawl.py +1 -4
- {firecrawl-2.14.0.dist-info → firecrawl-2.15.0.dist-info}/METADATA +1 -1
- {firecrawl-2.14.0.dist-info → firecrawl-2.15.0.dist-info}/RECORD +7 -7
- {firecrawl-2.14.0.dist-info → firecrawl-2.15.0.dist-info}/LICENSE +0 -0
- {firecrawl-2.14.0.dist-info → firecrawl-2.15.0.dist-info}/WHEEL +0 -0
- {firecrawl-2.14.0.dist-info → firecrawl-2.15.0.dist-info}/top_level.txt +0 -0
firecrawl/__init__.py
CHANGED
|
@@ -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
|
+
__version__ = "2.15.0"
|
|
17
17
|
|
|
18
18
|
# Define the logger for the Firecrawl project
|
|
19
19
|
logger: logging.Logger = logging.getLogger("firecrawl")
|
firecrawl/firecrawl.py
CHANGED
|
@@ -23,8 +23,6 @@ import websockets
|
|
|
23
23
|
import aiohttp
|
|
24
24
|
import asyncio
|
|
25
25
|
from pydantic import Field
|
|
26
|
-
import ssl
|
|
27
|
-
import certifi
|
|
28
26
|
|
|
29
27
|
# Suppress Pydantic warnings about attribute shadowing
|
|
30
28
|
warnings.filterwarnings("ignore", message="Field name \"json\" in \"FirecrawlDocument\" shadows an attribute in parent \"BaseModel\"")
|
|
@@ -2769,8 +2767,7 @@ class AsyncFirecrawlApp(FirecrawlApp):
|
|
|
2769
2767
|
aiohttp.ClientError: If the request fails after all retries.
|
|
2770
2768
|
Exception: If max retries are exceeded or other errors occur.
|
|
2771
2769
|
"""
|
|
2772
|
-
|
|
2773
|
-
async with aiohttp.ClientSession(ssl=ssl_context) as session:
|
|
2770
|
+
async with aiohttp.ClientSession() as session:
|
|
2774
2771
|
for attempt in range(retries):
|
|
2775
2772
|
try:
|
|
2776
2773
|
async with session.request(
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
firecrawl/__init__.py,sha256=
|
|
2
|
-
firecrawl/firecrawl.py,sha256=
|
|
1
|
+
firecrawl/__init__.py,sha256=YXfaa8Pl549ESHJ1swTJk2oLmioc1X911u15cTsJtpk,2613
|
|
2
|
+
firecrawl/firecrawl.py,sha256=fB2BQFjv_Od6YSDny2Dw47fOHe74wuNpWIu2OCXpaQs,198145
|
|
3
3
|
firecrawl/__tests__/e2e_withAuth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
firecrawl/__tests__/e2e_withAuth/test.py,sha256=-Fq2vPcMo0iQi4dwsUkkCd931ybDaTxMBnZbRfGdDcA,7931
|
|
5
5
|
firecrawl/__tests__/v1/e2e_withAuth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
firecrawl/__tests__/v1/e2e_withAuth/test.py,sha256=k9IsEbdTHL9Cu49M4FpnQDEo2rnG6RqwmZAsK_EVJr4,21069
|
|
7
7
|
tests/test_change_tracking.py,sha256=_IJ5ShLcoj2fHDBaw-nE4I4lHdmDB617ocK_XMHhXps,4177
|
|
8
|
-
firecrawl-2.
|
|
9
|
-
firecrawl-2.
|
|
10
|
-
firecrawl-2.
|
|
11
|
-
firecrawl-2.
|
|
12
|
-
firecrawl-2.
|
|
8
|
+
firecrawl-2.15.0.dist-info/LICENSE,sha256=nPCunEDwjRGHlmjvsiDUyIWbkqqyj3Ej84ntnh0g0zA,1084
|
|
9
|
+
firecrawl-2.15.0.dist-info/METADATA,sha256=BJW-9tfFlyGgZC1Fxtv4_TQqDqTrBVHdVQyftcpXI9Y,7166
|
|
10
|
+
firecrawl-2.15.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
11
|
+
firecrawl-2.15.0.dist-info/top_level.txt,sha256=8T3jOaSN5mtLghO-R3MQ8KO290gIX8hmfxQmglBPdLE,16
|
|
12
|
+
firecrawl-2.15.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|