lacuscore 1.13.1__tar.gz → 1.13.2__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.1 → lacuscore-1.13.2}/PKG-INFO +2 -1
- {lacuscore-1.13.1 → lacuscore-1.13.2}/lacuscore/helpers.py +8 -1
- {lacuscore-1.13.1 → lacuscore-1.13.2}/pyproject.toml +3 -2
- {lacuscore-1.13.1 → lacuscore-1.13.2}/LICENSE +0 -0
- {lacuscore-1.13.1 → lacuscore-1.13.2}/README.md +0 -0
- {lacuscore-1.13.1 → lacuscore-1.13.2}/lacuscore/__init__.py +0 -0
- {lacuscore-1.13.1 → lacuscore-1.13.2}/lacuscore/lacus_monitoring.py +0 -0
- {lacuscore-1.13.1 → lacuscore-1.13.2}/lacuscore/lacuscore.py +0 -0
- {lacuscore-1.13.1 → lacuscore-1.13.2}/lacuscore/py.typed +0 -0
- {lacuscore-1.13.1 → lacuscore-1.13.2}/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.2
|
4
4
|
Summary: Core of Lacus, usable as a module
|
5
5
|
License: BSD-3-Clause
|
6
6
|
Author: Raphaël Vinot
|
@@ -30,6 +30,7 @@ Requires-Dist: playwrightcapture[recaptcha] (>=1.28.1)
|
|
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)
|
33
|
+
Requires-Dist: typing-extensions (>=4.12.2,<5.0.0) ; python_version < "3.12"
|
33
34
|
Requires-Dist: ua-parser[regex] (>=1.0.1)
|
34
35
|
Project-URL: Documentation, https://lacuscore.readthedocs.io/en/latest/
|
35
36
|
Project-URL: Issues, https://github.com/ail-project/issues
|
@@ -3,10 +3,11 @@
|
|
3
3
|
from __future__ import annotations
|
4
4
|
|
5
5
|
import json
|
6
|
+
import sys
|
6
7
|
|
7
8
|
from enum import IntEnum, unique
|
8
9
|
from logging import LoggerAdapter
|
9
|
-
from typing import Any,
|
10
|
+
from typing import Any, Literal
|
10
11
|
from collections.abc import MutableMapping, Mapping
|
11
12
|
|
12
13
|
from defang import refang
|
@@ -18,6 +19,12 @@ from playwrightcapture.capture import CaptureResponse as PlaywrightCaptureRespon
|
|
18
19
|
from playwright._impl._api_structures import Cookie # , StorageState
|
19
20
|
|
20
21
|
|
22
|
+
if sys.version_info >= (3, 12):
|
23
|
+
from typing import TypedDict
|
24
|
+
else:
|
25
|
+
from typing_extensions import TypedDict
|
26
|
+
|
27
|
+
|
21
28
|
class LacusCoreException(Exception):
|
22
29
|
pass
|
23
30
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "lacuscore"
|
3
|
-
version = "1.13.
|
3
|
+
version = "1.13.2"
|
4
4
|
description = "Core of Lacus, usable as a module"
|
5
5
|
authors = [
|
6
6
|
{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
|
@@ -22,7 +22,8 @@ dependencies = [
|
|
22
22
|
"dnspython (>=2.7.0)",
|
23
23
|
"async-timeout (>=5.0.1) ; python_version < \"3.11\"",
|
24
24
|
"pydantic (>=2.10.6)",
|
25
|
-
"eval-type-backport (>=0.2.2) ; python_version < \"3.10\""
|
25
|
+
"eval-type-backport (>=0.2.2) ; python_version < \"3.10\"",
|
26
|
+
"typing-extensions (>=4.12.2,<5.0.0) ; python_version < \"3.12\""
|
26
27
|
]
|
27
28
|
|
28
29
|
[project.urls]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|