Karim shoair commited on
Commit ·
7bd4753
1
Parent(s): 79e7e75
build: pump up deps and browsers versions
Browse files
pyproject.toml
CHANGED
|
@@ -64,7 +64,7 @@ dependencies = [
|
|
| 64 |
"lxml>=6.0.2",
|
| 65 |
"cssselect>=1.4.0",
|
| 66 |
"orjson>=3.11.7",
|
| 67 |
-
"tld>=0.13.
|
| 68 |
"w3lib>=2.4.0",
|
| 69 |
"typing_extensions",
|
| 70 |
]
|
|
@@ -73,9 +73,10 @@ dependencies = [
|
|
| 73 |
fetchers = [
|
| 74 |
"click>=8.3.0",
|
| 75 |
"curl_cffi>=0.14.0",
|
| 76 |
-
"playwright==1.
|
| 77 |
-
"patchright==1.
|
| 78 |
"browserforge>=1.2.4",
|
|
|
|
| 79 |
"msgspec>=0.20.0",
|
| 80 |
"anyio>=4.12.1"
|
| 81 |
]
|
|
|
|
| 64 |
"lxml>=6.0.2",
|
| 65 |
"cssselect>=1.4.0",
|
| 66 |
"orjson>=3.11.7",
|
| 67 |
+
"tld>=0.13.2",
|
| 68 |
"w3lib>=2.4.0",
|
| 69 |
"typing_extensions",
|
| 70 |
]
|
|
|
|
| 73 |
fetchers = [
|
| 74 |
"click>=8.3.0",
|
| 75 |
"curl_cffi>=0.14.0",
|
| 76 |
+
"playwright==1.58.0",
|
| 77 |
+
"patchright==1.58.2",
|
| 78 |
"browserforge>=1.2.4",
|
| 79 |
+
"apify-fingerprint-datapoints>=0.11.0",
|
| 80 |
"msgspec>=0.20.0",
|
| 81 |
"anyio>=4.12.1"
|
| 82 |
]
|
scrapling/engines/toolbelt/fingerprints.py
CHANGED
|
@@ -14,8 +14,8 @@ from scrapling.core._types import Dict, Literal, Tuple, cast
|
|
| 14 |
__OS_NAME__ = platform_system()
|
| 15 |
OSName = Literal["linux", "macos", "windows"]
|
| 16 |
# Current versions hardcoded for now (Playwright doesn't allow to know the version of a browser without launching it)
|
| 17 |
-
chromium_version =
|
| 18 |
-
chrome_version =
|
| 19 |
|
| 20 |
|
| 21 |
@lru_cache(10, typed=True)
|
|
|
|
| 14 |
__OS_NAME__ = platform_system()
|
| 15 |
OSName = Literal["linux", "macos", "windows"]
|
| 16 |
# Current versions hardcoded for now (Playwright doesn't allow to know the version of a browser without launching it)
|
| 17 |
+
chromium_version = 145
|
| 18 |
+
chrome_version = 145
|
| 19 |
|
| 20 |
|
| 21 |
@lru_cache(10, typed=True)
|