lacuscore 1.16.6__tar.gz → 1.17.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.
- {lacuscore-1.16.6 → lacuscore-1.17.1}/PKG-INFO +3 -3
- {lacuscore-1.16.6 → lacuscore-1.17.1}/lacuscore/lacuscore.py +2 -2
- {lacuscore-1.16.6 → lacuscore-1.17.1}/pyproject.toml +5 -5
- {lacuscore-1.16.6 → lacuscore-1.17.1}/LICENSE +0 -0
- {lacuscore-1.16.6 → lacuscore-1.17.1}/README.md +0 -0
- {lacuscore-1.16.6 → lacuscore-1.17.1}/lacuscore/__init__.py +0 -0
- {lacuscore-1.16.6 → lacuscore-1.17.1}/lacuscore/helpers.py +0 -0
- {lacuscore-1.16.6 → lacuscore-1.17.1}/lacuscore/lacus_monitoring.py +0 -0
- {lacuscore-1.16.6 → lacuscore-1.17.1}/lacuscore/py.typed +0 -0
- {lacuscore-1.16.6 → lacuscore-1.17.1}/lacuscore/task_logger.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lacuscore
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.17.1
|
4
4
|
Summary: Core of Lacus, usable as a module
|
5
5
|
License: BSD-3-Clause
|
6
6
|
Author: Raphaël Vinot
|
@@ -26,10 +26,10 @@ Requires-Dist: async-timeout (>=5.0.1) ; python_version < "3.11"
|
|
26
26
|
Requires-Dist: defang (>=0.5.3)
|
27
27
|
Requires-Dist: dnspython (>=2.7.0)
|
28
28
|
Requires-Dist: eval-type-backport (>=0.2.2) ; python_version < "3.10"
|
29
|
-
Requires-Dist: playwrightcapture[recaptcha] (>=1.
|
29
|
+
Requires-Dist: playwrightcapture[recaptcha] (>=1.32.1)
|
30
30
|
Requires-Dist: pydantic (>=2.11.7)
|
31
31
|
Requires-Dist: redis[hiredis] (>=5.3.0,<6.0.0)
|
32
|
-
Requires-Dist: requests (>=2.32.
|
32
|
+
Requires-Dist: requests (>=2.32.5)
|
33
33
|
Requires-Dist: typing-extensions (>=4.12.2,<5.0.0) ; python_version < "3.12"
|
34
34
|
Requires-Dist: ua-parser[regex] (>=1.0.1)
|
35
35
|
Project-URL: Documentation, https://lacuscore.readthedocs.io/en/latest/
|
@@ -56,7 +56,7 @@ else:
|
|
56
56
|
logger.warning(f'Timeout expired: {error_message}')
|
57
57
|
|
58
58
|
if TYPE_CHECKING:
|
59
|
-
from playwrightcapture import SetCookieParam
|
59
|
+
from playwrightcapture import SetCookieParam, Cookie
|
60
60
|
|
61
61
|
|
62
62
|
BROWSER = Literal['chromium', 'firefox', 'webkit']
|
@@ -168,7 +168,7 @@ class LacusCore():
|
|
168
168
|
proxy: str | dict[str, str] | None=None,
|
169
169
|
socks5_dns_resolver: str | list[str] | None=None,
|
170
170
|
general_timeout_in_sec: int | None=None,
|
171
|
-
cookies: list[dict[str, Any]] | list[SetCookieParam] | None=None,
|
171
|
+
cookies: str | dict[str, str] | list[dict[str, Any]] | list[SetCookieParam] | list[Cookie] | None=None,
|
172
172
|
storage: dict[str, Any] | None=None,
|
173
173
|
headers: dict[str, str] | None=None,
|
174
174
|
http_credentials: dict[str, str] | None=None,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "lacuscore"
|
3
|
-
version = "1.
|
3
|
+
version = "1.17.1"
|
4
4
|
description = "Core of Lacus, usable as a module"
|
5
5
|
authors = [
|
6
6
|
{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
|
@@ -14,8 +14,8 @@ requires-python = ">=3.9.2,<4.0"
|
|
14
14
|
dynamic = [ "classifiers" ]
|
15
15
|
|
16
16
|
dependencies = [
|
17
|
-
"requests (>=2.32.
|
18
|
-
"playwrightcapture[recaptcha] (>=1.
|
17
|
+
"requests (>=2.32.5)",
|
18
|
+
"playwrightcapture[recaptcha] (>=1.32.1)",
|
19
19
|
"defang (>=0.5.3)",
|
20
20
|
"ua-parser[regex] (>=1.0.1)",
|
21
21
|
"redis[hiredis] (>=5.3.0,<6.0.0)",
|
@@ -47,9 +47,9 @@ classifiers = [
|
|
47
47
|
docs = ["Sphinx (>=8.2.3) ; python_version >= \"3.11\""]
|
48
48
|
|
49
49
|
[tool.poetry.group.dev.dependencies]
|
50
|
-
mypy = "^1.17.
|
50
|
+
mypy = "^1.17.1"
|
51
51
|
types-redis = {version = "^4.6.0.20241004"}
|
52
|
-
types-requests = "^2.32.4.
|
52
|
+
types-requests = "^2.32.4.20250809"
|
53
53
|
types-beautifulsoup4 = "^4.12.0.20250516"
|
54
54
|
pytest = "^8.4.1"
|
55
55
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|