yt-dlp-utils 0.0.4__tar.gz → 0.0.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.
Potentially problematic release.
This version of yt-dlp-utils might be problematic. Click here for more details.
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/PKG-INFO +3 -3
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/README.md +1 -1
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/pyproject.toml +7 -7
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/yt_dlp_utils/__init__.py +1 -1
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/yt_dlp_utils/lib.py +2 -6
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/LICENSE.txt +0 -0
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/yt_dlp_utils/constants.py +0 -0
- {yt_dlp_utils-0.0.4 → yt_dlp_utils-0.0.5}/yt_dlp_utils/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: yt-dlp-utils
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Utilities for programmatic use of yt-dlp.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: command line,yt-dlp
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
17
|
Classifier: Typing :: Typed
|
|
18
18
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
19
|
-
Requires-Dist: typing-extensions (>=4.
|
|
19
|
+
Requires-Dist: typing-extensions (>=4.14.0,<5.0.0)
|
|
20
20
|
Requires-Dist: yt-dlp[default] (>=2025.5.22,<2026.0.0)
|
|
21
21
|
Project-URL: Documentation, https://yt-dlp-utils.readthedocs.org
|
|
22
22
|
Project-URL: Homepage, https://tatsh.github.io/yt-dlp-utils/
|
|
@@ -30,7 +30,7 @@ Description-Content-Type: text/markdown
|
|
|
30
30
|
[](https://pypi.org/project/yt-dlp-utils/)
|
|
31
31
|
[](https://github.com/Tatsh/yt-dlp-utils/tags)
|
|
32
32
|
[](https://github.com/Tatsh/yt-dlp-utils/blob/master/LICENSE.txt)
|
|
33
|
-
[](https://img.shields.io/github/commits-since/Tatsh/yt-dlp-utils/v0.0.5/master)](https://github.com/Tatsh/yt-dlp-utils/compare/v0.0.5...master)
|
|
34
34
|
[](https://github.com/Tatsh/yt-dlp-utils/actions/workflows/qa.yml)
|
|
35
35
|
[](https://github.com/Tatsh/yt-dlp-utils/actions/workflows/tests.yml)
|
|
36
36
|
[](https://coveralls.io/github/Tatsh/yt-dlp-utils?branch=master)
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://pypi.org/project/yt-dlp-utils/)
|
|
5
5
|
[](https://github.com/Tatsh/yt-dlp-utils/tags)
|
|
6
6
|
[](https://github.com/Tatsh/yt-dlp-utils/blob/master/LICENSE.txt)
|
|
7
|
-
[](https://img.shields.io/github/commits-since/Tatsh/yt-dlp-utils/v0.0.5/master)](https://github.com/Tatsh/yt-dlp-utils/compare/v0.0.5...master)
|
|
8
8
|
[](https://github.com/Tatsh/yt-dlp-utils/actions/workflows/qa.yml)
|
|
9
9
|
[](https://github.com/Tatsh/yt-dlp-utils/actions/workflows/tests.yml)
|
|
10
10
|
[](https://coveralls.io/github/Tatsh/yt-dlp-utils?branch=master)
|
|
@@ -19,7 +19,7 @@ keywords = ["command line", "yt-dlp"]
|
|
|
19
19
|
license = "MIT"
|
|
20
20
|
name = "yt-dlp-utils"
|
|
21
21
|
readme = "README.md"
|
|
22
|
-
version = "0.0.
|
|
22
|
+
version = "0.0.5"
|
|
23
23
|
|
|
24
24
|
[[project.authors]]
|
|
25
25
|
email = "audvare@gmail.com"
|
|
@@ -78,7 +78,7 @@ warn_unreachable = true
|
|
|
78
78
|
[tool.poetry.dependencies]
|
|
79
79
|
python = ">=3.10,<3.14"
|
|
80
80
|
requests = "^2.32.3"
|
|
81
|
-
typing-extensions = "^4.
|
|
81
|
+
typing-extensions = "^4.14.0"
|
|
82
82
|
|
|
83
83
|
[tool.poetry.dependencies.yt-dlp]
|
|
84
84
|
extras = ["default"]
|
|
@@ -90,11 +90,11 @@ optional = true
|
|
|
90
90
|
[tool.poetry.group.dev.dependencies]
|
|
91
91
|
commitizen = "^4.8.2"
|
|
92
92
|
djlint = "^1.36.4"
|
|
93
|
-
mypy = "
|
|
94
|
-
ruff = "^0.11.
|
|
95
|
-
types-requests = "^2.32.0.
|
|
93
|
+
mypy = "^1.16.0"
|
|
94
|
+
ruff = "^0.11.13"
|
|
95
|
+
types-requests = "^2.32.0.20250602"
|
|
96
96
|
yapf = "^0.43.0"
|
|
97
|
-
yt-dlp-types = "^0"
|
|
97
|
+
yt-dlp-types = "^0.0.17"
|
|
98
98
|
|
|
99
99
|
[tool.poetry.group.docs]
|
|
100
100
|
optional = true
|
|
@@ -128,7 +128,7 @@ optional = true
|
|
|
128
128
|
|
|
129
129
|
[tool.poetry.group.tests.dependencies]
|
|
130
130
|
mock = "^5.2.0"
|
|
131
|
-
pytest = "^8.
|
|
131
|
+
pytest = "^8.4.0"
|
|
132
132
|
pytest-cov = "^6.1.1"
|
|
133
133
|
pytest-mock = "^3.14.1"
|
|
134
134
|
|
|
@@ -35,11 +35,7 @@ class YoutubeDLLogger(yt_dlp.cookies.YDLLogger):
|
|
|
35
35
|
"""Log an info message."""
|
|
36
36
|
log.info('%s', re.sub(r'^\[info\]\s+', '', message))
|
|
37
37
|
|
|
38
|
-
def warning(
|
|
39
|
-
self,
|
|
40
|
-
message: str,
|
|
41
|
-
once: bool = False, # noqa: FBT001, FBT002
|
|
42
|
-
only_once: bool = False) -> None: # noqa: FBT001, FBT002
|
|
38
|
+
def warning(self, message: str, *, only_once: bool = False) -> None: # type: ignore[override]
|
|
43
39
|
"""Log a warning message."""
|
|
44
40
|
log.warning('%s', re.sub(r'^\[warn(?:ing)?\]\s+', '', message))
|
|
45
41
|
|
|
@@ -51,7 +47,7 @@ class YoutubeDLLogger(yt_dlp.cookies.YDLLogger):
|
|
|
51
47
|
def get_configured_yt_dlp(sleep_time: int = 3,
|
|
52
48
|
*,
|
|
53
49
|
debug: bool = False,
|
|
54
|
-
**kwargs: Unpack[yt_dlp.
|
|
50
|
+
**kwargs: Unpack[yt_dlp._Params]) -> yt_dlp.YoutubeDL:
|
|
55
51
|
"""
|
|
56
52
|
Get a configured ``YoutubeDL`` instance.
|
|
57
53
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|