mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	IEs: clean __init__ methods
They are not needed
This commit is contained in:
		| @@ -688,9 +688,6 @@ class MetacafeIE(InfoExtractor): | ||||
|     _FILTER_POST = 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user' | ||||
|     IE_NAME = u'metacafe' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_disclaimer(self): | ||||
|         """Report disclaimer retrieval.""" | ||||
|         self.to_screen(u'Retrieving disclaimer') | ||||
| @@ -795,9 +792,6 @@ class DailymotionIE(InfoExtractor): | ||||
|     IE_NAME = u'dailymotion' | ||||
|     _WORKING = False | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         # Extract id and simplified title from URL | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
| @@ -879,9 +873,6 @@ class PhotobucketIE(InfoExtractor): | ||||
|     _VALID_URL = r'(?:http://)?(?:[a-z0-9]+\.)?photobucket\.com/.*[\?\&]current=(.*\.flv)' | ||||
|     IE_NAME = u'photobucket' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         # Extract id from URL | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
| @@ -940,9 +931,6 @@ class YahooIE(InfoExtractor): | ||||
|     _VPAGE_URL = r'(?:http://)?video\.yahoo\.com/watch/([0-9]+)/([0-9]+)(?:[#\?].*)?' | ||||
|     IE_NAME = u'video.yahoo' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def _real_extract(self, url, new_video=True): | ||||
|         # Extract ID from URL | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
| @@ -1072,9 +1060,6 @@ class VimeoIE(InfoExtractor): | ||||
|     _VALID_URL = r'(?P<proto>https?://)?(?:(?:www|player)\.)?vimeo\.com/(?:(?:groups|album)/[^/]+/)?(?P<direct_link>play_redirect_hls\?clip_id=)?(?:videos?/)?(?P<id>[0-9]+)' | ||||
|     IE_NAME = u'vimeo' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def _real_extract(self, url, new_video=True): | ||||
|         # Extract ID from URL | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
| @@ -1185,9 +1170,6 @@ class ArteTvIE(InfoExtractor): | ||||
|  | ||||
|     IE_NAME = u'arte.tv' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def fetch_webpage(self, url): | ||||
|         request = compat_urllib_request.Request(url) | ||||
|         try: | ||||
| @@ -1311,9 +1293,6 @@ class GenericIE(InfoExtractor): | ||||
|     _VALID_URL = r'.*' | ||||
|     IE_NAME = u'generic' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_webpage(self, video_id): | ||||
|         """Report webpage download.""" | ||||
|         if not self._downloader.params.get('test', False): | ||||
| @@ -1453,9 +1432,6 @@ class YoutubeSearchIE(InfoExtractor): | ||||
|     _max_youtube_results = 1000 | ||||
|     IE_NAME = u'youtube:search' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_page(self, query, pagenum): | ||||
|         """Report attempt to download search page with given number.""" | ||||
|         query = query.decode(preferredencoding()) | ||||
| @@ -1530,9 +1506,6 @@ class GoogleSearchIE(InfoExtractor): | ||||
|     _max_google_results = 1000 | ||||
|     IE_NAME = u'video.google:search' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_page(self, query, pagenum): | ||||
|         """Report attempt to download playlist page with given number.""" | ||||
|         query = query.decode(preferredencoding()) | ||||
| @@ -1614,9 +1587,6 @@ class YahooSearchIE(InfoExtractor): | ||||
|     _max_yahoo_results = 1000 | ||||
|     IE_NAME = u'video.yahoo:search' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_page(self, query, pagenum): | ||||
|         """Report attempt to download playlist page with given number.""" | ||||
|         query = query.decode(preferredencoding()) | ||||
| @@ -1710,9 +1680,6 @@ class YoutubePlaylistIE(InfoExtractor): | ||||
|     _MAX_RESULTS = 50 | ||||
|     IE_NAME = u'youtube:playlist' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     @classmethod | ||||
|     def suitable(cls, url): | ||||
|         """Receives a URL and returns True if suitable for this IE.""" | ||||
| @@ -1857,9 +1824,6 @@ class YoutubeUserIE(InfoExtractor): | ||||
|     _VIDEO_INDICATOR = r'/watch\?v=(.+?)[\<&]' | ||||
|     IE_NAME = u'youtube:user' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_page(self, username, start_index): | ||||
|         """Report attempt to download user page.""" | ||||
|         self._downloader.to_screen(u'[youtube] user %s: Downloading video ids from %d to %d' % | ||||
| @@ -1926,9 +1890,6 @@ class BlipTVUserIE(InfoExtractor): | ||||
|     _PAGE_SIZE = 12 | ||||
|     IE_NAME = u'blip.tv:user' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_page(self, username, pagenum): | ||||
|         """Report attempt to download user page.""" | ||||
|         self.to_screen(u'user %s: Downloading video ids from page %d' % | ||||
| @@ -2254,9 +2215,6 @@ class MyVideoIE(InfoExtractor): | ||||
|     _VALID_URL = r'(?:http://)?(?:www\.)?myvideo\.de/watch/([0-9]+)/([^?/]+).*' | ||||
|     IE_NAME = u'myvideo' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def _real_extract(self,url): | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
|         if mobj is None: | ||||
| @@ -2692,9 +2650,6 @@ class SoundcloudIE(InfoExtractor): | ||||
|     _VALID_URL = r'^(?:https?://)?(?:www\.)?soundcloud\.com/([\w\d-]+)/([\w\d-]+)' | ||||
|     IE_NAME = u'soundcloud' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_resolve(self, video_id): | ||||
|         """Report information extraction.""" | ||||
|         self.to_screen(u'%s: Resolving id' % video_id) | ||||
| @@ -2761,9 +2716,6 @@ class SoundcloudSetIE(InfoExtractor): | ||||
|     _VALID_URL = r'^(?:https?://)?(?:www\.)?soundcloud\.com/([\w\d-]+)/sets/([\w\d-]+)' | ||||
|     IE_NAME = u'soundcloud' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_resolve(self, video_id): | ||||
|         """Report information extraction.""" | ||||
|         self.to_screen(u'%s: Resolving id' % video_id) | ||||
| @@ -2884,9 +2836,6 @@ class MixcloudIE(InfoExtractor): | ||||
|     _VALID_URL = r'^(?:https?://)?(?:www\.)?mixcloud\.com/([\w\d-]+)/([\w\d-]+)' | ||||
|     IE_NAME = u'mixcloud' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_download_json(self, file_id): | ||||
|         """Report JSON download.""" | ||||
|         self.to_screen(u'Downloading json') | ||||
| @@ -3334,9 +3283,6 @@ class GooglePlusIE(InfoExtractor): | ||||
|     _VALID_URL = r'(?:https://)?plus\.google\.com/(?:[^/]+/)*?posts/(\w+)' | ||||
|     IE_NAME = u'plus.google' | ||||
|  | ||||
|     def __init__(self, downloader=None): | ||||
|         InfoExtractor.__init__(self, downloader) | ||||
|  | ||||
|     def report_extract_entry(self, url): | ||||
|         """Report downloading extry""" | ||||
|         self.to_screen(u'Downloading entry: %s' % url) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz