lacuscore 1.13.2__tar.gz → 1.13.4__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.13.2 → lacuscore-1.13.4}/PKG-INFO +2 -2
- {lacuscore-1.13.2 → lacuscore-1.13.4}/lacuscore/helpers.py +13 -4
- {lacuscore-1.13.2 → lacuscore-1.13.4}/pyproject.toml +2 -2
- {lacuscore-1.13.2 → lacuscore-1.13.4}/LICENSE +0 -0
- {lacuscore-1.13.2 → lacuscore-1.13.4}/README.md +0 -0
- {lacuscore-1.13.2 → lacuscore-1.13.4}/lacuscore/__init__.py +0 -0
- {lacuscore-1.13.2 → lacuscore-1.13.4}/lacuscore/lacus_monitoring.py +0 -0
- {lacuscore-1.13.2 → lacuscore-1.13.4}/lacuscore/lacuscore.py +0 -0
- {lacuscore-1.13.2 → lacuscore-1.13.4}/lacuscore/py.typed +0 -0
- {lacuscore-1.13.2 → lacuscore-1.13.4}/lacuscore/task_logger.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: lacuscore
|
3
|
-
Version: 1.13.
|
3
|
+
Version: 1.13.4
|
4
4
|
Summary: Core of Lacus, usable as a module
|
5
5
|
License: BSD-3-Clause
|
6
6
|
Author: Raphaël Vinot
|
@@ -26,7 +26,7 @@ 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.28.
|
29
|
+
Requires-Dist: playwrightcapture[recaptcha] (>=1.28.2)
|
30
30
|
Requires-Dist: pydantic (>=2.10.6)
|
31
31
|
Requires-Dist: redis[hiredis] (>=5.2.1)
|
32
32
|
Requires-Dist: requests (>=2.32.3)
|
@@ -16,13 +16,22 @@ from pydantic_core import from_json
|
|
16
16
|
|
17
17
|
from playwrightcapture.capture import CaptureResponse as PlaywrightCaptureResponse
|
18
18
|
|
19
|
-
from playwright._impl._api_structures import Cookie # , StorageState
|
20
19
|
|
20
|
+
if sys.version_info < (3, 12):
|
21
|
+
from typing_extensions import TypedDict
|
21
22
|
|
22
|
-
|
23
|
-
|
23
|
+
class Cookie(TypedDict, total=False):
|
24
|
+
name: str
|
25
|
+
value: str
|
26
|
+
domain: str
|
27
|
+
path: str
|
28
|
+
expires: float
|
29
|
+
httpOnly: bool
|
30
|
+
secure: bool
|
31
|
+
sameSite: Literal["Lax", "None", "Strict"]
|
24
32
|
else:
|
25
|
-
from
|
33
|
+
from typing import TypedDict
|
34
|
+
from playwright._impl._api_structures import Cookie # , StorageState
|
26
35
|
|
27
36
|
|
28
37
|
class LacusCoreException(Exception):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "lacuscore"
|
3
|
-
version = "1.13.
|
3
|
+
version = "1.13.4"
|
4
4
|
description = "Core of Lacus, usable as a module"
|
5
5
|
authors = [
|
6
6
|
{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
|
@@ -15,7 +15,7 @@ dynamic = [ "classifiers" ]
|
|
15
15
|
|
16
16
|
dependencies = [
|
17
17
|
"requests (>=2.32.3)",
|
18
|
-
"playwrightcapture[recaptcha] (>=1.28.
|
18
|
+
"playwrightcapture[recaptcha] (>=1.28.2)",
|
19
19
|
"defang (>=0.5.3)",
|
20
20
|
"ua-parser[regex] (>=1.0.1)",
|
21
21
|
"redis [hiredis] (>=5.2.1)",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|