mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-03 19:23:44 +00:00 
			
		
		
		
	[pornhub:playlistbase] Use orderedSet
This commit is contained in:
		
							parent
							
								
									a1cf3e38a3
								
							
						
					
					
						commit
						8f9a477e7f
					
				@ -12,6 +12,7 @@ from ..compat import (
 | 
			
		||||
from ..utils import (
 | 
			
		||||
    ExtractorError,
 | 
			
		||||
    int_or_none,
 | 
			
		||||
    orderedSet,
 | 
			
		||||
    sanitized_Request,
 | 
			
		||||
    str_to_int,
 | 
			
		||||
)
 | 
			
		||||
@ -150,7 +151,7 @@ class PornHubPlaylistBaseIE(InfoExtractor):
 | 
			
		||||
    def _extract_entries(self, webpage):
 | 
			
		||||
        return [
 | 
			
		||||
            self.url_result('http://www.pornhub.com/%s' % video_url, PornHubIE.ie_key())
 | 
			
		||||
            for video_url in set(re.findall(
 | 
			
		||||
            for video_url in orderedSet(re.findall(
 | 
			
		||||
                r'href="/?(view_video\.php\?.*\bviewkey=[\da-z]+[^"]*)"', webpage))
 | 
			
		||||
        ]
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user