mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 23:07:07 -05:00 
			
		
		
		
	[youtube:playlistsbase] Restrict playlist regex (Closes #8986)
This commit is contained in:
		@@ -234,7 +234,9 @@ class YoutubePlaylistBaseInfoExtractor(YoutubeEntryListBaseInfoExtractor):
 | 
			
		||||
 | 
			
		||||
class YoutubePlaylistsBaseInfoExtractor(YoutubeEntryListBaseInfoExtractor):
 | 
			
		||||
    def _process_page(self, content):
 | 
			
		||||
        for playlist_id in orderedSet(re.findall(r'href="/?playlist\?list=([0-9A-Za-z-_]{10,})"', content)):
 | 
			
		||||
        for playlist_id in orderedSet(re.findall(
 | 
			
		||||
                r'<h3[^>]+class="[^"]*yt-lockup-title[^"]*"[^>]*><a[^>]+href="/?playlist\?list=([0-9A-Za-z-_]{10,})"',
 | 
			
		||||
                content)):
 | 
			
		||||
            yield self.url_result(
 | 
			
		||||
                'https://www.youtube.com/playlist?list=%s' % playlist_id, 'YoutubePlaylist')
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user