PlaywrightCapture 1.26.1__tar.gz → 1.26.3__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.1
2
2
  Name: PlaywrightCapture
3
- Version: 1.26.1
3
+ Version: 1.26.3
4
4
  Summary: A simple library to capture websites using playwright
5
5
  Home-page: https://github.com/Lookyloo/PlaywrightCapture
6
6
  License: BSD-3-Clause
@@ -17,21 +17,24 @@ Classifier: Programming Language :: Python :: 3.9
17
17
  Classifier: Programming Language :: Python :: 3.10
18
18
  Classifier: Programming Language :: Python :: 3.11
19
19
  Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
20
21
  Classifier: Topic :: Internet
21
22
  Classifier: Topic :: Security
22
23
  Provides-Extra: recaptcha
23
- Requires-Dist: SpeechRecognition (>=3.10.4,<4.0.0) ; extra == "recaptcha"
24
+ Requires-Dist: SpeechRecognition (<3.11) ; (python_version < "3.9") and (extra == "recaptcha")
25
+ Requires-Dist: SpeechRecognition (>=3.11) ; (python_version >= "3.9") and (extra == "recaptcha")
24
26
  Requires-Dist: aiohttp-socks (>=0.9,<0.10)
25
- Requires-Dist: aiohttp[speedups] (>=3.10.9,<4.0.0)
27
+ Requires-Dist: aiohttp[speedups] (<3.11) ; python_version < "3.9"
28
+ Requires-Dist: aiohttp[speedups] (>=3.10.10,<4.0.0) ; python_version >= "3.9"
26
29
  Requires-Dist: async-timeout (>=4.0.3,<5.0.0) ; python_version < "3.11"
27
30
  Requires-Dist: beautifulsoup4[charset-normalizer,lxml] (>=4.12.3,<5.0.0)
28
31
  Requires-Dist: dateparser (>=1.2.0,<2.0.0)
29
- Requires-Dist: playwright (>=1.47.0,<2.0.0)
32
+ Requires-Dist: playwright (>=1.48.0,<2.0.0)
30
33
  Requires-Dist: playwright-stealth (>=1.0.6,<2.0.0)
31
34
  Requires-Dist: puremagic (>=1.28,<2.0)
32
35
  Requires-Dist: pydub (>=0.25.1,<0.26.0) ; extra == "recaptcha"
33
36
  Requires-Dist: pytz (>=2024.2,<2025.0) ; python_version < "3.9"
34
- Requires-Dist: setuptools (>=75.1.0,<76.0.0)
37
+ Requires-Dist: setuptools (>=75.2.0,<76.0.0)
35
38
  Requires-Dist: tzdata (>=2024.2,<2025.0)
36
39
  Requires-Dist: w3lib (>=2.2.1,<3.0.0)
37
40
  Project-URL: Repository, https://github.com/Lookyloo/PlaywrightCapture
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "PlaywrightCapture"
3
- version = "1.26.1"
3
+ version = "1.26.3"
4
4
  description = "A simple library to capture websites using playwright"
5
5
  authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
6
6
  license = "BSD-3-Clause"
@@ -19,19 +19,25 @@ classifiers=[
19
19
 
20
20
  [tool.poetry.dependencies]
21
21
  python = "^3.8"
22
- playwright = "^1.47.0"
22
+ playwright = "^1.48.0"
23
23
  dateparser = "^1.2.0"
24
24
  beautifulsoup4 = {version= "^4.12.3", extras = ["lxml", "charset_normalizer"]}
25
25
  w3lib = "^2.2.1"
26
26
  pydub = {version = "^0.25.1", optional = true}
27
- SpeechRecognition = {version = "^3.10.4", optional = true}
27
+ SpeechRecognition = [
28
+ {version = "<3.11", python = "<3.9", optional = true},
29
+ {version = ">=3.11", python = ">=3.9", optional = true}
30
+ ]
28
31
  pytz = {"version" = "^2024.2", python = "<3.9"}
29
32
  tzdata = "^2024.2"
30
33
  playwright-stealth = "^1.0.6"
31
- setuptools = "^75.1.0"
34
+ setuptools = "^75.2.0"
32
35
  puremagic = "^1.28"
33
36
  async-timeout = {version = "^4.0.3", python = "<3.11"}
34
- aiohttp = {extras = ["speedups"], version = "^3.10.9"}
37
+ aiohttp = [
38
+ {extras = ["speedups"], version = "<3.11", python = "<3.9"},
39
+ {extras = ["speedups"], version = "^3.10.10", python = ">=3.9"}
40
+ ]
35
41
  aiohttp-socks = "^0.9"
36
42
 
37
43
  [tool.poetry.extras]
@@ -41,9 +47,9 @@ recaptcha = ["pydub", "SpeechRecognition"]
41
47
  optional = true
42
48
 
43
49
  [tool.poetry.group.dev.dependencies]
44
- types-beautifulsoup4 = "^4.12.0.20240907"
50
+ types-beautifulsoup4 = "^4.12.0.20241020"
45
51
  pytest = "^8.3.3"
46
- mypy = "^1.11.2"
52
+ mypy = "^1.13.0"
47
53
  types-dateparser = "^1.2.0.20240420"
48
54
  types-pytz = "^2024.2.0.20241003"
49
55