lacuscore 1.16.3__tar.gz → 1.16.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lacuscore
3
- Version: 1.16.3
3
+ Version: 1.16.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.31.4)
29
+ Requires-Dist: playwrightcapture[recaptcha] (>=1.31.5)
30
30
  Requires-Dist: pydantic (>=2.11.7)
31
31
  Requires-Dist: redis[hiredis] (>=5.3.0,<6.0.0)
32
32
  Requires-Dist: requests (>=2.32.4)
@@ -20,19 +20,10 @@ from playwrightcapture.capture import CaptureResponse as PlaywrightCaptureRespon
20
20
 
21
21
  if sys.version_info < (3, 12):
22
22
  from typing_extensions import TypedDict
23
-
24
- class Cookie(TypedDict, total=False):
25
- name: str
26
- value: str
27
- domain: str
28
- path: str
29
- expires: float
30
- httpOnly: bool
31
- secure: bool
32
- sameSite: Literal["Lax", "None", "Strict"]
33
23
  else:
34
24
  from typing import TypedDict
35
- from playwright._impl._api_structures import Cookie # , StorageState
25
+
26
+ from playwright._impl._api_structures import Cookie # , StorageState
36
27
 
37
28
 
38
29
  class LacusCoreException(Exception):
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "lacuscore"
3
- version = "1.16.3"
3
+ version = "1.16.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.4)",
18
- "playwrightcapture[recaptcha] (>=1.31.4)",
18
+ "playwrightcapture[recaptcha] (>=1.31.5)",
19
19
  "defang (>=0.5.3)",
20
20
  "ua-parser[regex] (>=1.0.1)",
21
21
  "redis[hiredis] (>=5.3.0,<6.0.0)",
File without changes
File without changes