yt-dlp 2026.1.31.233334.dev0__py3-none-any.whl → 2026.2.4__py3-none-any.whl
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.
- yt_dlp/extractor/lazy_extractors.py +1 -1
- yt_dlp/extractor/unsupported.py +21 -0
- yt_dlp/extractor/youtube/_video.py +1 -1
- yt_dlp/version.py +5 -5
- {yt_dlp-2026.1.31.233334.dev0.data → yt_dlp-2026.2.4.data}/data/share/doc/yt_dlp/README.txt +4 -4
- {yt_dlp-2026.1.31.233334.dev0.data → yt_dlp-2026.2.4.data}/data/share/fish/vendor_completions.d/yt-dlp.fish +1 -1
- {yt_dlp-2026.1.31.233334.dev0.data → yt_dlp-2026.2.4.data}/data/share/man/man1/yt-dlp.1 +3 -4
- {yt_dlp-2026.1.31.233334.dev0.dist-info → yt_dlp-2026.2.4.dist-info}/METADATA +3 -3
- {yt_dlp-2026.1.31.233334.dev0.dist-info → yt_dlp-2026.2.4.dist-info}/RECORD +14 -14
- {yt_dlp-2026.1.31.233334.dev0.data → yt_dlp-2026.2.4.data}/data/share/bash-completion/completions/yt-dlp +0 -0
- {yt_dlp-2026.1.31.233334.dev0.data → yt_dlp-2026.2.4.data}/data/share/zsh/site-functions/_yt-dlp +0 -0
- {yt_dlp-2026.1.31.233334.dev0.dist-info → yt_dlp-2026.2.4.dist-info}/WHEEL +0 -0
- {yt_dlp-2026.1.31.233334.dev0.dist-info → yt_dlp-2026.2.4.dist-info}/entry_points.txt +0 -0
- {yt_dlp-2026.1.31.233334.dev0.dist-info → yt_dlp-2026.2.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -5862,7 +5862,7 @@ class UnsupportedInfoExtractor(LazyLoadExtractor):
|
|
|
5862
5862
|
class KnownDRMIE(UnsupportedInfoExtractor):
|
|
5863
5863
|
_module = 'yt_dlp.extractor.unsupported'
|
|
5864
5864
|
IE_NAME = 'DRM'
|
|
5865
|
-
_VALID_URL = 'https?://(?:www\\.)?(?:play\\.hbomax\\.com|channel(?:4|5)\\.com|peacocktv\\.com|(?:[\\w.]+\\.)?disneyplus\\.com|open\\.spotify\\.com|tvnz\\.co\\.nz|oneplus\\.ch|artstation\\.com/learning/courses|philo\\.com|(?:[\\w.]+\\.)?mech-plus\\.com|aha\\.video|mubi\\.com|vootkids\\.com|nowtv\\.it/watch|tv\\.apple\\.com|primevideo\\.com|hulu\\.com|resource\\.inkryptvideos\\.com|joyn\\.de|amazon\\.(?:\\w{2}\\.)?\\w+/gp/video|music\\.amazon\\.(?:\\w{2}\\.)?\\w+|(?:watch|front)\\.njpwworld\\.com|qub\\.ca/vrai|(?:beta\\.)?crunchyroll\\.com|viki\\.com|deezer\\.com|b-ch\\.com|ctv\\.ca|noovo\\.ca|tsn\\.ca|paramountplus\\.com|(?:m\\.)?(?:sony)?crackle\\.com|cw(?:tv(?:pr)?|seed)\\.com|6play\\.fr|rtlplay\\.be|play\\.rtl\\.hr|rtlmost\\.hu|plus\\.rtl\\.de(?!/podcast/)|mediasetinfinity\\.es|tv5mondeplus\\.com)'
|
|
5865
|
+
_VALID_URL = 'https?://(?:www\\.)?(?:play\\.hbomax\\.com|channel(?:4|5)\\.com|peacocktv\\.com|(?:[\\w.]+\\.)?disneyplus\\.com|open\\.spotify\\.com|tvnz\\.co\\.nz|oneplus\\.ch|artstation\\.com/learning/courses|philo\\.com|(?:[\\w.]+\\.)?mech-plus\\.com|aha\\.video|mubi\\.com|vootkids\\.com|nowtv\\.it/watch|tv\\.apple\\.com|primevideo\\.com|hulu\\.com|resource\\.inkryptvideos\\.com|joyn\\.de|amazon\\.(?:\\w{2}\\.)?\\w+/gp/video|music\\.amazon\\.(?:\\w{2}\\.)?\\w+|(?:watch|front)\\.njpwworld\\.com|qub\\.ca/vrai|(?:beta\\.)?crunchyroll\\.com|viki\\.com|deezer\\.com|b-ch\\.com|ctv\\.ca|noovo\\.ca|tsn\\.ca|paramountplus\\.com|(?:m\\.)?(?:sony)?crackle\\.com|cw(?:tv(?:pr)?|seed)\\.com|6play\\.fr|rtlplay\\.be|play\\.rtl\\.hr|rtlmost\\.hu|plus\\.rtl\\.de(?!/podcast/)|mediasetinfinity\\.es|tv5mondeplus\\.com|tv\\.rakuten\\.co\\.jp|watch\\.telusoriginals\\.com|video\\.unext\\.jp|www\\.web\\.nhk)'
|
|
5866
5866
|
IE_DESC = False
|
|
5867
5867
|
|
|
5868
5868
|
|
yt_dlp/extractor/unsupported.py
CHANGED
|
@@ -67,6 +67,10 @@ class KnownDRMIE(UnsupportedInfoExtractor):
|
|
|
67
67
|
r'plus\.rtl\.de(?!/podcast/)',
|
|
68
68
|
r'mediasetinfinity\.es',
|
|
69
69
|
r'tv5mondeplus\.com',
|
|
70
|
+
r'tv\.rakuten\.co\.jp',
|
|
71
|
+
r'watch\.telusoriginals\.com',
|
|
72
|
+
r'video\.unext\.jp',
|
|
73
|
+
r'www\.web\.nhk',
|
|
70
74
|
)
|
|
71
75
|
|
|
72
76
|
_TESTS = [{
|
|
@@ -231,6 +235,23 @@ class KnownDRMIE(UnsupportedInfoExtractor):
|
|
|
231
235
|
# https://github.com/yt-dlp/yt-dlp/issues/14743
|
|
232
236
|
'url': 'https://www.tv5mondeplus.com/',
|
|
233
237
|
'only_matching': True,
|
|
238
|
+
}, {
|
|
239
|
+
# https://github.com/yt-dlp/yt-dlp/issues/8821
|
|
240
|
+
'url': 'https://tv.rakuten.co.jp/content/519554/',
|
|
241
|
+
'only_matching': True,
|
|
242
|
+
}, {
|
|
243
|
+
# https://github.com/yt-dlp/yt-dlp/issues/9851
|
|
244
|
+
'url': 'https://watch.telusoriginals.com/play?assetID=fruit-is-ripe',
|
|
245
|
+
'only_matching': True,
|
|
246
|
+
}, {
|
|
247
|
+
# https://github.com/yt-dlp/yt-dlp/issues/13220
|
|
248
|
+
# https://github.com/yt-dlp/yt-dlp/issues/14564
|
|
249
|
+
'url': 'https://video.unext.jp/play/SID0062010/ED00337407',
|
|
250
|
+
'only_matching': True,
|
|
251
|
+
}, {
|
|
252
|
+
# https://github.com/yt-dlp/yt-dlp/issues/14620
|
|
253
|
+
'url': 'https://www.web.nhk/tv/an/72hours/pl/series-tep-W3W8WRN8M3/ep/QW8ZY6146V',
|
|
254
|
+
'only_matching': True,
|
|
234
255
|
}]
|
|
235
256
|
|
|
236
257
|
def _real_extract(self, url):
|
|
@@ -1879,7 +1879,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|
|
1879
1879
|
}]
|
|
1880
1880
|
|
|
1881
1881
|
_DEFAULT_PLAYER_JS_VERSION = 'actual'
|
|
1882
|
-
_DEFAULT_PLAYER_JS_VARIANT = '
|
|
1882
|
+
_DEFAULT_PLAYER_JS_VARIANT = 'tv'
|
|
1883
1883
|
_PLAYER_JS_VARIANT_MAP = {
|
|
1884
1884
|
'main': 'player_ias.vflset/en_US/base.js',
|
|
1885
1885
|
'tcc': 'player_ias_tcc.vflset/en_US/base.js',
|
yt_dlp/version.py
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Autogenerated by devscripts/update-version.py
|
|
2
2
|
|
|
3
|
-
__version__ = '2026.
|
|
3
|
+
__version__ = '2026.02.04'
|
|
4
4
|
|
|
5
|
-
RELEASE_GIT_HEAD = '
|
|
5
|
+
RELEASE_GIT_HEAD = 'c677d866d41eb4075b0a5e0c944a6543fc13f15d'
|
|
6
6
|
|
|
7
7
|
VARIANT = 'pip'
|
|
8
8
|
|
|
9
9
|
UPDATE_HINT = 'You installed yt-dlp with pip or using the wheel from PyPi; Use that to update'
|
|
10
10
|
|
|
11
|
-
CHANNEL = '
|
|
11
|
+
CHANNEL = 'stable'
|
|
12
12
|
|
|
13
|
-
ORIGIN = 'yt-dlp/yt-dlp
|
|
13
|
+
ORIGIN = 'yt-dlp/yt-dlp'
|
|
14
14
|
|
|
15
|
-
_pkg_version = '2026.
|
|
15
|
+
_pkg_version = '2026.02.04'
|
|
@@ -409,7 +409,7 @@ General Options:
|
|
|
409
409
|
--no-update Do not check for updates (default)
|
|
410
410
|
--update-to [CHANNEL]@[TAG] Upgrade/downgrade to a specific version.
|
|
411
411
|
CHANNEL can be a repository as well. CHANNEL
|
|
412
|
-
and TAG default to "
|
|
412
|
+
and TAG default to "stable" and "latest"
|
|
413
413
|
respectively if omitted; See "UPDATE" for
|
|
414
414
|
details. Supported channels: stable,
|
|
415
415
|
nightly, master
|
|
@@ -2345,9 +2345,9 @@ youtube
|
|
|
2345
2345
|
Will overwrite any default ones set by yt-dlp.
|
|
2346
2346
|
- player_js_variant: The player javascript variant to use for n/sig
|
|
2347
2347
|
deciphering. The known variants are: main, tcc, tce, es5, es6, tv,
|
|
2348
|
-
tv_es6, phone
|
|
2349
|
-
|
|
2350
|
-
|
|
2348
|
+
tv_es6, phone. The default is tv, and the others are for debugging
|
|
2349
|
+
purposes. You can use actual to go with what is prescribed by the
|
|
2350
|
+
site
|
|
2351
2351
|
- player_js_version: The player javascript version to use for n/sig
|
|
2352
2352
|
deciphering, in the format of signature_timestamp@hash (e.g.
|
|
2353
2353
|
20348@0004de42). The default is to use what is prescribed by the
|
|
@@ -3,7 +3,7 @@ complete --command yt-dlp --long-option help --short-option h --description 'Pri
|
|
|
3
3
|
complete --command yt-dlp --long-option version --description 'Print program version and exit'
|
|
4
4
|
complete --command yt-dlp --long-option update --short-option U --description 'Check if updates are available. You installed yt-dlp from a manual build or with a package manager; Use that to update'
|
|
5
5
|
complete --command yt-dlp --long-option no-update --description 'Do not check for updates (default)'
|
|
6
|
-
complete --command yt-dlp --long-option update-to --description 'Upgrade/downgrade to a specific version. CHANNEL can be a repository as well. CHANNEL and TAG default to "
|
|
6
|
+
complete --command yt-dlp --long-option update-to --description 'Upgrade/downgrade to a specific version. CHANNEL can be a repository as well. CHANNEL and TAG default to "stable" and "latest" respectively if omitted; See "UPDATE" for details. Supported channels: stable, nightly, master'
|
|
7
7
|
complete --command yt-dlp --long-option ignore-errors --short-option i --description 'Ignore download and postprocessing errors. The download will be considered successful even if the postprocessing fails'
|
|
8
8
|
complete --command yt-dlp --long-option no-abort-on-error --description 'Continue with next video on download errors; e.g. to skip unavailable videos in a playlist (default)'
|
|
9
9
|
complete --command yt-dlp --long-option abort-on-error --description 'Abort downloading of further videos if an error occurs (Alias: --no-ignore-errors)'
|
|
@@ -48,7 +48,7 @@ Do not check for updates (default)
|
|
|
48
48
|
--update-to \f[I][CHANNEL]\[at][TAG]\f[R]
|
|
49
49
|
Upgrade/downgrade to a specific version.
|
|
50
50
|
CHANNEL can be a repository as well.
|
|
51
|
-
CHANNEL and TAG default to \[dq]
|
|
51
|
+
CHANNEL and TAG default to \[dq]stable\[dq] and \[dq]latest\[dq]
|
|
52
52
|
respectively if omitted; See \[dq]UPDATE\[dq] for details.
|
|
53
53
|
Supported channels: stable, nightly, master
|
|
54
54
|
.TP
|
|
@@ -2763,9 +2763,8 @@ Will overwrite any default ones set by yt-dlp.
|
|
|
2763
2763
|
n/sig deciphering.
|
|
2764
2764
|
The known variants are: \f[V]main\f[R], \f[V]tcc\f[R], \f[V]tce\f[R],
|
|
2765
2765
|
\f[V]es5\f[R], \f[V]es6\f[R], \f[V]tv\f[R], \f[V]tv_es6\f[R],
|
|
2766
|
-
\f[V]phone\f[R]
|
|
2767
|
-
The default is \f[V]
|
|
2768
|
-
purposes.
|
|
2766
|
+
\f[V]phone\f[R].
|
|
2767
|
+
The default is \f[V]tv\f[R], and the others are for debugging purposes.
|
|
2769
2768
|
You can use \f[V]actual\f[R] to go with what is prescribed by the site
|
|
2770
2769
|
.IP \[bu] 2
|
|
2771
2770
|
\f[V]player_js_version\f[R]: The player javascript version to use for
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: yt-dlp
|
|
3
|
-
Version: 2026.
|
|
3
|
+
Version: 2026.2.4
|
|
4
4
|
Summary: A feature-rich command-line audio/video downloader
|
|
5
5
|
Project-URL: Documentation, https://github.com/yt-dlp/yt-dlp#readme
|
|
6
6
|
Project-URL: Repository, https://github.com/yt-dlp/yt-dlp
|
|
@@ -388,7 +388,7 @@ Tip: Use `CTRL`+`F` (or `Command`+`F`) to search by keywords
|
|
|
388
388
|
--no-update Do not check for updates (default)
|
|
389
389
|
--update-to [CHANNEL]@[TAG] Upgrade/downgrade to a specific version.
|
|
390
390
|
CHANNEL can be a repository as well. CHANNEL
|
|
391
|
-
and TAG default to "
|
|
391
|
+
and TAG default to "stable" and "latest"
|
|
392
392
|
respectively if omitted; See "UPDATE" for
|
|
393
393
|
details. Supported channels: stable,
|
|
394
394
|
nightly, master
|
|
@@ -1938,7 +1938,7 @@ The following extractors use this feature:
|
|
|
1938
1938
|
* `player_skip`: Skip some network requests that are generally needed for robust extraction. One or more of `configs` (skip client configs), `webpage` (skip initial webpage), `js` (skip js player), `initial_data` (skip initial data/next ep request). While these options can help reduce the number of requests needed or avoid some rate-limiting, they could cause issues such as missing formats or metadata. See [#860](https://github.com/yt-dlp/yt-dlp/pull/860) and [#12826](https://github.com/yt-dlp/yt-dlp/issues/12826) for more details
|
|
1939
1939
|
* `webpage_skip`: Skip extraction of embedded webpage data. One or both of `player_response`, `initial_data`. These options are for testing purposes and don't skip any network requests
|
|
1940
1940
|
* `player_params`: YouTube player parameters to use for player requests. Will overwrite any default ones set by yt-dlp.
|
|
1941
|
-
* `player_js_variant`: The player javascript variant to use for n/sig deciphering. The known variants are: `main`, `tcc`, `tce`, `es5`, `es6`, `tv`, `tv_es6`, `phone
|
|
1941
|
+
* `player_js_variant`: The player javascript variant to use for n/sig deciphering. The known variants are: `main`, `tcc`, `tce`, `es5`, `es6`, `tv`, `tv_es6`, `phone`. The default is `tv`, and the others are for debugging purposes. You can use `actual` to go with what is prescribed by the site
|
|
1942
1942
|
* `player_js_version`: The player javascript version to use for n/sig deciphering, in the format of `signature_timestamp@hash` (e.g. `20348@0004de42`). The default is to use what is prescribed by the site, and can be selected with `actual`
|
|
1943
1943
|
* `comment_sort`: `top` or `new` (default) - choose comment sorting mode (on YouTube's side)
|
|
1944
1944
|
* `max_comments`: Limit the amount of comments to gather. Comma-separated list of integers representing `max-comments,max-parents,max-replies,max-replies-per-thread,max-depth`. Default is `all,all,all,all,all`
|
|
@@ -11,7 +11,7 @@ yt_dlp/options.py,sha256=-PQ5DyRSIU9YBSG2oh0RTHC-eg4EewNt4zewTZTuERM,100632
|
|
|
11
11
|
yt_dlp/plugins.py,sha256=EGmR0ydaahNspGrgszTNX4-YjHe93WOOhcw1gf6PZSs,8215
|
|
12
12
|
yt_dlp/socks.py,sha256=oAuAfWM6jxI8A5hHDLEKq2U2-k9NyMB_z6nrKzNE9fg,8936
|
|
13
13
|
yt_dlp/update.py,sha256=sY7gNFBQorzs7sEjRrqL5QOsTBNmGGa_FnpTtbxY1vA,25280
|
|
14
|
-
yt_dlp/version.py,sha256=
|
|
14
|
+
yt_dlp/version.py,sha256=vPBSZUPISoyzTavEluaxpQ3dZPtXc4XRY8dUnYOXUnQ,327
|
|
15
15
|
yt_dlp/webvtt.py,sha256=ONkXaaNCZcX8pQhJn3iwIKyaQ34BtVDrMEdG6wRNZwM,11451
|
|
16
16
|
yt_dlp/__pyinstaller/__init__.py,sha256=-c4Zo8nQGKAm8wc_LDscxMtK7zr_YhZwRnC9CMruUBE,72
|
|
17
17
|
yt_dlp/__pyinstaller/hook-yt_dlp.py,sha256=5Rd0zV2pDskjY1KtT0wsjxv4hStx67sLCjUexsFvFus,1339
|
|
@@ -462,7 +462,7 @@ yt_dlp/extractor/la7.py,sha256=GShDLu1N0rS1bY4uIiUkznThvn7gNiwtSgmh7Rs7t08,9435
|
|
|
462
462
|
yt_dlp/extractor/laracasts.py,sha256=PzTqAbHXiUqog-mpp2qR_rpKa-sZel4mLyzWTPkbDuc,4587
|
|
463
463
|
yt_dlp/extractor/lastfm.py,sha256=OpmE-Y-2rcav2r2xaDQzX_EJiltmbbe6fO9VzkLqNWQ,4748
|
|
464
464
|
yt_dlp/extractor/laxarxames.py,sha256=-YyL-5y4t2L9ptTSLXhvK-SJwvXGqv5l1HfT129zF0c,2773
|
|
465
|
-
yt_dlp/extractor/lazy_extractors.py,sha256=
|
|
465
|
+
yt_dlp/extractor/lazy_extractors.py,sha256=m2ConGzCKoWoIfuBGtZdxkIFLVWpP5XeyEmd9S07SNI,815568
|
|
466
466
|
yt_dlp/extractor/lbry.py,sha256=veeChelvfuFiNCeHhqYLEqR8X5mcmxevaekmZgoJk-Q,18112
|
|
467
467
|
yt_dlp/extractor/lci.py,sha256=_0XuoITIt_QFA-6eBNpDXZZfouwUWfcdHQlpAOuiLEs,2131
|
|
468
468
|
yt_dlp/extractor/lcp.py,sha256=edMA8L-eJZLquDvHcSY4oFWI0C8yGgjqW1tmhhLMJ5U,2279
|
|
@@ -952,7 +952,7 @@ yt_dlp/extractor/umg.py,sha256=FF2Wz1ay_f6hxPIq-8jaFKGqAtLUNPlBTLA-x0mkwI0,2240
|
|
|
952
952
|
yt_dlp/extractor/unistra.py,sha256=z1zkou5gHYyf9NQiALCcgtSQigbKicNlo-Xiq7G_pO0,2078
|
|
953
953
|
yt_dlp/extractor/unitednations.py,sha256=qFB_vRls1Sw5pJbQ16W6yKGy_IwbvgLwvcGsXm-D7BE,1289
|
|
954
954
|
yt_dlp/extractor/unity.py,sha256=huqyb02vbyBqiFR52bPtxV5b_YTK-PBwvKY8DR88JHo,1209
|
|
955
|
-
yt_dlp/extractor/unsupported.py,sha256=
|
|
955
|
+
yt_dlp/extractor/unsupported.py,sha256=8Ce-GqKdEdjVwzfRJG8WX_TyZTye2g0hzXm_V6-68GI,11185
|
|
956
956
|
yt_dlp/extractor/uol.py,sha256=kWFdi9XLelDpc2bpooKYUIDchndGY4SJmkjPhyXEt6w,5307
|
|
957
957
|
yt_dlp/extractor/uplynk.py,sha256=cJLFlmC4nD8zv7gYBO61j65M4ntvs8NM4My4wxloRVA,3352
|
|
958
958
|
yt_dlp/extractor/urort.py,sha256=LSk-RJsTH03x-7whkdvNRRAGofARl4bKXeyIzzSqnBQ,2136
|
|
@@ -1069,7 +1069,7 @@ yt_dlp/extractor/youtube/_notifications.py,sha256=1nhavzW0e2QWFAWHkfbTU4sSXNp4vU
|
|
|
1069
1069
|
yt_dlp/extractor/youtube/_redirect.py,sha256=WWWnGEkfSGBXpZFi_bWY4XcHZ8PDeK7UsndDaTYYhQg,9005
|
|
1070
1070
|
yt_dlp/extractor/youtube/_search.py,sha256=E9raTPGjUD6mm81WBpT4AsaxyiTBHdNssgzeHwVeNOE,6552
|
|
1071
1071
|
yt_dlp/extractor/youtube/_tab.py,sha256=MiQGWZdHENOz8Ac-OAuAgqMWJ6gC-PZKJWPDG80QY6E,115490
|
|
1072
|
-
yt_dlp/extractor/youtube/_video.py,sha256=
|
|
1072
|
+
yt_dlp/extractor/youtube/_video.py,sha256=8rBc4Q9ztXbqfqH6jSnffSyjV50M1lFh0lKf856CDUI,215201
|
|
1073
1073
|
yt_dlp/extractor/youtube/jsc/__init__.py,sha256=HaVFP8ikrLaE-ClAh39-S28WCF4S2KTRaSu7QvA28E8,289
|
|
1074
1074
|
yt_dlp/extractor/youtube/jsc/_director.py,sha256=92pB-KVSs6plmE5R8gpjkZL9aeoWNR0XTnGOBXMy9go,13167
|
|
1075
1075
|
yt_dlp/extractor/youtube/jsc/_registry.py,sha256=Vg9GkHKHKKPeRfUQ-XSw01mfx_2Xyodh0SJpwjawYCA,102
|
|
@@ -1125,13 +1125,13 @@ yt_dlp/utils/progress.py,sha256=t9kVvJ0oWuEqRzo9fdFbIhHUBtO_8mg348QwZ1faqLo,3261
|
|
|
1125
1125
|
yt_dlp/utils/traversal.py,sha256=64E3RcZ56iSX50RI_HbKdDNftkETMLBaEPX791_b7yQ,18265
|
|
1126
1126
|
yt_dlp/utils/jslib/__init__.py,sha256=CbdJiRA7Eh5PnjF2V4lDTcg0J0XjBMaaq0H4pCfq9Tk,87
|
|
1127
1127
|
yt_dlp/utils/jslib/devalue.py,sha256=UtcQ1IEzt6HWBjB9Z_6rJMb3y2pFrbHXDNu1rrxXF1c,5583
|
|
1128
|
-
yt_dlp-2026.
|
|
1129
|
-
yt_dlp-2026.
|
|
1130
|
-
yt_dlp-2026.
|
|
1131
|
-
yt_dlp-2026.
|
|
1132
|
-
yt_dlp-2026.
|
|
1133
|
-
yt_dlp-2026.
|
|
1134
|
-
yt_dlp-2026.
|
|
1135
|
-
yt_dlp-2026.
|
|
1136
|
-
yt_dlp-2026.
|
|
1137
|
-
yt_dlp-2026.
|
|
1128
|
+
yt_dlp-2026.2.4.data/data/share/bash-completion/completions/yt-dlp,sha256=KKMwJ7JkH-B2rXIR9n4wAHTqn5waHyxzPtVmsMoYkDI,6009
|
|
1129
|
+
yt_dlp-2026.2.4.data/data/share/doc/yt_dlp/README.txt,sha256=f_qSuENkuWo6YHBIo8QyxNf1Ka1kdrCavkIr3u0kXXQ,166276
|
|
1130
|
+
yt_dlp-2026.2.4.data/data/share/fish/vendor_completions.d/yt-dlp.fish,sha256=8eiSHKyozebmNDndOk6fwJC3l5kAnZDWfK98lyo5pj4,51631
|
|
1131
|
+
yt_dlp-2026.2.4.data/data/share/man/man1/yt-dlp.1,sha256=iDEp2PsbtXfaH2Nz7D4r_6pTqq6sOvIYw6L9cMy9Gdk,160903
|
|
1132
|
+
yt_dlp-2026.2.4.data/data/share/zsh/site-functions/_yt-dlp,sha256=VsiR8Dn2RqbVSZHAqQyDtTfrc3BIBdzwgrcaJqux8kQ,6005
|
|
1133
|
+
yt_dlp-2026.2.4.dist-info/METADATA,sha256=R_JCQfCUaicTWkzjs_KjnkjIHo5LqCuljDEJ0gJ9BJk,182014
|
|
1134
|
+
yt_dlp-2026.2.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
1135
|
+
yt_dlp-2026.2.4.dist-info/entry_points.txt,sha256=vWfetvzYgZIwDfMW6BjCe0Cy4pmTZEXRNzxAkfYlRJA,103
|
|
1136
|
+
yt_dlp-2026.2.4.dist-info/licenses/LICENSE,sha256=fhLl30uuEsshWBuhV87SDhmGoFCN0Q0Oikq5pM-U6Fw,1211
|
|
1137
|
+
yt_dlp-2026.2.4.dist-info/RECORD,,
|
|
File without changes
|
{yt_dlp-2026.1.31.233334.dev0.data → yt_dlp-2026.2.4.data}/data/share/zsh/site-functions/_yt-dlp
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|