lacuscore 1.4.3__tar.gz → 1.4.5__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.4.3 → lacuscore-1.4.5}/PKG-INFO +3 -2
- {lacuscore-1.4.3 → lacuscore-1.4.5}/lacuscore/lacuscore.py +2 -1
- {lacuscore-1.4.3 → lacuscore-1.4.5}/pyproject.toml +3 -2
- {lacuscore-1.4.3 → lacuscore-1.4.5}/LICENSE +0 -0
- {lacuscore-1.4.3 → lacuscore-1.4.5}/README.md +0 -0
- {lacuscore-1.4.3 → lacuscore-1.4.5}/lacuscore/__init__.py +0 -0
- {lacuscore-1.4.3 → lacuscore-1.4.5}/lacuscore/lacus_monitoring.py +0 -0
- {lacuscore-1.4.3 → lacuscore-1.4.5}/lacuscore/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: lacuscore
|
3
|
-
Version: 1.4.
|
3
|
+
Version: 1.4.5
|
4
4
|
Summary: Core of Lacus, usable as a module
|
5
5
|
Home-page: https://github.com/ail-project/LacusCore
|
6
6
|
License: BSD-3-Clause
|
@@ -21,6 +21,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
22
22
|
Classifier: Programming Language :: Python :: 3
|
23
23
|
Classifier: Programming Language :: Python :: 3.10
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
24
25
|
Classifier: Programming Language :: Python :: 3.8
|
25
26
|
Classifier: Programming Language :: Python :: 3.9
|
26
27
|
Classifier: Topic :: Internet
|
@@ -28,7 +29,7 @@ Classifier: Topic :: Security
|
|
28
29
|
Provides-Extra: docs
|
29
30
|
Requires-Dist: Sphinx (>=6.1.3,<7.0.0) ; extra == "docs"
|
30
31
|
Requires-Dist: defang (>=0.5.3,<0.6.0)
|
31
|
-
Requires-Dist: playwrightcapture[recaptcha] (>=1.19.
|
32
|
+
Requires-Dist: playwrightcapture[recaptcha] (>=1.19.5,<2.0.0)
|
32
33
|
Requires-Dist: redis[hiredis] (>=4.5.4,<5.0.0)
|
33
34
|
Requires-Dist: requests (>=2.28.2,<3.0.0)
|
34
35
|
Requires-Dist: ua-parser (>=0.16.1,<0.17.0)
|
@@ -526,7 +526,8 @@ class LacusCore():
|
|
526
526
|
capture.capture_page(
|
527
527
|
url, referer=to_capture.get('referer'),
|
528
528
|
depth=to_capture.get('depth', 0),
|
529
|
-
rendered_hostname_only=to_capture.get('rendered_hostname_only', True)
|
529
|
+
rendered_hostname_only=to_capture.get('rendered_hostname_only', True),
|
530
|
+
max_depth_capture_time=self.max_capture_time),
|
530
531
|
timeout=self.max_capture_time)
|
531
532
|
except PlaywrightCaptureException as e:
|
532
533
|
logger.exception(f'Invalid parameters for the capture of {url} - {e}')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "lacuscore"
|
3
|
-
version = "1.4.
|
3
|
+
version = "1.4.5"
|
4
4
|
description = "Core of Lacus, usable as a module"
|
5
5
|
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
|
6
6
|
license = "BSD-3-Clause"
|
@@ -21,6 +21,7 @@ classifiers = [
|
|
21
21
|
'Programming Language :: Python :: 3.8',
|
22
22
|
'Programming Language :: Python :: 3.9',
|
23
23
|
'Programming Language :: Python :: 3.10',
|
24
|
+
'Programming Language :: Python :: 3.11',
|
24
25
|
'Topic :: Security',
|
25
26
|
'Topic :: Internet',
|
26
27
|
]
|
@@ -31,7 +32,7 @@ include = ['README.md']
|
|
31
32
|
python = "^3.8"
|
32
33
|
requests = "^2.28.2"
|
33
34
|
Sphinx = { version = "^6.1.3", optional = true }
|
34
|
-
playwrightcapture = {extras = ["recaptcha"], version = "^1.19.
|
35
|
+
playwrightcapture = {extras = ["recaptcha"], version = "^1.19.5"}
|
35
36
|
defang = "^0.5.3"
|
36
37
|
ua-parser = "^0.16.1"
|
37
38
|
redis = {version = "^4.5.4", extras = ["hiredis"]}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|