mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[youtube:search] Support hashtag entries (#3265)
Authored-by: coletdjnz
This commit is contained in:
parent
c8e856a551
commit
ad210f4fd4
1 changed files with 19 additions and 1 deletions
|
@ -3903,6 +3903,13 @@ def _video_entry(self, video_renderer):
|
|||
if video_id:
|
||||
return self._extract_video(video_renderer)
|
||||
|
||||
def _hashtag_tile_entry(self, hashtag_tile_renderer):
|
||||
url = urljoin('https://youtube.com', traverse_obj(
|
||||
hashtag_tile_renderer, ('onTapCommand', 'commandMetadata', 'webCommandMetadata', 'url')))
|
||||
if url:
|
||||
return self.url_result(
|
||||
url, ie=YoutubeTabIE.ie_key(), title=self._get_text(hashtag_tile_renderer, 'hashtag'))
|
||||
|
||||
def _post_thread_entries(self, post_thread_renderer):
|
||||
post_renderer = try_get(
|
||||
post_thread_renderer, lambda x: x['post']['backstagePostRenderer'], dict)
|
||||
|
@ -3991,6 +3998,7 @@ def _extract_entries(self, parent_renderer, continuation_list):
|
|||
'videoRenderer': lambda x: [self._video_entry(x)],
|
||||
'playlistRenderer': lambda x: self._grid_entries({'items': [{'playlistRenderer': x}]}),
|
||||
'channelRenderer': lambda x: self._grid_entries({'items': [{'channelRenderer': x}]}),
|
||||
'hashtagTileRenderer': lambda x: [self._hashtag_tile_entry(x)]
|
||||
}
|
||||
for key, renderer in isr_content.items():
|
||||
if key not in known_renderers:
|
||||
|
@ -5520,7 +5528,17 @@ class YoutubeSearchURLIE(YoutubeTabBaseInfoExtractor):
|
|||
'id': 'python',
|
||||
'title': 'python',
|
||||
}
|
||||
|
||||
}, {
|
||||
'url': 'https://www.youtube.com/results?search_query=%23cats',
|
||||
'playlist_mincount': 1,
|
||||
'info_dict': {
|
||||
'id': '#cats',
|
||||
'title': '#cats',
|
||||
'entries': [{
|
||||
'url': r're:https://(www\.)?youtube\.com/hashtag/cats',
|
||||
'title': '#cats',
|
||||
}],
|
||||
},
|
||||
}, {
|
||||
'url': 'https://www.youtube.com/results?q=test&sp=EgQIBBgB',
|
||||
'only_matching': True,
|
||||
|
|
Loading…
Reference in a new issue