mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:17:08 -05:00 
			
		
		
		
	[redtube] pep8
This commit is contained in:
		@@ -14,7 +14,7 @@ class RedTubeIE(InfoExtractor):
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self,url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        mobj = re.match(self._VALID_URL, url)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_id = mobj.group('id')
 | 
					        video_id = mobj.group('id')
 | 
				
			||||||
@@ -23,15 +23,16 @@ class RedTubeIE(InfoExtractor):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        self.report_extraction(video_id)
 | 
					        self.report_extraction(video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_url = self._html_search_regex(r'<source src="(.+?)" type="video/mp4">',
 | 
					        video_url = self._html_search_regex(
 | 
				
			||||||
            webpage, u'video URL')
 | 
					            r'<source src="(.+?)" type="video/mp4">', webpage, u'video URL')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_title = self._html_search_regex('<h1 class="videoTitle slidePanelMovable">(.+?)</h1>',
 | 
					        video_title = self._html_search_regex(
 | 
				
			||||||
 | 
					            r'<h1 class="videoTitle slidePanelMovable">(.+?)</h1>',
 | 
				
			||||||
            webpage, u'title')
 | 
					            webpage, u'title')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return [{
 | 
					        return {
 | 
				
			||||||
            'id':       video_id,
 | 
					            'id':       video_id,
 | 
				
			||||||
            'url':      video_url,
 | 
					            'url':      video_url,
 | 
				
			||||||
            'ext':      video_extension,
 | 
					            'ext':      video_extension,
 | 
				
			||||||
            'title':    video_title,
 | 
					            'title':    video_title,
 | 
				
			||||||
        }]
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user