]> jfr.im git - yt-dlp.git/blame - youtube_dl/utils.py
[xbef] (Add extractor)
[yt-dlp.git] / youtube_dl / utils.py
CommitLineData
d77c3dfd
FV
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
62e609ab 4import contextlib
e3946f98 5import ctypes
c496ca96
PH
6import datetime
7import email.utils
f45c185f 8import errno
e68301af 9import getpass
d77c3dfd 10import gzip
b7ab0590 11import itertools
03f9daab 12import io
f4bfd65f 13import json
d77c3dfd 14import locale
02dbf93f 15import math
d77c3dfd 16import os
4eb7f1d1 17import pipes
c496ca96 18import platform
d77c3dfd 19import re
13ebea79 20import ssl
c496ca96 21import socket
b53466e1 22import struct
1c088fa8 23import subprocess
d77c3dfd 24import sys
01951dda 25import traceback
bcf89ce6 26import xml.etree.ElementTree
d77c3dfd 27import zlib
d77c3dfd 28
01ba00ca 29try:
59ae15a5 30 import urllib.request as compat_urllib_request
01ba00ca 31except ImportError: # Python 2
59ae15a5 32 import urllib2 as compat_urllib_request
01ba00ca
PH
33
34try:
59ae15a5 35 import urllib.error as compat_urllib_error
01ba00ca 36except ImportError: # Python 2
59ae15a5 37 import urllib2 as compat_urllib_error
01ba00ca
PH
38
39try:
59ae15a5 40 import urllib.parse as compat_urllib_parse
01ba00ca 41except ImportError: # Python 2
59ae15a5 42 import urllib as compat_urllib_parse
01ba00ca 43
799c0763
PH
44try:
45 from urllib.parse import urlparse as compat_urllib_parse_urlparse
46except ImportError: # Python 2
47 from urlparse import urlparse as compat_urllib_parse_urlparse
48
6543f0dc
JMF
49try:
50 import urllib.parse as compat_urlparse
51except ImportError: # Python 2
52 import urlparse as compat_urlparse
53
01ba00ca 54try:
59ae15a5 55 import http.cookiejar as compat_cookiejar
01ba00ca 56except ImportError: # Python 2
59ae15a5 57 import cookielib as compat_cookiejar
01ba00ca 58
3e669f36 59try:
59ae15a5 60 import html.entities as compat_html_entities
9f37a959 61except ImportError: # Python 2
59ae15a5 62 import htmlentitydefs as compat_html_entities
3e669f36 63
a8156c1d 64try:
59ae15a5 65 import html.parser as compat_html_parser
9f37a959 66except ImportError: # Python 2
59ae15a5 67 import HTMLParser as compat_html_parser
a8156c1d 68
348d0a7a 69try:
59ae15a5 70 import http.client as compat_http_client
9f37a959 71except ImportError: # Python 2
59ae15a5 72 import httplib as compat_http_client
348d0a7a 73
2eabb802 74try:
0e283428 75 from urllib.error import HTTPError as compat_HTTPError
2eabb802
PH
76except ImportError: # Python 2
77 from urllib2 import HTTPError as compat_HTTPError
78
e0df6211
PH
79try:
80 from urllib.request import urlretrieve as compat_urlretrieve
81except ImportError: # Python 2
82 from urllib import urlretrieve as compat_urlretrieve
83
84
5910e210
PH
85try:
86 from subprocess import DEVNULL
87 compat_subprocess_get_DEVNULL = lambda: DEVNULL
88except ImportError:
89 compat_subprocess_get_DEVNULL = lambda: open(os.path.devnull, 'w')
90
9f37a959 91try:
59ae15a5 92 from urllib.parse import parse_qs as compat_parse_qs
9f37a959 93except ImportError: # Python 2
59ae15a5
PH
94 # HACK: The following is the correct parse_qs implementation from cpython 3's stdlib.
95 # Python 2's version is apparently totally broken
96 def _unquote(string, encoding='utf-8', errors='replace'):
97 if string == '':
98 return string
99 res = string.split('%')
100 if len(res) == 1:
101 return string
102 if encoding is None:
103 encoding = 'utf-8'
104 if errors is None:
105 errors = 'replace'
106 # pct_sequence: contiguous sequence of percent-encoded bytes, decoded
107 pct_sequence = b''
108 string = res[0]
109 for item in res[1:]:
110 try:
111 if not item:
112 raise ValueError
113 pct_sequence += item[:2].decode('hex')
114 rest = item[2:]
115 if not rest:
116 # This segment was just a single percent-encoded character.
117 # May be part of a sequence of code units, so delay decoding.
118 # (Stored in pct_sequence).
119 continue
120 except ValueError:
121 rest = '%' + item
122 # Encountered non-percent-encoded characters. Flush the current
123 # pct_sequence.
124 string += pct_sequence.decode(encoding, errors) + rest
125 pct_sequence = b''
126 if pct_sequence:
127 # Flush the final pct_sequence
128 string += pct_sequence.decode(encoding, errors)
129 return string
130
131 def _parse_qsl(qs, keep_blank_values=False, strict_parsing=False,
132 encoding='utf-8', errors='replace'):
133 qs, _coerce_result = qs, unicode
134 pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')]
135 r = []
136 for name_value in pairs:
137 if not name_value and not strict_parsing:
138 continue
139 nv = name_value.split('=', 1)
140 if len(nv) != 2:
141 if strict_parsing:
142 raise ValueError("bad query field: %r" % (name_value,))
143 # Handle case of a control-name with no equal sign
144 if keep_blank_values:
145 nv.append('')
146 else:
147 continue
148 if len(nv[1]) or keep_blank_values:
149 name = nv[0].replace('+', ' ')
150 name = _unquote(name, encoding=encoding, errors=errors)
151 name = _coerce_result(name)
152 value = nv[1].replace('+', ' ')
153 value = _unquote(value, encoding=encoding, errors=errors)
154 value = _coerce_result(value)
155 r.append((name, value))
156 return r
157
158 def compat_parse_qs(qs, keep_blank_values=False, strict_parsing=False,
159 encoding='utf-8', errors='replace'):
160 parsed_result = {}
161 pairs = _parse_qsl(qs, keep_blank_values, strict_parsing,
162 encoding=encoding, errors=errors)
163 for name, value in pairs:
164 if name in parsed_result:
165 parsed_result[name].append(value)
166 else:
167 parsed_result[name] = [value]
168 return parsed_result
348d0a7a 169
3e669f36 170try:
59ae15a5 171 compat_str = unicode # Python 2
3e669f36 172except NameError:
59ae15a5 173 compat_str = str
3e669f36
PH
174
175try:
59ae15a5 176 compat_chr = unichr # Python 2
3e669f36 177except NameError:
59ae15a5 178 compat_chr = chr
3e669f36 179
f7300c5c
JMF
180try:
181 from xml.etree.ElementTree import ParseError as compat_xml_parse_error
182except ImportError: # Python 2.6
183 from xml.parsers.expat import ExpatError as compat_xml_parse_error
184
b31756c1
FV
185def compat_ord(c):
186 if type(c) is int: return c
187 else: return ord(c)
188
468e2e92
FV
189# This is not clearly defined otherwise
190compiled_regex_type = type(re.compile(''))
191
3e669f36 192std_headers = {
ae8f7871 193 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0 (Chrome)',
59ae15a5
PH
194 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
195 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
196 'Accept-Encoding': 'gzip, deflate',
197 'Accept-Language': 'en-us,en;q=0.5',
3e669f36 198}
f427df17 199
d77c3dfd 200def preferredencoding():
59ae15a5 201 """Get preferred encoding.
d77c3dfd 202
59ae15a5
PH
203 Returns the best encoding scheme for the system, based on
204 locale.getpreferredencoding() and some further tweaks.
205 """
206 try:
207 pref = locale.getpreferredencoding()
208 u'TEST'.encode(pref)
209 except:
210 pref = 'UTF-8'
bae611f2 211
59ae15a5 212 return pref
d77c3dfd 213
8cd10ac4 214if sys.version_info < (3,0):
59ae15a5
PH
215 def compat_print(s):
216 print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
8cd10ac4 217else:
59ae15a5
PH
218 def compat_print(s):
219 assert type(s) == type(u'')
220 print(s)
d77c3dfd 221
f4bfd65f
PH
222# In Python 2.x, json.dump expects a bytestream.
223# In Python 3.x, it writes to a character stream
224if sys.version_info < (3,0):
225 def write_json_file(obj, fn):
226 with open(fn, 'wb') as f:
227 json.dump(obj, f)
228else:
229 def write_json_file(obj, fn):
230 with open(fn, 'w', encoding='utf-8') as f:
231 json.dump(obj, f)
232
59ae56fa
PH
233if sys.version_info >= (2,7):
234 def find_xpath_attr(node, xpath, key, val):
235 """ Find the xpath xpath[@key=val] """
5de3ece2 236 assert re.match(r'^[a-zA-Z]+$', key)
af1588c0 237 assert re.match(r'^[a-zA-Z0-9@\s:._]*$', val)
59ae56fa
PH
238 expr = xpath + u"[@%s='%s']" % (key, val)
239 return node.find(expr)
240else:
241 def find_xpath_attr(node, xpath, key, val):
242 for f in node.findall(xpath):
243 if f.attrib.get(key) == val:
244 return f
245 return None
246
d7e66d39
JMF
247# On python2.6 the xml.etree.ElementTree.Element methods don't support
248# the namespace parameter
249def xpath_with_ns(path, ns_map):
250 components = [c.split(':') for c in path.split('/')]
251 replaced = []
252 for c in components:
253 if len(c) == 1:
254 replaced.append(c[0])
255 else:
256 ns, tag = c
257 replaced.append('{%s}%s' % (ns_map[ns], tag))
258 return '/'.join(replaced)
259
d77c3dfd 260def htmlentity_transform(matchobj):
59ae15a5
PH
261 """Transforms an HTML entity to a character.
262
263 This function receives a match object and is intended to be used with
264 the re.sub() function.
265 """
266 entity = matchobj.group(1)
267
268 # Known non-numeric HTML entity
269 if entity in compat_html_entities.name2codepoint:
270 return compat_chr(compat_html_entities.name2codepoint[entity])
271
272 mobj = re.match(u'(?u)#(x?\\d+)', entity)
273 if mobj is not None:
274 numstr = mobj.group(1)
275 if numstr.startswith(u'x'):
276 base = 16
277 numstr = u'0%s' % numstr
278 else:
279 base = 10
280 return compat_chr(int(numstr, base))
281
282 # Unknown entity in name, return its literal representation
283 return (u'&%s;' % entity)
d77c3dfd 284
a8156c1d 285compat_html_parser.locatestarttagend = re.compile(r"""<[a-zA-Z][-.a-zA-Z0-9:_]*(?:\s+(?:(?<=['"\s])[^\s/>][^\s/=>]*(?:\s*=+\s*(?:'[^']*'|"[^"]*"|(?!['"])[^>\s]*))?\s*)*)?\s*""", re.VERBOSE) # backport bugfix
a921f407
JMF
286class BaseHTMLParser(compat_html_parser.HTMLParser):
287 def __init(self):
288 compat_html_parser.HTMLParser.__init__(self)
289 self.html = None
290
291 def loads(self, html):
292 self.html = html
293 self.feed(html)
294 self.close()
295
296class AttrParser(BaseHTMLParser):
43e8fafd
ND
297 """Modified HTMLParser that isolates a tag with the specified attribute"""
298 def __init__(self, attribute, value):
299 self.attribute = attribute
300 self.value = value
59ae15a5
PH
301 self.result = None
302 self.started = False
303 self.depth = {}
59ae15a5
PH
304 self.watch_startpos = False
305 self.error_count = 0
a921f407 306 BaseHTMLParser.__init__(self)
59ae15a5
PH
307
308 def error(self, message):
309 if self.error_count > 10 or self.started:
310 raise compat_html_parser.HTMLParseError(message, self.getpos())
311 self.rawdata = '\n'.join(self.html.split('\n')[self.getpos()[0]:]) # skip one line
312 self.error_count += 1
313 self.goahead(1)
314
59ae15a5
PH
315 def handle_starttag(self, tag, attrs):
316 attrs = dict(attrs)
317 if self.started:
318 self.find_startpos(None)
43e8fafd 319 if self.attribute in attrs and attrs[self.attribute] == self.value:
59ae15a5
PH
320 self.result = [tag]
321 self.started = True
322 self.watch_startpos = True
323 if self.started:
324 if not tag in self.depth: self.depth[tag] = 0
325 self.depth[tag] += 1
326
327 def handle_endtag(self, tag):
328 if self.started:
329 if tag in self.depth: self.depth[tag] -= 1
330 if self.depth[self.result[0]] == 0:
331 self.started = False
332 self.result.append(self.getpos())
333
334 def find_startpos(self, x):
335 """Needed to put the start position of the result (self.result[1])
336 after the opening tag with the requested id"""
337 if self.watch_startpos:
338 self.watch_startpos = False
339 self.result.append(self.getpos())
340 handle_entityref = handle_charref = handle_data = handle_comment = \
341 handle_decl = handle_pi = unknown_decl = find_startpos
342
343 def get_result(self):
344 if self.result is None:
345 return None
346 if len(self.result) != 3:
347 return None
348 lines = self.html.split('\n')
349 lines = lines[self.result[1][0]-1:self.result[2][0]]
350 lines[0] = lines[0][self.result[1][1]:]
351 if len(lines) == 1:
352 lines[-1] = lines[-1][:self.result[2][1]-self.result[1][1]]
353 lines[-1] = lines[-1][:self.result[2][1]]
354 return '\n'.join(lines).strip()
3b024e17
PH
355# Hack for https://github.com/rg3/youtube-dl/issues/662
356if sys.version_info < (2, 7, 3):
357 AttrParser.parse_endtag = (lambda self, i:
358 i + len("</scr'+'ipt>")
359 if self.rawdata[i:].startswith("</scr'+'ipt>")
360 else compat_html_parser.HTMLParser.parse_endtag(self, i))
9e6dd238
FV
361
362def get_element_by_id(id, html):
43e8fafd
ND
363 """Return the content of the tag with the specified ID in the passed HTML document"""
364 return get_element_by_attribute("id", id, html)
365
366def get_element_by_attribute(attribute, value, html):
367 """Return the content of the tag with the specified attribute in the passed HTML document"""
368 parser = AttrParser(attribute, value)
59ae15a5
PH
369 try:
370 parser.loads(html)
371 except compat_html_parser.HTMLParseError:
372 pass
373 return parser.get_result()
9e6dd238 374
a921f407
JMF
375class MetaParser(BaseHTMLParser):
376 """
377 Modified HTMLParser that isolates a meta tag with the specified name
378 attribute.
379 """
380 def __init__(self, name):
381 BaseHTMLParser.__init__(self)
382 self.name = name
383 self.content = None
384 self.result = None
385
386 def handle_starttag(self, tag, attrs):
387 if tag != 'meta':
388 return
389 attrs = dict(attrs)
390 if attrs.get('name') == self.name:
391 self.result = attrs.get('content')
392
393 def get_result(self):
394 return self.result
395
396def get_meta_content(name, html):
397 """
398 Return the content attribute from the meta tag with the given name attribute.
399 """
400 parser = MetaParser(name)
401 try:
402 parser.loads(html)
403 except compat_html_parser.HTMLParseError:
404 pass
405 return parser.get_result()
406
9e6dd238
FV
407
408def clean_html(html):
59ae15a5
PH
409 """Clean an HTML snippet into a readable string"""
410 # Newline vs <br />
411 html = html.replace('\n', ' ')
6b3aef80
FV
412 html = re.sub(r'\s*<\s*br\s*/?\s*>\s*', '\n', html)
413 html = re.sub(r'<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
59ae15a5
PH
414 # Strip html tags
415 html = re.sub('<.*?>', '', html)
416 # Replace html entities
417 html = unescapeHTML(html)
7decf895 418 return html.strip()
9e6dd238
FV
419
420
d77c3dfd 421def sanitize_open(filename, open_mode):
59ae15a5
PH
422 """Try to open the given filename, and slightly tweak it if this fails.
423
424 Attempts to open the given filename. If this fails, it tries to change
425 the filename slightly, step by step, until it's either able to open it
426 or it fails and raises a final exception, like the standard open()
427 function.
428
429 It returns the tuple (stream, definitive_file_name).
430 """
431 try:
432 if filename == u'-':
433 if sys.platform == 'win32':
434 import msvcrt
435 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
898280a0 436 return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
59ae15a5
PH
437 stream = open(encodeFilename(filename), open_mode)
438 return (stream, filename)
439 except (IOError, OSError) as err:
f45c185f
PH
440 if err.errno in (errno.EACCES,):
441 raise
59ae15a5 442
f45c185f
PH
443 # In case of error, try to remove win32 forbidden chars
444 alt_filename = os.path.join(
445 re.sub(u'[/<>:"\\|\\\\?\\*]', u'#', path_part)
446 for path_part in os.path.split(filename)
447 )
448 if alt_filename == filename:
449 raise
450 else:
451 # An exception here should be caught in the caller
452 stream = open(encodeFilename(filename), open_mode)
453 return (stream, alt_filename)
d77c3dfd
FV
454
455
456def timeconvert(timestr):
59ae15a5
PH
457 """Convert RFC 2822 defined time string into system timestamp"""
458 timestamp = None
459 timetuple = email.utils.parsedate_tz(timestr)
460 if timetuple is not None:
461 timestamp = email.utils.mktime_tz(timetuple)
462 return timestamp
1c469a94 463
796173d0 464def sanitize_filename(s, restricted=False, is_id=False):
59ae15a5
PH
465 """Sanitizes a string so it could be used as part of a filename.
466 If restricted is set, use a stricter subset of allowed characters.
796173d0 467 Set is_id if this is not an arbitrary string, but an ID that should be kept if possible
59ae15a5
PH
468 """
469 def replace_insane(char):
470 if char == '?' or ord(char) < 32 or ord(char) == 127:
471 return ''
472 elif char == '"':
473 return '' if restricted else '\''
474 elif char == ':':
475 return '_-' if restricted else ' -'
476 elif char in '\\/|*<>':
477 return '_'
627dcfff 478 if restricted and (char in '!&\'()[]{}$;`^,#' or char.isspace()):
59ae15a5
PH
479 return '_'
480 if restricted and ord(char) > 127:
481 return '_'
482 return char
483
484 result = u''.join(map(replace_insane, s))
796173d0
PH
485 if not is_id:
486 while '__' in result:
487 result = result.replace('__', '_')
488 result = result.strip('_')
489 # Common case of "Foreign band name - English song title"
490 if restricted and result.startswith('-_'):
491 result = result[2:]
492 if not result:
493 result = '_'
59ae15a5 494 return result
d77c3dfd
FV
495
496def orderedSet(iterable):
59ae15a5
PH
497 """ Remove all duplicates from the input iterable """
498 res = []
499 for el in iterable:
500 if el not in res:
501 res.append(el)
502 return res
d77c3dfd
FV
503
504def unescapeHTML(s):
59ae15a5
PH
505 """
506 @param s a string
507 """
508 assert type(s) == type(u'')
d77c3dfd 509
59ae15a5
PH
510 result = re.sub(u'(?u)&(.+?);', htmlentity_transform, s)
511 return result
d77c3dfd 512
8bf48f23
PH
513
514def encodeFilename(s, for_subprocess=False):
59ae15a5
PH
515 """
516 @param s The name of the file
517 """
d77c3dfd 518
8bf48f23 519 assert type(s) == compat_str
d77c3dfd 520
59ae15a5
PH
521 # Python 3 has a Unicode API
522 if sys.version_info >= (3, 0):
523 return s
0f00efed 524
59ae15a5
PH
525 if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
526 # Pass u'' directly to use Unicode APIs on Windows 2000 and up
527 # (Detecting Windows NT 4 is tricky because 'major >= 4' would
528 # match Windows 9x series as well. Besides, NT 4 is obsolete.)
8bf48f23
PH
529 if not for_subprocess:
530 return s
531 else:
532 # For subprocess calls, encode with locale encoding
533 # Refer to http://stackoverflow.com/a/9951851/35070
534 encoding = preferredencoding()
59ae15a5 535 else:
6df40dcb 536 encoding = sys.getfilesystemencoding()
8bf48f23
PH
537 if encoding is None:
538 encoding = 'utf-8'
539 return s.encode(encoding, 'ignore')
540
d77c3dfd 541
8271226a
PH
542def decodeOption(optval):
543 if optval is None:
544 return optval
545 if isinstance(optval, bytes):
546 optval = optval.decode(preferredencoding())
547
548 assert isinstance(optval, compat_str)
549 return optval
1c256f70 550
4539dd30
PH
551def formatSeconds(secs):
552 if secs > 3600:
553 return '%d:%02d:%02d' % (secs // 3600, (secs % 3600) // 60, secs % 60)
554 elif secs > 60:
555 return '%d:%02d' % (secs // 60, secs % 60)
556 else:
557 return '%d' % secs
558
a0ddb8a2
PH
559
560def make_HTTPS_handler(opts_no_check_certificate, **kwargs):
13ebea79
PH
561 if sys.version_info < (3, 2):
562 import httplib
563
564 class HTTPSConnectionV3(httplib.HTTPSConnection):
565 def __init__(self, *args, **kwargs):
566 httplib.HTTPSConnection.__init__(self, *args, **kwargs)
567
568 def connect(self):
569 sock = socket.create_connection((self.host, self.port), self.timeout)
ac79fa02 570 if getattr(self, '_tunnel_host', False):
13ebea79
PH
571 self.sock = sock
572 self._tunnel()
573 try:
574 self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv3)
de79c46c 575 except ssl.SSLError:
13ebea79
PH
576 self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv23)
577
578 class HTTPSHandlerV3(compat_urllib_request.HTTPSHandler):
579 def https_open(self, req):
580 return self.do_open(HTTPSConnectionV3, req)
a0ddb8a2 581 return HTTPSHandlerV3(**kwargs)
ea6d901e 582 else:
13ebea79 583 context = ssl.SSLContext(ssl.PROTOCOL_SSLv3)
ea6d901e 584 context.verify_mode = (ssl.CERT_NONE
dca08720 585 if opts_no_check_certificate
ea6d901e 586 else ssl.CERT_REQUIRED)
303b479e
PH
587 context.set_default_verify_paths()
588 try:
589 context.load_default_certs()
590 except AttributeError:
591 pass # Python < 3.4
a0ddb8a2 592 return compat_urllib_request.HTTPSHandler(context=context, **kwargs)
ea6d901e 593
1c256f70
PH
594class ExtractorError(Exception):
595 """Error during info extraction."""
2eabb802 596 def __init__(self, msg, tb=None, expected=False, cause=None):
9a82b238
PH
597 """ tb, if given, is the original traceback (so that it can be printed out).
598 If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
599 """
600
601 if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
602 expected = True
603 if not expected:
298f833b 604 msg = msg + u'; please report this issue on https://yt-dl.org/bug . Be sure to call youtube-dl with the --verbose flag and include its complete output. Make sure you are using the latest version; type youtube-dl -U to update.'
1c256f70 605 super(ExtractorError, self).__init__(msg)
d5979c5d 606
1c256f70 607 self.traceback = tb
8cc83b8d 608 self.exc_info = sys.exc_info() # preserve original exception
2eabb802 609 self.cause = cause
1c256f70 610
01951dda
PH
611 def format_traceback(self):
612 if self.traceback is None:
613 return None
614 return u''.join(traceback.format_tb(self.traceback))
615
1c256f70 616
55b3e45b
JMF
617class RegexNotFoundError(ExtractorError):
618 """Error when a regex didn't match"""
619 pass
620
621
d77c3dfd 622class DownloadError(Exception):
59ae15a5 623 """Download Error exception.
d77c3dfd 624
59ae15a5
PH
625 This exception may be thrown by FileDownloader objects if they are not
626 configured to continue on errors. They will contain the appropriate
627 error message.
628 """
8cc83b8d
FV
629 def __init__(self, msg, exc_info=None):
630 """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
631 super(DownloadError, self).__init__(msg)
632 self.exc_info = exc_info
d77c3dfd
FV
633
634
635class SameFileError(Exception):
59ae15a5 636 """Same File exception.
d77c3dfd 637
59ae15a5
PH
638 This exception will be thrown by FileDownloader objects if they detect
639 multiple files would have to be downloaded to the same file on disk.
640 """
641 pass
d77c3dfd
FV
642
643
644class PostProcessingError(Exception):
59ae15a5 645 """Post Processing exception.
d77c3dfd 646
59ae15a5
PH
647 This exception may be raised by PostProcessor's .run() method to
648 indicate an error in the postprocessing task.
649 """
7851b379
PH
650 def __init__(self, msg):
651 self.msg = msg
d77c3dfd
FV
652
653class MaxDownloadsReached(Exception):
59ae15a5
PH
654 """ --max-downloads limit has been reached. """
655 pass
d77c3dfd
FV
656
657
658class UnavailableVideoError(Exception):
59ae15a5 659 """Unavailable Format exception.
d77c3dfd 660
59ae15a5
PH
661 This exception will be thrown when a video is requested
662 in a format that is not available for that video.
663 """
664 pass
d77c3dfd
FV
665
666
667class ContentTooShortError(Exception):
59ae15a5 668 """Content Too Short exception.
d77c3dfd 669
59ae15a5
PH
670 This exception may be raised by FileDownloader objects when a file they
671 download is too small for what the server announced first, indicating
672 the connection was probably interrupted.
673 """
674 # Both in bytes
675 downloaded = None
676 expected = None
d77c3dfd 677
59ae15a5
PH
678 def __init__(self, downloaded, expected):
679 self.downloaded = downloaded
680 self.expected = expected
d77c3dfd 681
acebc9cd 682class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
59ae15a5
PH
683 """Handler for HTTP requests and responses.
684
685 This class, when installed with an OpenerDirector, automatically adds
686 the standard headers to every HTTP request and handles gzipped and
687 deflated responses from web servers. If compression is to be avoided in
688 a particular request, the original request in the program code only has
689 to include the HTTP header "Youtubedl-No-Compression", which will be
690 removed before making the real request.
691
692 Part of this code was copied from:
693
694 http://techknack.net/python-urllib2-handlers/
695
696 Andrew Rowls, the author of that code, agreed to release it to the
697 public domain.
698 """
699
700 @staticmethod
701 def deflate(data):
702 try:
703 return zlib.decompress(data, -zlib.MAX_WBITS)
704 except zlib.error:
705 return zlib.decompress(data)
706
707 @staticmethod
708 def addinfourl_wrapper(stream, headers, url, code):
709 if hasattr(compat_urllib_request.addinfourl, 'getcode'):
710 return compat_urllib_request.addinfourl(stream, headers, url, code)
711 ret = compat_urllib_request.addinfourl(stream, headers, url)
712 ret.code = code
713 return ret
714
acebc9cd
PH
715 def http_request(self, req):
716 for h,v in std_headers.items():
59ae15a5
PH
717 if h in req.headers:
718 del req.headers[h]
335959e7 719 req.add_header(h, v)
59ae15a5
PH
720 if 'Youtubedl-no-compression' in req.headers:
721 if 'Accept-encoding' in req.headers:
722 del req.headers['Accept-encoding']
723 del req.headers['Youtubedl-no-compression']
3446dfb7 724 if 'Youtubedl-user-agent' in req.headers:
335959e7
PH
725 if 'User-agent' in req.headers:
726 del req.headers['User-agent']
727 req.headers['User-agent'] = req.headers['Youtubedl-user-agent']
3446dfb7 728 del req.headers['Youtubedl-user-agent']
59ae15a5
PH
729 return req
730
acebc9cd 731 def http_response(self, req, resp):
59ae15a5
PH
732 old_resp = resp
733 # gzip
734 if resp.headers.get('Content-encoding', '') == 'gzip':
aa3e9507
PH
735 content = resp.read()
736 gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
737 try:
738 uncompressed = io.BytesIO(gz.read())
739 except IOError as original_ioerror:
740 # There may be junk add the end of the file
741 # See http://stackoverflow.com/q/4928560/35070 for details
742 for i in range(1, 1024):
743 try:
744 gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
745 uncompressed = io.BytesIO(gz.read())
746 except IOError:
747 continue
748 break
749 else:
750 raise original_ioerror
751 resp = self.addinfourl_wrapper(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
59ae15a5
PH
752 resp.msg = old_resp.msg
753 # deflate
754 if resp.headers.get('Content-encoding', '') == 'deflate':
755 gz = io.BytesIO(self.deflate(resp.read()))
756 resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
757 resp.msg = old_resp.msg
758 return resp
0f8d03f8 759
acebc9cd
PH
760 https_request = http_request
761 https_response = http_response
bf50b038 762
5de90176 763
bf50b038
JMF
764def unified_strdate(date_str):
765 """Return a string with the date in the format YYYYMMDD"""
64e7ad60
PH
766
767 if date_str is None:
768 return None
769
bf50b038
JMF
770 upload_date = None
771 #Replace commas
026fcc04 772 date_str = date_str.replace(',', ' ')
bf50b038 773 # %z (UTC offset) is only supported in python>=3.2
026fcc04 774 date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str)
19e1d359
JMF
775 format_expressions = [
776 '%d %B %Y',
0f99566c 777 '%d %b %Y',
19e1d359
JMF
778 '%B %d %Y',
779 '%b %d %Y',
780 '%Y-%m-%d',
4cf96546 781 '%d.%m.%Y',
19e1d359
JMF
782 '%d/%m/%Y',
783 '%Y/%m/%d %H:%M:%S',
5d73273f 784 '%Y-%m-%d %H:%M:%S',
19e1d359 785 '%d.%m.%Y %H:%M',
b047de6f 786 '%d.%m.%Y %H.%M',
19e1d359 787 '%Y-%m-%dT%H:%M:%SZ',
59040888
PH
788 '%Y-%m-%dT%H:%M:%S.%fZ',
789 '%Y-%m-%dT%H:%M:%S.%f0Z',
2e1fa03b 790 '%Y-%m-%dT%H:%M:%S',
7ff5d5c2 791 '%Y-%m-%dT%H:%M:%S.%f',
5de90176 792 '%Y-%m-%dT%H:%M',
19e1d359 793 ]
bf50b038
JMF
794 for expression in format_expressions:
795 try:
796 upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
5de90176 797 except ValueError:
bf50b038 798 pass
42393ce2
PH
799 if upload_date is None:
800 timetuple = email.utils.parsedate_tz(date_str)
801 if timetuple:
802 upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
bf50b038
JMF
803 return upload_date
804
cbdbb766 805def determine_ext(url, default_ext=u'unknown_video'):
73e79f2a
PH
806 guess = url.partition(u'?')[0].rpartition(u'.')[2]
807 if re.match(r'^[A-Za-z0-9]+$', guess):
808 return guess
809 else:
cbdbb766 810 return default_ext
73e79f2a 811
d4051a8e
JMF
812def subtitles_filename(filename, sub_lang, sub_format):
813 return filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
814
bd558525 815def date_from_str(date_str):
37254abc
JMF
816 """
817 Return a datetime object from a string in the format YYYYMMDD or
818 (now|today)[+-][0-9](day|week|month|year)(s)?"""
819 today = datetime.date.today()
820 if date_str == 'now'or date_str == 'today':
821 return today
822 match = re.match('(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str)
823 if match is not None:
824 sign = match.group('sign')
825 time = int(match.group('time'))
826 if sign == '-':
827 time = -time
828 unit = match.group('unit')
829 #A bad aproximation?
830 if unit == 'month':
831 unit = 'day'
832 time *= 30
833 elif unit == 'year':
834 unit = 'day'
835 time *= 365
836 unit += 's'
837 delta = datetime.timedelta(**{unit: time})
838 return today + delta
bd558525
JMF
839 return datetime.datetime.strptime(date_str, "%Y%m%d").date()
840
e63fc1be 841def hyphenate_date(date_str):
842 """
843 Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
844 match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
845 if match is not None:
846 return '-'.join(match.groups())
847 else:
848 return date_str
849
bd558525
JMF
850class DateRange(object):
851 """Represents a time interval between two dates"""
852 def __init__(self, start=None, end=None):
853 """start and end must be strings in the format accepted by date"""
854 if start is not None:
855 self.start = date_from_str(start)
856 else:
857 self.start = datetime.datetime.min.date()
858 if end is not None:
859 self.end = date_from_str(end)
860 else:
861 self.end = datetime.datetime.max.date()
37254abc 862 if self.start > self.end:
bd558525
JMF
863 raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
864 @classmethod
865 def day(cls, day):
866 """Returns a range that only contains the given day"""
867 return cls(day,day)
868 def __contains__(self, date):
869 """Check if the date is in the range"""
37254abc
JMF
870 if not isinstance(date, datetime.date):
871 date = date_from_str(date)
872 return self.start <= date <= self.end
bd558525
JMF
873 def __str__(self):
874 return '%s - %s' % ( self.start.isoformat(), self.end.isoformat())
c496ca96
PH
875
876
877def platform_name():
878 """ Returns the platform name as a compat_str """
879 res = platform.platform()
880 if isinstance(res, bytes):
881 res = res.decode(preferredencoding())
882
883 assert isinstance(res, compat_str)
884 return res
c257baff
PH
885
886
7459e3a2
PH
887def write_string(s, out=None):
888 if out is None:
889 out = sys.stderr
8bf48f23 890 assert type(s) == compat_str
7459e3a2
PH
891
892 if ('b' in getattr(out, 'mode', '') or
893 sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
894 s = s.encode(preferredencoding(), 'ignore')
8bf48f23
PH
895 try:
896 out.write(s)
897 except UnicodeEncodeError:
898 # In Windows shells, this can fail even when the codec is just charmap!?
899 # See https://wiki.python.org/moin/PrintFails#Issue
900 if sys.platform == 'win32' and hasattr(out, 'encoding'):
901 s = s.encode(out.encoding, 'ignore').decode(out.encoding)
902 out.write(s)
903 else:
904 raise
905
7459e3a2
PH
906 out.flush()
907
908
48ea9cea
PH
909def bytes_to_intlist(bs):
910 if not bs:
911 return []
912 if isinstance(bs[0], int): # Python 3
913 return list(bs)
914 else:
915 return [ord(c) for c in bs]
916
c257baff 917
cba892fa 918def intlist_to_bytes(xs):
919 if not xs:
920 return b''
921 if isinstance(chr(0), bytes): # Python 2
922 return ''.join([chr(x) for x in xs])
923 else:
924 return bytes(xs)
c38b1e77
PH
925
926
927def get_cachedir(params={}):
928 cache_root = os.environ.get('XDG_CACHE_HOME',
929 os.path.expanduser('~/.cache'))
930 return params.get('cachedir', os.path.join(cache_root, 'youtube-dl'))
c1c9a79c
PH
931
932
933# Cross-platform file locking
934if sys.platform == 'win32':
935 import ctypes.wintypes
936 import msvcrt
937
938 class OVERLAPPED(ctypes.Structure):
939 _fields_ = [
940 ('Internal', ctypes.wintypes.LPVOID),
941 ('InternalHigh', ctypes.wintypes.LPVOID),
942 ('Offset', ctypes.wintypes.DWORD),
943 ('OffsetHigh', ctypes.wintypes.DWORD),
944 ('hEvent', ctypes.wintypes.HANDLE),
945 ]
946
947 kernel32 = ctypes.windll.kernel32
948 LockFileEx = kernel32.LockFileEx
949 LockFileEx.argtypes = [
950 ctypes.wintypes.HANDLE, # hFile
951 ctypes.wintypes.DWORD, # dwFlags
952 ctypes.wintypes.DWORD, # dwReserved
953 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
954 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
955 ctypes.POINTER(OVERLAPPED) # Overlapped
956 ]
957 LockFileEx.restype = ctypes.wintypes.BOOL
958 UnlockFileEx = kernel32.UnlockFileEx
959 UnlockFileEx.argtypes = [
960 ctypes.wintypes.HANDLE, # hFile
961 ctypes.wintypes.DWORD, # dwReserved
962 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
963 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
964 ctypes.POINTER(OVERLAPPED) # Overlapped
965 ]
966 UnlockFileEx.restype = ctypes.wintypes.BOOL
967 whole_low = 0xffffffff
968 whole_high = 0x7fffffff
969
970 def _lock_file(f, exclusive):
971 overlapped = OVERLAPPED()
972 overlapped.Offset = 0
973 overlapped.OffsetHigh = 0
974 overlapped.hEvent = 0
975 f._lock_file_overlapped_p = ctypes.pointer(overlapped)
976 handle = msvcrt.get_osfhandle(f.fileno())
977 if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
978 whole_low, whole_high, f._lock_file_overlapped_p):
979 raise OSError('Locking file failed: %r' % ctypes.FormatError())
980
981 def _unlock_file(f):
982 assert f._lock_file_overlapped_p
983 handle = msvcrt.get_osfhandle(f.fileno())
984 if not UnlockFileEx(handle, 0,
985 whole_low, whole_high, f._lock_file_overlapped_p):
986 raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
987
988else:
989 import fcntl
990
991 def _lock_file(f, exclusive):
992 fcntl.lockf(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
993
994 def _unlock_file(f):
995 fcntl.lockf(f, fcntl.LOCK_UN)
996
997
998class locked_file(object):
999 def __init__(self, filename, mode, encoding=None):
1000 assert mode in ['r', 'a', 'w']
1001 self.f = io.open(filename, mode, encoding=encoding)
1002 self.mode = mode
1003
1004 def __enter__(self):
1005 exclusive = self.mode != 'r'
1006 try:
1007 _lock_file(self.f, exclusive)
1008 except IOError:
1009 self.f.close()
1010 raise
1011 return self
1012
1013 def __exit__(self, etype, value, traceback):
1014 try:
1015 _unlock_file(self.f)
1016 finally:
1017 self.f.close()
1018
1019 def __iter__(self):
1020 return iter(self.f)
1021
1022 def write(self, *args):
1023 return self.f.write(*args)
1024
1025 def read(self, *args):
1026 return self.f.read(*args)
4eb7f1d1
JMF
1027
1028
1029def shell_quote(args):
a6a173c2
JMF
1030 quoted_args = []
1031 encoding = sys.getfilesystemencoding()
1032 if encoding is None:
1033 encoding = 'utf-8'
1034 for a in args:
1035 if isinstance(a, bytes):
1036 # We may get a filename encoded with 'encodeFilename'
1037 a = a.decode(encoding)
1038 quoted_args.append(pipes.quote(a))
1039 return u' '.join(quoted_args)
9d4660ca
PH
1040
1041
f4d96df0
PH
1042def takewhile_inclusive(pred, seq):
1043 """ Like itertools.takewhile, but include the latest evaluated element
1044 (the first element so that Not pred(e)) """
1045 for e in seq:
1046 yield e
1047 if not pred(e):
1048 return
1049
1050
9d4660ca
PH
1051def smuggle_url(url, data):
1052 """ Pass additional data in a URL for internal use. """
1053
1054 sdata = compat_urllib_parse.urlencode(
1055 {u'__youtubedl_smuggle': json.dumps(data)})
1056 return url + u'#' + sdata
1057
1058
79f82953 1059def unsmuggle_url(smug_url, default=None):
9d4660ca 1060 if not '#__youtubedl_smuggle' in smug_url:
79f82953 1061 return smug_url, default
9d4660ca
PH
1062 url, _, sdata = smug_url.rpartition(u'#')
1063 jsond = compat_parse_qs(sdata)[u'__youtubedl_smuggle'][0]
1064 data = json.loads(jsond)
1065 return url, data
02dbf93f
PH
1066
1067
02dbf93f
PH
1068def format_bytes(bytes):
1069 if bytes is None:
1070 return u'N/A'
1071 if type(bytes) is str:
1072 bytes = float(bytes)
1073 if bytes == 0.0:
1074 exponent = 0
1075 else:
1076 exponent = int(math.log(bytes, 1024.0))
1077 suffix = [u'B', u'KiB', u'MiB', u'GiB', u'TiB', u'PiB', u'EiB', u'ZiB', u'YiB'][exponent]
1078 converted = float(bytes) / float(1024 ** exponent)
1079 return u'%.2f%s' % (converted, suffix)
f53c966a 1080
1c088fa8 1081
f53c966a
JMF
1082def str_to_int(int_str):
1083 int_str = re.sub(r'[,\.]', u'', int_str)
1084 return int(int_str)
1c088fa8
PH
1085
1086
1087def get_term_width():
1088 columns = os.environ.get('COLUMNS', None)
1089 if columns:
1090 return int(columns)
1091
1092 try:
1093 sp = subprocess.Popen(
1094 ['stty', 'size'],
1095 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
1096 out, err = sp.communicate()
1097 return int(out.split()[1])
1098 except:
1099 pass
1100 return None
caefb1de
PH
1101
1102
1103def month_by_name(name):
1104 """ Return the number of a month by (locale-independently) English name """
1105
1106 ENGLISH_NAMES = [
dadb8184 1107 u'January', u'February', u'March', u'April', u'May', u'June',
caefb1de
PH
1108 u'July', u'August', u'September', u'October', u'November', u'December']
1109 try:
1110 return ENGLISH_NAMES.index(name) + 1
1111 except ValueError:
1112 return None
18258362
JMF
1113
1114
5aafe895 1115def fix_xml_ampersands(xml_str):
18258362 1116 """Replace all the '&' by '&amp;' in XML"""
5aafe895
PH
1117 return re.sub(
1118 r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
1119 u'&amp;',
1120 xml_str)
e3946f98
PH
1121
1122
1123def setproctitle(title):
8bf48f23 1124 assert isinstance(title, compat_str)
e3946f98
PH
1125 try:
1126 libc = ctypes.cdll.LoadLibrary("libc.so.6")
1127 except OSError:
1128 return
1129 title = title
1130 buf = ctypes.create_string_buffer(len(title) + 1)
e64eaaa9 1131 buf.value = title.encode('utf-8')
e3946f98
PH
1132 try:
1133 libc.prctl(15, ctypes.byref(buf), 0, 0, 0)
1134 except AttributeError:
1135 return # Strange libc, just skip this
d7dda168
PH
1136
1137
1138def remove_start(s, start):
1139 if s.startswith(start):
1140 return s[len(start):]
1141 return s
29eb5174
PH
1142
1143
1144def url_basename(url):
9b8aaeed
JMF
1145 path = compat_urlparse.urlparse(url).path
1146 return path.strip(u'/').split(u'/')[-1]
aa94a6d3
PH
1147
1148
1149class HEADRequest(compat_urllib_request.Request):
1150 def get_method(self):
1151 return "HEAD"
7217e148
PH
1152
1153
dd27fd17
PH
1154def int_or_none(v, scale=1):
1155 return v if v is None else (int(v) // scale)
608d11f5
PH
1156
1157
1158def parse_duration(s):
1159 if s is None:
1160 return None
1161
1162 m = re.match(
2db806b4 1163 r'(?:(?:(?P<hours>[0-9]+)[:h])?(?P<mins>[0-9]+)[:m])?(?P<secs>[0-9]+)s?$', s)
608d11f5
PH
1164 if not m:
1165 return None
1166 res = int(m.group('secs'))
1167 if m.group('mins'):
1168 res += int(m.group('mins')) * 60
1169 if m.group('hours'):
1170 res += int(m.group('hours')) * 60 * 60
1171 return res
91d7d0b3
JMF
1172
1173
1174def prepend_extension(filename, ext):
1175 name, real_ext = os.path.splitext(filename)
1176 return u'{0}.{1}{2}'.format(name, ext, real_ext)
d70ad093
PH
1177
1178
1179def check_executable(exe, args=[]):
1180 """ Checks if the given binary is installed somewhere in PATH, and returns its name.
1181 args can be a list of arguments for a short output (like -version) """
1182 try:
1183 subprocess.Popen([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
1184 except OSError:
1185 return False
1186 return exe
b7ab0590
PH
1187
1188
1189class PagedList(object):
1190 def __init__(self, pagefunc, pagesize):
1191 self._pagefunc = pagefunc
1192 self._pagesize = pagesize
1193
dd26ced1
PH
1194 def __len__(self):
1195 # This is only useful for tests
1196 return len(self.getslice())
1197
b7ab0590
PH
1198 def getslice(self, start=0, end=None):
1199 res = []
1200 for pagenum in itertools.count(start // self._pagesize):
1201 firstid = pagenum * self._pagesize
1202 nextfirstid = pagenum * self._pagesize + self._pagesize
1203 if start >= nextfirstid:
1204 continue
1205
1206 page_results = list(self._pagefunc(pagenum))
1207
1208 startv = (
1209 start % self._pagesize
1210 if firstid <= start < nextfirstid
1211 else 0)
1212
1213 endv = (
1214 ((end - 1) % self._pagesize) + 1
1215 if (end is not None and firstid <= end <= nextfirstid)
1216 else None)
1217
1218 if startv != 0 or endv is not None:
1219 page_results = page_results[startv:endv]
1220 res.extend(page_results)
1221
1222 # A little optimization - if current page is not "full", ie. does
1223 # not contain page_size videos then we can assume that this page
1224 # is the last one - there are no more ids on further pages -
1225 # i.e. no need to query again.
1226 if len(page_results) + startv < self._pagesize:
1227 break
1228
1229 # If we got the whole page, but the next page is not interesting,
1230 # break out early as well
1231 if end == nextfirstid:
1232 break
1233 return res
81c2f20b
PH
1234
1235
1236def uppercase_escape(s):
1237 return re.sub(
1238 r'\\U([0-9a-fA-F]{8})',
1239 lambda m: compat_chr(int(m.group(1), base=16)), s)
b53466e1
PH
1240
1241try:
1242 struct.pack(u'!I', 0)
1243except TypeError:
1244 # In Python 2.6 (and some 2.7 versions), struct requires a bytes argument
1245 def struct_pack(spec, *args):
1246 if isinstance(spec, compat_str):
1247 spec = spec.encode('ascii')
1248 return struct.pack(spec, *args)
1249
1250 def struct_unpack(spec, *args):
1251 if isinstance(spec, compat_str):
1252 spec = spec.encode('ascii')
1253 return struct.unpack(spec, *args)
1254else:
1255 struct_pack = struct.pack
1256 struct_unpack = struct.unpack
62e609ab
PH
1257
1258
1259def read_batch_urls(batch_fd):
1260 def fixup(url):
1261 if not isinstance(url, compat_str):
1262 url = url.decode('utf-8', 'replace')
1263 BOM_UTF8 = u'\xef\xbb\xbf'
1264 if url.startswith(BOM_UTF8):
1265 url = url[len(BOM_UTF8):]
1266 url = url.strip()
1267 if url.startswith(('#', ';', ']')):
1268 return False
1269 return url
1270
1271 with contextlib.closing(batch_fd) as fd:
1272 return [url for url in map(fixup, fd) if url]
b74fa8cd
JMF
1273
1274
1275def urlencode_postdata(*args, **kargs):
1276 return compat_urllib_parse.urlencode(*args, **kargs).encode('ascii')
bcf89ce6
PH
1277
1278
1279def parse_xml(s):
1280 class TreeBuilder(xml.etree.ElementTree.TreeBuilder):
1281 def doctype(self, name, pubid, system):
1282 pass # Ignore doctypes
1283
1284 parser = xml.etree.ElementTree.XMLParser(target=TreeBuilder())
1285 kwargs = {'parser': parser} if sys.version_info >= (2, 7) else {}
1286 return xml.etree.ElementTree.XML(s.encode('utf-8'), **kwargs)
e68301af
PH
1287
1288
1289if sys.version_info < (3, 0) and sys.platform == 'win32':
1290 def compat_getpass(prompt, *args, **kwargs):
1291 if isinstance(prompt, compat_str):
4e6f9aec 1292 prompt = prompt.encode(preferredencoding())
e68301af
PH
1293 return getpass.getpass(prompt, *args, **kwargs)
1294else:
1295 compat_getpass = getpass.getpass
a1a530b0
PH
1296
1297
1298US_RATINGS = {
1299 'G': 0,
1300 'PG': 10,
1301 'PG-13': 13,
1302 'R': 16,
1303 'NC': 18,
1304}