diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-12 20:45:08 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-06-13 03:45:53 +0530 |
commit | 45db527fa6fc92238e85a4f39855479d1034c59a (patch) | |
tree | 5698827ff47714a0cebcfaae9427bd2c3d6cd069 | |
parent | 28419ca2c84de90acbfdb769d1a38440d93bd9c5 (diff) | |
download | hypervideo-pre-45db527fa6fc92238e85a4f39855479d1034c59a.tar.lz hypervideo-pre-45db527fa6fc92238e85a4f39855479d1034c59a.tar.xz hypervideo-pre-45db527fa6fc92238e85a4f39855479d1034c59a.zip |
[youtube] Login is not needed for `:ytrec`
-rw-r--r-- | yt_dlp/extractor/youtube.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py index 9161ea3d1..14514940d 100644 --- a/yt_dlp/extractor/youtube.py +++ b/yt_dlp/extractor/youtube.py @@ -4078,6 +4078,7 @@ class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor): IE_DESC = 'YouTube.com recommended videos, ":ytrec" for short (requires authentication)' _VALID_URL = r'https?://(?:www\.)?youtube\.com/?(?:[?#]|$)|:ytrec(?:ommended)?' _FEED_NAME = 'recommended' + _LOGIN_REQUIRED = False _TESTS = [{ 'url': ':ytrec', 'only_matching': True, |