You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1431 lines
45 KiB

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