mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Fix all PEP8 issues except E501
This commit is contained in:
		| @@ -22,7 +22,7 @@ def main(): | |||||||
|             continue |             continue | ||||||
|         elif ie_desc is not None: |         elif ie_desc is not None: | ||||||
|             ie_html += ': {}'.format(ie.IE_DESC) |             ie_html += ': {}'.format(ie.IE_DESC) | ||||||
|         if ie.working() == False: |         if not ie.working(): | ||||||
|             ie_html += ' (Currently broken)' |             ie_html += ' (Currently broken)' | ||||||
|         ie_htmls.append('<li>{}</li>'.format(ie_html)) |         ie_htmls.append('<li>{}</li>'.format(ie_html)) | ||||||
|  |  | ||||||
|   | |||||||
| @@ -189,7 +189,7 @@ def _real_main(argv=None): | |||||||
|  |  | ||||||
|     # --all-sub automatically sets --write-sub if --write-auto-sub is not given |     # --all-sub automatically sets --write-sub if --write-auto-sub is not given | ||||||
|     # this was the old behaviour if only --all-sub was given. |     # this was the old behaviour if only --all-sub was given. | ||||||
|     if opts.allsubtitles and (opts.writeautomaticsub == False): |     if opts.allsubtitles and not opts.writeautomaticsub: | ||||||
|         opts.writesubtitles = True |         opts.writesubtitles = True | ||||||
|  |  | ||||||
|     if sys.version_info < (3,): |     if sys.version_info < (3,): | ||||||
|   | |||||||
| @@ -73,7 +73,8 @@ class BambuserChannelIE(InfoExtractor): | |||||||
|         urls = [] |         urls = [] | ||||||
|         last_id = '' |         last_id = '' | ||||||
|         for i in itertools.count(1): |         for i in itertools.count(1): | ||||||
|             req_url = ('http://bambuser.com/xhr-api/index.php?username={user}' |             req_url = ( | ||||||
|  |                 'http://bambuser.com/xhr-api/index.php?username={user}' | ||||||
|                 '&sort=created&access_mode=0%2C1%2C2&limit={count}' |                 '&sort=created&access_mode=0%2C1%2C2&limit={count}' | ||||||
|                 '&method=broadcast&format=json&vid_older_than={last}' |                 '&method=broadcast&format=json&vid_older_than={last}' | ||||||
|             ).format(user=user, count=self._STEP, last=last_id) |             ).format(user=user, count=self._STEP, last=last_id) | ||||||
|   | |||||||
| @@ -188,7 +188,8 @@ class Channel9IE(InfoExtractor): | |||||||
|         view_count = self._extract_view_count(html) |         view_count = self._extract_view_count(html) | ||||||
|         comment_count = self._extract_comment_count(html) |         comment_count = self._extract_comment_count(html) | ||||||
|  |  | ||||||
|         common = {'_type': 'video', |         common = { | ||||||
|  |             '_type': 'video', | ||||||
|             'id': content_path, |             'id': content_path, | ||||||
|             'description': description, |             'description': description, | ||||||
|             'thumbnail': thumbnail, |             'thumbnail': thumbnail, | ||||||
|   | |||||||
| @@ -248,7 +248,8 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text | |||||||
|         subtitles = {} |         subtitles = {} | ||||||
|         sub_format = self._downloader.params.get('subtitlesformat', 'srt') |         sub_format = self._downloader.params.get('subtitlesformat', 'srt') | ||||||
|         for sub_id, sub_name in re.findall(r'\?ssid=([0-9]+)" title="([^"]+)', webpage): |         for sub_id, sub_name in re.findall(r'\?ssid=([0-9]+)" title="([^"]+)', webpage): | ||||||
|             sub_page = self._download_webpage('http://www.crunchyroll.com/xml/?req=RpcApiSubtitle_GetXml&subtitle_script_id=' + sub_id,\ |             sub_page = self._download_webpage( | ||||||
|  |                 'http://www.crunchyroll.com/xml/?req=RpcApiSubtitle_GetXml&subtitle_script_id=' + sub_id, | ||||||
|                 video_id, note='Downloading subtitles for ' + sub_name) |                 video_id, note='Downloading subtitles for ' + sub_name) | ||||||
|             id = self._search_regex(r'id=\'([0-9]+)', sub_page, 'subtitle_id', fatal=False) |             id = self._search_regex(r'id=\'([0-9]+)', sub_page, 'subtitle_id', fatal=False) | ||||||
|             iv = self._search_regex(r'<iv>([^<]+)', sub_page, 'subtitle_iv', fatal=False) |             iv = self._search_regex(r'<iv>([^<]+)', sub_page, 'subtitle_iv', fatal=False) | ||||||
|   | |||||||
| @@ -537,9 +537,9 @@ class GenericIE(InfoExtractor): | |||||||
|  |  | ||||||
|             if default_search in ('error', 'fixup_error'): |             if default_search in ('error', 'fixup_error'): | ||||||
|                 raise ExtractorError( |                 raise ExtractorError( | ||||||
|                     ('%r is not a valid URL. ' |                     '%r is not a valid URL. ' | ||||||
|                     'Set --default-search "ytsearch" (or run  youtube-dl "ytsearch:%s" ) to search YouTube' |                     'Set --default-search "ytsearch" (or run  youtube-dl "ytsearch:%s" ) to search YouTube' | ||||||
|                     ) % (url, url), expected=True) |                     % (url, url), expected=True) | ||||||
|             else: |             else: | ||||||
|                 if ':' not in default_search: |                 if ':' not in default_search: | ||||||
|                     default_search += ':' |                     default_search += ':' | ||||||
|   | |||||||
| @@ -63,8 +63,10 @@ class IGNIE(InfoExtractor): | |||||||
|                 'id': '078fdd005f6d3c02f63d795faa1b984f', |                 'id': '078fdd005f6d3c02f63d795faa1b984f', | ||||||
|                 'ext': 'mp4', |                 'ext': 'mp4', | ||||||
|                 'title': 'Rewind Theater - Wild Trailer Gamescom 2014', |                 'title': 'Rewind Theater - Wild Trailer Gamescom 2014', | ||||||
|                 'description': 'Giant skeletons, bloody hunts, and captivating' |                 'description': ( | ||||||
|                     ' natural beauty take our breath away.', |                     'Giant skeletons, bloody hunts, and captivating' | ||||||
|  |                     ' natural beauty take our breath away.' | ||||||
|  |                 ), | ||||||
|             }, |             }, | ||||||
|         }, |         }, | ||||||
|     ] |     ] | ||||||
|   | |||||||
| @@ -36,9 +36,10 @@ class TlcDeIE(InfoExtractor): | |||||||
|             'ext': 'mp4', |             'ext': 'mp4', | ||||||
|             'title': 'Breaking Amish: Die Welt da draußen', |             'title': 'Breaking Amish: Die Welt da draußen', | ||||||
|             'uploader': 'Discovery Networks - Germany', |             'uploader': 'Discovery Networks - Germany', | ||||||
|             'description': 'Vier Amische und eine Mennonitin wagen in New York' |             'description': ( | ||||||
|  |                 'Vier Amische und eine Mennonitin wagen in New York' | ||||||
|                 '  den Sprung in ein komplett anderes Leben. Begleitet sie auf' |                 '  den Sprung in ein komplett anderes Leben. Begleitet sie auf' | ||||||
|                 ' ihrem spannenden Weg.', |                 ' ihrem spannenden Weg.'), | ||||||
|         }, |         }, | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -262,7 +262,8 @@ def parseOpts(overrideArguments=None): | |||||||
|     video_format.add_option( |     video_format.add_option( | ||||||
|         '-f', '--format', |         '-f', '--format', | ||||||
|         action='store', dest='format', metavar='FORMAT', default=None, |         action='store', dest='format', metavar='FORMAT', default=None, | ||||||
|         help='video format code, specify the order of preference using' |         help=( | ||||||
|  |             'video format code, specify the order of preference using' | ||||||
|             ' slashes: -f 22/17/18 .  -f mp4 , -f m4a and  -f flv  are also' |             ' slashes: -f 22/17/18 .  -f mp4 , -f m4a and  -f flv  are also' | ||||||
|             ' supported. You can also use the special names "best",' |             ' supported. You can also use the special names "best",' | ||||||
|             ' "bestvideo", "bestaudio", "worst", "worstvideo" and' |             ' "bestvideo", "bestaudio", "worst", "worstvideo" and' | ||||||
| @@ -271,7 +272,7 @@ def parseOpts(overrideArguments=None): | |||||||
|             ' -f  136/137/mp4/bestvideo,140/m4a/bestaudio.' |             ' -f  136/137/mp4/bestvideo,140/m4a/bestaudio.' | ||||||
|             ' You can merge the video and audio of two formats into a single' |             ' You can merge the video and audio of two formats into a single' | ||||||
|             ' file using -f <video-format>+<audio-format> (requires ffmpeg or' |             ' file using -f <video-format>+<audio-format> (requires ffmpeg or' | ||||||
|             ' avconv), for example -f bestvideo+bestaudio.') |             ' avconv), for example -f bestvideo+bestaudio.')) | ||||||
|     video_format.add_option( |     video_format.add_option( | ||||||
|         '--all-formats', |         '--all-formats', | ||||||
|         action='store_const', dest='format', const='all', |         action='store_const', dest='format', const='all', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Philipp Hagemeister
					Philipp Hagemeister