PlaywrightCapture 1.27.1__tar.gz → 1.27.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.
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/PKG-INFO +4 -4
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/playwrightcapture/capture.py +1 -1
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/pyproject.toml +4 -4
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/LICENSE +0 -0
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/README.md +0 -0
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/playwrightcapture/__init__.py +0 -0
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/playwrightcapture/exceptions.py +0 -0
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/playwrightcapture/helpers.py +0 -0
- {playwrightcapture-1.27.1 → playwrightcapture-1.27.3}/playwrightcapture/py.typed +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: PlaywrightCapture
|
3
|
-
Version: 1.27.
|
3
|
+
Version: 1.27.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
|
@@ -22,15 +22,15 @@ Classifier: Topic :: Security
|
|
22
22
|
Provides-Extra: recaptcha
|
23
23
|
Requires-Dist: SpeechRecognition (>=3.11.0) ; extra == "recaptcha"
|
24
24
|
Requires-Dist: aiohttp-socks (>=0.9,<0.10)
|
25
|
-
Requires-Dist: aiohttp[speedups] (>=3.
|
25
|
+
Requires-Dist: aiohttp[speedups] (>=3.11.7,<4.0.0)
|
26
26
|
Requires-Dist: async-timeout (>=4.0.3,<5.0.0) ; python_version < "3.11"
|
27
27
|
Requires-Dist: beautifulsoup4[charset-normalizer,lxml] (>=4.12.3,<5.0.0)
|
28
28
|
Requires-Dist: dateparser (>=1.2.0,<2.0.0)
|
29
|
-
Requires-Dist: playwright (>=1.
|
29
|
+
Requires-Dist: playwright (>=1.49.0,<2.0.0)
|
30
30
|
Requires-Dist: playwright-stealth (>=1.0.6,<2.0.0)
|
31
31
|
Requires-Dist: puremagic (>=1.28,<2.0)
|
32
32
|
Requires-Dist: pydub (>=0.25.1,<0.26.0) ; extra == "recaptcha"
|
33
|
-
Requires-Dist: setuptools (>=75.
|
33
|
+
Requires-Dist: setuptools (>=75.6.0,<76.0.0)
|
34
34
|
Requires-Dist: tzdata (>=2024.2,<2025.0)
|
35
35
|
Requires-Dist: w3lib (>=2.2.1,<3.0.0)
|
36
36
|
Project-URL: Repository, https://github.com/Lookyloo/PlaywrightCapture
|
@@ -484,7 +484,7 @@ class Capture():
|
|
484
484
|
# See https://github.com/microsoft/playwright/issues/16577
|
485
485
|
chromium_permissions = [
|
486
486
|
'accelerometer',
|
487
|
-
'accessibility-events',
|
487
|
+
# 'accessibility-events', # broken in v1.49 - https://github.com/microsoft/playwright-python/issues/2663
|
488
488
|
'ambient-light-sensor',
|
489
489
|
'background-sync',
|
490
490
|
'camera',
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "PlaywrightCapture"
|
3
|
-
version = "1.27.
|
3
|
+
version = "1.27.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,7 +19,7 @@ classifiers=[
|
|
19
19
|
|
20
20
|
[tool.poetry.dependencies]
|
21
21
|
python = "^3.9"
|
22
|
-
playwright = "^1.
|
22
|
+
playwright = "^1.49.0"
|
23
23
|
dateparser = "^1.2.0"
|
24
24
|
beautifulsoup4 = {version= "^4.12.3", extras = ["lxml", "charset_normalizer"]}
|
25
25
|
w3lib = "^2.2.1"
|
@@ -27,10 +27,10 @@ pydub = {version = "^0.25.1", optional = true}
|
|
27
27
|
SpeechRecognition = {version = ">=3.11.0", optional = true}
|
28
28
|
tzdata = "^2024.2"
|
29
29
|
playwright-stealth = "^1.0.6"
|
30
|
-
setuptools = "^75.
|
30
|
+
setuptools = "^75.6.0"
|
31
31
|
puremagic = "^1.28"
|
32
32
|
async-timeout = {version = "^4.0.3", python = "<3.11"}
|
33
|
-
aiohttp = {version = "^3.
|
33
|
+
aiohttp = {version = "^3.11.7", extras = ["speedups"]}
|
34
34
|
aiohttp-socks = "^0.9"
|
35
35
|
|
36
36
|
[tool.poetry.extras]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|