]> jfr.im git - yt-dlp.git/blame - yt_dlp/downloader/external.py
[fragment] Print error message when skipping fragment
[yt-dlp.git] / yt_dlp / downloader / external.py
CommitLineData
222516d9
PH
1from __future__ import unicode_literals
2
3import os.path
f0298f65 4import re
222516d9 5import subprocess
12b84ac8 6import sys
f0298f65 7import time
5219cb3e 8
1009f67c 9from .fragment import FragmentFD
a50862b7
S
10from ..compat import (
11 compat_setenv,
12 compat_str,
13)
a755f825 14from ..postprocessor.ffmpeg import FFmpegPostProcessor, EXT_TO_OUT_FORMATS
222516d9 15from ..utils import (
1195a38f
S
16 cli_option,
17 cli_valueless_option,
18 cli_bool_option,
330690a2 19 _configuration_args,
222516d9 20 encodeFilename,
74f8654a 21 encodeArgument,
12b84ac8 22 handle_youtubedl_headers,
99cbe98c 23 check_executable,
8bdc1494 24 is_outdated_version,
f5b1bca9 25 process_communicate_or_kill,
539d158c 26 sanitize_open,
222516d9
PH
27)
28
29
1009f67c 30class ExternalFD(FragmentFD):
5219cb3e 31 SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps')
96fccc10 32 can_download_to_stdout = False
5219cb3e 33
222516d9
PH
34 def real_download(self, filename, info_dict):
35 self.report_destination(filename)
36 tmpfilename = self.temp_name(filename)
37
e7db6759 38 try:
f0298f65 39 started = time.time()
e7db6759
S
40 retval = self._call_downloader(tmpfilename, info_dict)
41 except KeyboardInterrupt:
42 if not info_dict.get('is_live'):
43 raise
44 # Live stream downloading cancellation should be considered as
45 # correct and expected termination thus all postprocessing
46 # should take place
47 retval = 0
48 self.to_screen('[%s] Interrupted by user' % self.get_basename())
49
222516d9 50 if retval == 0:
f0298f65
S
51 status = {
52 'filename': filename,
53 'status': 'finished',
54 'elapsed': time.time() - started,
55 }
56 if filename != '-':
80aa2460
JH
57 fsize = os.path.getsize(encodeFilename(tmpfilename))
58 self.to_screen('\r[%s] Downloaded %s bytes' % (self.get_basename(), fsize))
59 self.try_rename(tmpfilename, filename)
f0298f65 60 status.update({
80aa2460
JH
61 'downloaded_bytes': fsize,
62 'total_bytes': fsize,
80aa2460 63 })
3ba7740d 64 self._hook_progress(status, info_dict)
222516d9
PH
65 return True
66 else:
67 self.to_stderr('\n')
68 self.report_error('%s exited with code %d' % (
69 self.get_basename(), retval))
70 return False
71
72 @classmethod
73 def get_basename(cls):
74 return cls.__name__[:-2].lower()
75
76 @property
77 def exe(self):
52a8a1e1 78 return self.get_basename()
222516d9 79
99cbe98c 80 @classmethod
7f7de7f9 81 def available(cls, path=None):
52a8a1e1 82 path = check_executable(path or cls.get_basename(), [cls.AVAILABLE_OPT])
83 if path:
84 cls.exe = path
85 return path
86 return False
99cbe98c 87
222516d9
PH
88 @classmethod
89 def supports(cls, info_dict):
96fccc10 90 return (
91 (cls.can_download_to_stdout or not info_dict.get('to_stdout'))
92 and info_dict['protocol'] in cls.SUPPORTED_PROTOCOLS)
222516d9 93
2cb99ebb 94 @classmethod
7f7de7f9 95 def can_download(cls, info_dict, path=None):
96 return cls.available(path) and cls.supports(info_dict)
2cb99ebb 97
bf812ef7 98 def _option(self, command_option, param):
1195a38f 99 return cli_option(self.params, command_option, param)
bf812ef7 100
266b0ad6 101 def _bool_option(self, command_option, param, true_value='true', false_value='false', separator=None):
1195a38f 102 return cli_bool_option(self.params, command_option, param, true_value, false_value, separator)
266b0ad6 103
dc534b67 104 def _valueless_option(self, command_option, param, expected_value=True):
1195a38f 105 return cli_valueless_option(self.params, command_option, param, expected_value)
f30c2e8e 106
330690a2 107 def _configuration_args(self, keys=None, *args, **kwargs):
108 return _configuration_args(
109 self.get_basename(), self.params.get('external_downloader_args'), self.get_basename(),
110 keys, *args, **kwargs)
c75f0b36 111
222516d9
PH
112 def _call_downloader(self, tmpfilename, info_dict):
113 """ Either overwrite this or implement _make_cmd """
74f8654a 114 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
222516d9 115
74f8654a 116 self._debug_cmd(cmd)
222516d9 117
fc5c8b64 118 if 'fragments' not in info_dict:
fe845284 119 p = subprocess.Popen(
120 cmd, stderr=subprocess.PIPE)
121 _, stderr = process_communicate_or_kill(p)
122 if p.returncode != 0:
123 self.to_stderr(stderr.decode('utf-8', 'replace'))
fc5c8b64 124 return p.returncode
125
126 fragment_retries = self.params.get('fragment_retries', 0)
127 skip_unavailable_fragments = self.params.get('skip_unavailable_fragments', True)
128
129 count = 0
130 while count <= fragment_retries:
131 p = subprocess.Popen(
132 cmd, stderr=subprocess.PIPE)
133 _, stderr = process_communicate_or_kill(p)
134 if p.returncode == 0:
135 break
136 # TODO: Decide whether to retry based on error code
137 # https://aria2.github.io/manual/en/html/aria2c.html#exit-status
138 self.to_stderr(stderr.decode('utf-8', 'replace'))
139 count += 1
140 if count <= fragment_retries:
141 self.to_screen(
142 '[%s] Got error. Retrying fragments (attempt %d of %s)...'
143 % (self.get_basename(), count, self.format_retries(fragment_retries)))
144 if count > fragment_retries:
145 if not skip_unavailable_fragments:
146 self.report_error('Giving up after %s fragment retries' % fragment_retries)
147 return -1
148
149 decrypt_fragment = self.decrypter(info_dict)
150 dest, _ = sanitize_open(tmpfilename, 'wb')
151 for frag_index, fragment in enumerate(info_dict['fragments']):
152 fragment_filename = '%s-Frag%d' % (tmpfilename, frag_index)
153 try:
154 src, _ = sanitize_open(fragment_filename, 'rb')
b4b855eb 155 except IOError as err:
fc5c8b64 156 if skip_unavailable_fragments and frag_index > 1:
b4b855eb 157 self.report_skip_fragment(frag_index, err)
fc5c8b64 158 continue
b4b855eb 159 self.report_error(f'Unable to open fragment {frag_index}; {err}')
fc5c8b64 160 return -1
161 dest.write(decrypt_fragment(fragment, src.read()))
162 src.close()
163 if not self.params.get('keep_fragments', False):
164 os.remove(encodeFilename(fragment_filename))
165 dest.close()
166 os.remove(encodeFilename('%s.frag.urls' % tmpfilename))
167 return 0
222516d9
PH
168
169
384b6202 170class CurlFD(ExternalFD):
91ee320b 171 AVAILABLE_OPT = '-V'
99cbe98c 172
384b6202 173 def _make_cmd(self, tmpfilename, info_dict):
163d9667 174 cmd = [self.exe, '--location', '-o', tmpfilename]
002ea8fe 175 if info_dict.get('http_headers') is not None:
176 for key, val in info_dict['http_headers'].items():
177 cmd += ['--header', '%s: %s' % (key, val)]
178
98e698f1
RA
179 cmd += self._bool_option('--continue-at', 'continuedl', '-', '0')
180 cmd += self._valueless_option('--silent', 'noprogress')
181 cmd += self._valueless_option('--verbose', 'verbose')
182 cmd += self._option('--limit-rate', 'ratelimit')
37b239b3
S
183 retry = self._option('--retry', 'retries')
184 if len(retry) == 2:
185 if retry[1] in ('inf', 'infinite'):
186 retry[1] = '2147483647'
187 cmd += retry
98e698f1 188 cmd += self._option('--max-filesize', 'max_filesize')
9f3da138 189 cmd += self._option('--interface', 'source_address')
e7a8c303 190 cmd += self._option('--proxy', 'proxy')
dc534b67 191 cmd += self._valueless_option('--insecure', 'nocheckcertificate')
c75f0b36 192 cmd += self._configuration_args()
384b6202
PH
193 cmd += ['--', info_dict['url']]
194 return cmd
195
98e698f1
RA
196 def _call_downloader(self, tmpfilename, info_dict):
197 cmd = [encodeArgument(a) for a in self._make_cmd(tmpfilename, info_dict)]
198
199 self._debug_cmd(cmd)
200
acfccaca 201 # curl writes the progress to stderr so don't capture it.
98e698f1 202 p = subprocess.Popen(cmd)
f5b1bca9 203 process_communicate_or_kill(p)
98e698f1
RA
204 return p.returncode
205
384b6202 206
e0ac5214 207class AxelFD(ExternalFD):
91ee320b 208 AVAILABLE_OPT = '-V'
99cbe98c 209
e0ac5214 210 def _make_cmd(self, tmpfilename, info_dict):
211 cmd = [self.exe, '-o', tmpfilename]
002ea8fe 212 if info_dict.get('http_headers') is not None:
213 for key, val in info_dict['http_headers'].items():
214 cmd += ['-H', '%s: %s' % (key, val)]
e0ac5214 215 cmd += self._configuration_args()
216 cmd += ['--', info_dict['url']]
217 return cmd
218
219
222516d9 220class WgetFD(ExternalFD):
91ee320b 221 AVAILABLE_OPT = '--version'
99cbe98c 222
222516d9
PH
223 def _make_cmd(self, tmpfilename, info_dict):
224 cmd = [self.exe, '-O', tmpfilename, '-nv', '--no-cookies']
002ea8fe 225 if info_dict.get('http_headers') is not None:
226 for key, val in info_dict['http_headers'].items():
227 cmd += ['--header', '%s: %s' % (key, val)]
8c80603f
S
228 cmd += self._option('--limit-rate', 'ratelimit')
229 retry = self._option('--tries', 'retries')
230 if len(retry) == 2:
231 if retry[1] in ('inf', 'infinite'):
232 retry[1] = '0'
233 cmd += retry
9f3da138 234 cmd += self._option('--bind-address', 'source_address')
bf812ef7 235 cmd += self._option('--proxy', 'proxy')
dc534b67 236 cmd += self._valueless_option('--no-check-certificate', 'nocheckcertificate')
c75f0b36 237 cmd += self._configuration_args()
222516d9
PH
238 cmd += ['--', info_dict['url']]
239 return cmd
240
241
384b6202 242class Aria2cFD(ExternalFD):
91ee320b 243 AVAILABLE_OPT = '-v'
52a8a1e1 244 SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'dash_frag_urls', 'm3u8_frag_urls')
99cbe98c 245
0a473f2f 246 @staticmethod
247 def supports_manifest(manifest):
248 UNSUPPORTED_FEATURES = [
249 r'#EXT-X-BYTERANGE', # playlists composed of byte ranges of media files [1]
250 # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.2
251 ]
252 check_results = (not re.search(feature, manifest) for feature in UNSUPPORTED_FEATURES)
253 return all(check_results)
254
384b6202 255 def _make_cmd(self, tmpfilename, info_dict):
2b3bf01c 256 cmd = [self.exe, '-c',
257 '--console-log-level=warn', '--summary-interval=0', '--download-result=hide',
258 '--file-allocation=none', '-x16', '-j16', '-s16']
259 if 'fragments' in info_dict:
260 cmd += ['--allow-overwrite=true', '--allow-piece-length-change=true']
ff0f78e1 261 else:
262 cmd += ['--min-split-size', '1M']
2b3bf01c 263
002ea8fe 264 if info_dict.get('http_headers') is not None:
265 for key, val in info_dict['http_headers'].items():
266 cmd += ['--header', '%s: %s' % (key, val)]
691d5823 267 cmd += self._option('--max-overall-download-limit', 'ratelimit')
9f3da138 268 cmd += self._option('--interface', 'source_address')
bf812ef7 269 cmd += self._option('--all-proxy', 'proxy')
266b0ad6 270 cmd += self._bool_option('--check-certificate', 'nocheckcertificate', 'false', 'true', '=')
71f47617 271 cmd += self._bool_option('--remote-time', 'updatetime', 'true', 'false', '=')
2b3bf01c 272 cmd += self._configuration_args()
273
eb55bad5 274 # aria2c strips out spaces from the beginning/end of filenames and paths.
275 # We work around this issue by adding a "./" to the beginning of the
276 # filename and relative path, and adding a "/" at the end of the path.
277 # See: https://github.com/yt-dlp/yt-dlp/issues/276
278 # https://github.com/ytdl-org/youtube-dl/issues/20312
279 # https://github.com/aria2/aria2/issues/1373
2b3bf01c 280 dn = os.path.dirname(tmpfilename)
281 if dn:
eb55bad5 282 if not os.path.isabs(dn):
283 dn = '.%s%s' % (os.path.sep, dn)
284 cmd += ['--dir', dn + os.path.sep]
2b3bf01c 285 if 'fragments' not in info_dict:
eb55bad5 286 cmd += ['--out', '.%s%s' % (os.path.sep, os.path.basename(tmpfilename))]
5219cb3e 287 cmd += ['--auto-file-renaming=false']
2b3bf01c 288
d7009caa 289 if 'fragments' in info_dict:
fe845284 290 cmd += ['--file-allocation=none', '--uri-selector=inorder']
5219cb3e 291 url_list_file = '%s.frag.urls' % tmpfilename
292 url_list = []
fe845284 293 for frag_index, fragment in enumerate(info_dict['fragments']):
294 fragment_filename = '%s-Frag%d' % (os.path.basename(tmpfilename), frag_index)
295 url_list.append('%s\n\tout=%s' % (fragment['url'], fragment_filename))
539d158c 296 stream, _ = sanitize_open(url_list_file, 'wb')
297 stream.write('\n'.join(url_list).encode('utf-8'))
298 stream.close()
5219cb3e 299 cmd += ['-i', url_list_file]
300 else:
301 cmd += ['--', info_dict['url']]
384b6202
PH
302 return cmd
303
906e2f0e
JMF
304
305class HttpieFD(ExternalFD):
52a8a1e1 306 AVAILABLE_OPT = '--version'
307
99cbe98c 308 @classmethod
9e631877 309 def available(cls, path=None):
52a8a1e1 310 return ExternalFD.available(cls, path or 'http')
99cbe98c 311
906e2f0e
JMF
312 def _make_cmd(self, tmpfilename, info_dict):
313 cmd = ['http', '--download', '--output', tmpfilename, info_dict['url']]
002ea8fe 314
315 if info_dict.get('http_headers') is not None:
316 for key, val in info_dict['http_headers'].items():
317 cmd += ['%s:%s' % (key, val)]
906e2f0e
JMF
318 return cmd
319
12b84ac8 320
321class FFmpegFD(ExternalFD):
6251555f 322 SUPPORTED_PROTOCOLS = ('http', 'https', 'ftp', 'ftps', 'm3u8', 'm3u8_native', 'rtsp', 'rtmp', 'rtmp_ffmpeg', 'mms', 'http_dash_segments')
96fccc10 323 can_download_to_stdout = True
12b84ac8 324
99cbe98c 325 @classmethod
52a8a1e1 326 def available(cls, path=None):
327 # TODO: Fix path for ffmpeg
dbf5416a 328 # Fixme: This may be wrong when --ffmpeg-location is used
99cbe98c 329 return FFmpegPostProcessor().available
330
c111cefa 331 @classmethod
332 def supports(cls, info_dict):
333 return all(proto in cls.SUPPORTED_PROTOCOLS for proto in info_dict['protocol'].split('+'))
334
e36d50c5 335 def on_process_started(self, proc, stdin):
336 """ Override this in subclasses """
337 pass
338
dbf5416a 339 @classmethod
d5fe04f5 340 def can_merge_formats(cls, info_dict, params):
dbf5416a 341 return (
342 info_dict.get('requested_formats')
343 and info_dict.get('protocol')
344 and not params.get('allow_unplayable_formats')
345 and 'no-direct-merge' not in params.get('compat_opts', [])
346 and cls.can_download(info_dict))
347
12b84ac8 348 def _call_downloader(self, tmpfilename, info_dict):
18e674b4 349 urls = [f['url'] for f in info_dict.get('requested_formats', [])] or [info_dict['url']]
12b84ac8 350 ffpp = FFmpegPostProcessor(downloader=self)
77dea16a 351 if not ffpp.available:
e3b771a8 352 self.report_error('m3u8 download detected but ffmpeg could not be found. Please install')
77dea16a 353 return False
12b84ac8 354 ffpp.check_version()
355
356 args = [ffpp.executable, '-y']
357
a609e61a
S
358 for log_level in ('quiet', 'verbose'):
359 if self.params.get(log_level, False):
360 args += ['-loglevel', log_level]
361 break
2ec1759f 362 if not self.params.get('verbose'):
363 args += ['-hide_banner']
a609e61a 364
bb36a55c 365 args += info_dict.get('_ffmpeg_args', [])
366
367 # This option exists only for compatibility. Extractors should use `_ffmpeg_args` instead
36fce548
RA
368 seekable = info_dict.get('_seekable')
369 if seekable is not None:
370 # setting -seekable prevents ffmpeg from guessing if the server
371 # supports seeking(by adding the header `Range: bytes=0-`), which
372 # can cause problems in some cases
067aa17e 373 # https://github.com/ytdl-org/youtube-dl/issues/11800#issuecomment-275037127
36fce548
RA
374 # http://trac.ffmpeg.org/ticket/6125#comment:10
375 args += ['-seekable', '1' if seekable else '0']
376
694c47b2 377 # start_time = info_dict.get('start_time') or 0
378 # if start_time:
379 # args += ['-ss', compat_str(start_time)]
380 # end_time = info_dict.get('end_time')
381 # if end_time:
382 # args += ['-t', compat_str(end_time - start_time)]
12b84ac8 383
18e674b4 384 if info_dict.get('http_headers') is not None and re.match(r'^https?://', urls[0]):
12b84ac8 385 # Trailing \r\n after each HTTP header is important to prevent warning from ffmpeg/avconv:
386 # [http @ 00000000003d2fa0] No trailing CRLF found in HTTP header.
387 headers = handle_youtubedl_headers(info_dict['http_headers'])
388 args += [
389 '-headers',
390 ''.join('%s: %s\r\n' % (key, val) for key, val in headers.items())]
391
e62d9c5c
S
392 env = None
393 proxy = self.params.get('proxy')
394 if proxy:
395 if not re.match(r'^[\da-zA-Z]+://', proxy):
396 proxy = 'http://%s' % proxy
20bad91d
YCH
397
398 if proxy.startswith('socks'):
399 self.report_warning(
6c9b71bc
YCH
400 '%s does not support SOCKS proxies. Downloading is likely to fail. '
401 'Consider adding --hls-prefer-native to your command.' % self.get_basename())
20bad91d 402
e62d9c5c
S
403 # Since December 2015 ffmpeg supports -http_proxy option (see
404 # http://git.videolan.org/?p=ffmpeg.git;a=commit;h=b4eb1f29ebddd60c41a2eb39f5af701e38e0d3fd)
405 # We could switch to the following code if we are able to detect version properly
406 # args += ['-http_proxy', proxy]
407 env = os.environ.copy()
408 compat_setenv('HTTP_PROXY', proxy, env=env)
50ce1c33 409 compat_setenv('http_proxy', proxy, env=env)
e62d9c5c 410
4230c489 411 protocol = info_dict.get('protocol')
412
413 if protocol == 'rtmp':
414 player_url = info_dict.get('player_url')
415 page_url = info_dict.get('page_url')
416 app = info_dict.get('app')
417 play_path = info_dict.get('play_path')
418 tc_url = info_dict.get('tc_url')
419 flash_version = info_dict.get('flash_version')
420 live = info_dict.get('rtmp_live', False)
d7d86fdd 421 conn = info_dict.get('rtmp_conn')
4230c489 422 if player_url is not None:
423 args += ['-rtmp_swfverify', player_url]
424 if page_url is not None:
425 args += ['-rtmp_pageurl', page_url]
426 if app is not None:
427 args += ['-rtmp_app', app]
428 if play_path is not None:
429 args += ['-rtmp_playpath', play_path]
430 if tc_url is not None:
431 args += ['-rtmp_tcurl', tc_url]
432 if flash_version is not None:
433 args += ['-rtmp_flashver', flash_version]
434 if live:
435 args += ['-rtmp_live', 'live']
d7d86fdd
RA
436 if isinstance(conn, list):
437 for entry in conn:
438 args += ['-rtmp_conn', entry]
439 elif isinstance(conn, compat_str):
440 args += ['-rtmp_conn', conn]
4230c489 441
330690a2 442 for i, url in enumerate(urls):
443 args += self._configuration_args((f'_i{i + 1}', '_i')) + ['-i', url]
6b6c16ca 444
330690a2 445 args += ['-c', 'copy']
6251555f 446 if info_dict.get('requested_formats') or protocol == 'http_dash_segments':
447 for (i, fmt) in enumerate(info_dict.get('requested_formats') or [info_dict]):
448 stream_number = fmt.get('manifest_stream_number', 0)
449 a_or_v = 'a' if fmt.get('acodec') != 'none' else 'v'
450 args.extend(['-map', f'{i}:{a_or_v}:{stream_number}'])
6d0fe752
JH
451
452 if self.params.get('test', False):
a50862b7 453 args += ['-fs', compat_str(self._TEST_FILE_SIZE)]
6d0fe752 454
e5611e8e 455 ext = info_dict['ext']
f5436c5d 456 if protocol in ('m3u8', 'm3u8_native'):
9bd20204 457 use_mpegts = (tmpfilename == '-') or self.params.get('hls_use_mpegts')
458 if use_mpegts is None:
459 use_mpegts = info_dict.get('is_live')
460 if use_mpegts:
12b84ac8 461 args += ['-f', 'mpegts']
462 else:
8bdc1494 463 args += ['-f', 'mp4']
be670b8e 464 if (ffpp.basename == 'ffmpeg' and is_outdated_version(ffpp._versions['ffmpeg'], '3.2', False)) and (not info_dict.get('acodec') or info_dict['acodec'].split('.')[0] in ('aac', 'mp4a')):
8bdc1494 465 args += ['-bsf:a', 'aac_adtstoasc']
4230c489 466 elif protocol == 'rtmp':
467 args += ['-f', 'flv']
e5611e8e 468 elif ext == 'mp4' and tmpfilename == '-':
469 args += ['-f', 'mpegts']
12b84ac8 470 else:
e5611e8e 471 args += ['-f', EXT_TO_OUT_FORMATS.get(ext, ext)]
12b84ac8 472
6251555f 473 args += self._configuration_args(('_o1', '_o', ''))
330690a2 474
12b84ac8 475 args = [encodeArgument(opt) for opt in args]
d868f43c 476 args.append(encodeFilename(ffpp._ffmpeg_filename_argument(tmpfilename), True))
12b84ac8 477 self._debug_cmd(args)
478
e62d9c5c 479 proc = subprocess.Popen(args, stdin=subprocess.PIPE, env=env)
e36d50c5 480 if url in ('-', 'pipe:'):
481 self.on_process_started(proc, proc.stdin)
12b84ac8 482 try:
483 retval = proc.wait()
f5b1bca9 484 except BaseException as e:
12b84ac8 485 # subprocces.run would send the SIGKILL signal to ffmpeg and the
486 # mp4 file couldn't be played, but if we ask ffmpeg to quit it
487 # produces a file that is playable (this is mostly useful for live
488 # streams). Note that Windows is not affected and produces playable
067aa17e 489 # files (see https://github.com/ytdl-org/youtube-dl/issues/8300).
e36d50c5 490 if isinstance(e, KeyboardInterrupt) and sys.platform != 'win32' and url not in ('-', 'pipe:'):
f5b1bca9 491 process_communicate_or_kill(proc, b'q')
492 else:
493 proc.kill()
494 proc.wait()
12b84ac8 495 raise
496 return retval
497
498
499class AVconvFD(FFmpegFD):
500 pass
501
582be358 502
222516d9
PH
503_BY_NAME = dict(
504 (klass.get_basename(), klass)
505 for name, klass in globals().items()
1009f67c 506 if name.endswith('FD') and name not in ('ExternalFD', 'FragmentFD')
222516d9
PH
507)
508
509
510def list_external_downloaders():
511 return sorted(_BY_NAME.keys())
512
513
514def get_external_downloader(external_downloader):
515 """ Given the name of the executable, see whether we support the given
516 downloader . """
6c4d20cd
S
517 # Drop .exe extension on Windows
518 bn = os.path.splitext(os.path.basename(external_downloader))[0]
52a8a1e1 519 return _BY_NAME.get(bn)