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.

1399 lines
44 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):
  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 not expected:
  526. 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.'
  527. super(ExtractorError, self).__init__(msg)
  528. self.traceback = tb
  529. self.exc_info = sys.exc_info() # preserve original exception
  530. self.cause = cause
  531. def format_traceback(self):
  532. if self.traceback is None:
  533. return None
  534. return u''.join(traceback.format_tb(self.traceback))
  535. class RegexNotFoundError(ExtractorError):
  536. """Error when a regex didn't match"""
  537. pass
  538. class DownloadError(Exception):
  539. """Download Error exception.
  540. This exception may be thrown by FileDownloader objects if they are not
  541. configured to continue on errors. They will contain the appropriate
  542. error message.
  543. """
  544. def __init__(self, msg, exc_info=None):
  545. """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
  546. super(DownloadError, self).__init__(msg)
  547. self.exc_info = exc_info
  548. class SameFileError(Exception):
  549. """Same File exception.
  550. This exception will be thrown by FileDownloader objects if they detect
  551. multiple files would have to be downloaded to the same file on disk.
  552. """
  553. pass
  554. class PostProcessingError(Exception):
  555. """Post Processing exception.
  556. This exception may be raised by PostProcessor's .run() method to
  557. indicate an error in the postprocessing task.
  558. """
  559. def __init__(self, msg):
  560. self.msg = msg
  561. class MaxDownloadsReached(Exception):
  562. """ --max-downloads limit has been reached. """
  563. pass
  564. class UnavailableVideoError(Exception):
  565. """Unavailable Format exception.
  566. This exception will be thrown when a video is requested
  567. in a format that is not available for that video.
  568. """
  569. pass
  570. class ContentTooShortError(Exception):
  571. """Content Too Short exception.
  572. This exception may be raised by FileDownloader objects when a file they
  573. download is too small for what the server announced first, indicating
  574. the connection was probably interrupted.
  575. """
  576. # Both in bytes
  577. downloaded = None
  578. expected = None
  579. def __init__(self, downloaded, expected):
  580. self.downloaded = downloaded
  581. self.expected = expected
  582. class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
  583. """Handler for HTTP requests and responses.
  584. This class, when installed with an OpenerDirector, automatically adds
  585. the standard headers to every HTTP request and handles gzipped and
  586. deflated responses from web servers. If compression is to be avoided in
  587. a particular request, the original request in the program code only has
  588. to include the HTTP header "Youtubedl-No-Compression", which will be
  589. removed before making the real request.
  590. Part of this code was copied from:
  591. http://techknack.net/python-urllib2-handlers/
  592. Andrew Rowls, the author of that code, agreed to release it to the
  593. public domain.
  594. """
  595. @staticmethod
  596. def deflate(data):
  597. try:
  598. return zlib.decompress(data, -zlib.MAX_WBITS)
  599. except zlib.error:
  600. return zlib.decompress(data)
  601. @staticmethod
  602. def addinfourl_wrapper(stream, headers, url, code):
  603. if hasattr(compat_urllib_request.addinfourl, 'getcode'):
  604. return compat_urllib_request.addinfourl(stream, headers, url, code)
  605. ret = compat_urllib_request.addinfourl(stream, headers, url)
  606. ret.code = code
  607. return ret
  608. def http_request(self, req):
  609. for h,v in std_headers.items():
  610. if h in req.headers:
  611. del req.headers[h]
  612. req.add_header(h, v)
  613. if 'Youtubedl-no-compression' in req.headers:
  614. if 'Accept-encoding' in req.headers:
  615. del req.headers['Accept-encoding']
  616. del req.headers['Youtubedl-no-compression']
  617. if 'Youtubedl-user-agent' in req.headers:
  618. if 'User-agent' in req.headers:
  619. del req.headers['User-agent']
  620. req.headers['User-agent'] = req.headers['Youtubedl-user-agent']
  621. del req.headers['Youtubedl-user-agent']
  622. return req
  623. def http_response(self, req, resp):
  624. old_resp = resp
  625. # gzip
  626. if resp.headers.get('Content-encoding', '') == 'gzip':
  627. content = resp.read()
  628. gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
  629. try:
  630. uncompressed = io.BytesIO(gz.read())
  631. except IOError as original_ioerror:
  632. # There may be junk add the end of the file
  633. # See http://stackoverflow.com/q/4928560/35070 for details
  634. for i in range(1, 1024):
  635. try:
  636. gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
  637. uncompressed = io.BytesIO(gz.read())
  638. except IOError:
  639. continue
  640. break
  641. else:
  642. raise original_ioerror
  643. resp = self.addinfourl_wrapper(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
  644. resp.msg = old_resp.msg
  645. # deflate
  646. if resp.headers.get('Content-encoding', '') == 'deflate':
  647. gz = io.BytesIO(self.deflate(resp.read()))
  648. resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
  649. resp.msg = old_resp.msg
  650. return resp
  651. https_request = http_request
  652. https_response = http_response
  653. def parse_iso8601(date_str):
  654. """ Return a UNIX timestamp from the given date """
  655. if date_str is None:
  656. return None
  657. m = re.search(
  658. r'Z$| ?(?P<sign>\+|-)(?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2})$',
  659. date_str)
  660. if not m:
  661. timezone = datetime.timedelta()
  662. else:
  663. date_str = date_str[:-len(m.group(0))]
  664. if not m.group('sign'):
  665. timezone = datetime.timedelta()
  666. else:
  667. sign = 1 if m.group('sign') == '+' else -1
  668. timezone = datetime.timedelta(
  669. hours=sign * int(m.group('hours')),
  670. minutes=sign * int(m.group('minutes')))
  671. dt = datetime.datetime.strptime(date_str, '%Y-%m-%dT%H:%M:%S') - timezone
  672. return calendar.timegm(dt.timetuple())
  673. def unified_strdate(date_str):
  674. """Return a string with the date in the format YYYYMMDD"""
  675. if date_str is None:
  676. return None
  677. upload_date = None
  678. #Replace commas
  679. date_str = date_str.replace(',', ' ')
  680. # %z (UTC offset) is only supported in python>=3.2
  681. date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str)
  682. format_expressions = [
  683. '%d %B %Y',
  684. '%d %b %Y',
  685. '%B %d %Y',
  686. '%b %d %Y',
  687. '%Y-%m-%d',
  688. '%d.%m.%Y',
  689. '%d/%m/%Y',
  690. '%Y/%m/%d %H:%M:%S',
  691. '%Y-%m-%d %H:%M:%S',
  692. '%d.%m.%Y %H:%M',
  693. '%d.%m.%Y %H.%M',
  694. '%Y-%m-%dT%H:%M:%SZ',
  695. '%Y-%m-%dT%H:%M:%S.%fZ',
  696. '%Y-%m-%dT%H:%M:%S.%f0Z',
  697. '%Y-%m-%dT%H:%M:%S',
  698. '%Y-%m-%dT%H:%M:%S.%f',
  699. '%Y-%m-%dT%H:%M',
  700. ]
  701. for expression in format_expressions:
  702. try:
  703. upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
  704. except ValueError:
  705. pass
  706. if upload_date is None:
  707. timetuple = email.utils.parsedate_tz(date_str)
  708. if timetuple:
  709. upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
  710. return upload_date
  711. def determine_ext(url, default_ext=u'unknown_video'):
  712. guess = url.partition(u'?')[0].rpartition(u'.')[2]
  713. if re.match(r'^[A-Za-z0-9]+$', guess):
  714. return guess
  715. else:
  716. return default_ext
  717. def subtitles_filename(filename, sub_lang, sub_format):
  718. return filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  719. def date_from_str(date_str):
  720. """
  721. Return a datetime object from a string in the format YYYYMMDD or
  722. (now|today)[+-][0-9](day|week|month|year)(s)?"""
  723. today = datetime.date.today()
  724. if date_str == 'now'or date_str == 'today':
  725. return today
  726. match = re.match('(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str)
  727. if match is not None:
  728. sign = match.group('sign')
  729. time = int(match.group('time'))
  730. if sign == '-':
  731. time = -time
  732. unit = match.group('unit')
  733. #A bad aproximation?
  734. if unit == 'month':
  735. unit = 'day'
  736. time *= 30
  737. elif unit == 'year':
  738. unit = 'day'
  739. time *= 365
  740. unit += 's'
  741. delta = datetime.timedelta(**{unit: time})
  742. return today + delta
  743. return datetime.datetime.strptime(date_str, "%Y%m%d").date()
  744. def hyphenate_date(date_str):
  745. """
  746. Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
  747. match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
  748. if match is not None:
  749. return '-'.join(match.groups())
  750. else:
  751. return date_str
  752. class DateRange(object):
  753. """Represents a time interval between two dates"""
  754. def __init__(self, start=None, end=None):
  755. """start and end must be strings in the format accepted by date"""
  756. if start is not None:
  757. self.start = date_from_str(start)
  758. else:
  759. self.start = datetime.datetime.min.date()
  760. if end is not None:
  761. self.end = date_from_str(end)
  762. else:
  763. self.end = datetime.datetime.max.date()
  764. if self.start > self.end:
  765. raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
  766. @classmethod
  767. def day(cls, day):
  768. """Returns a range that only contains the given day"""
  769. return cls(day,day)
  770. def __contains__(self, date):
  771. """Check if the date is in the range"""
  772. if not isinstance(date, datetime.date):
  773. date = date_from_str(date)
  774. return self.start <= date <= self.end
  775. def __str__(self):
  776. return '%s - %s' % ( self.start.isoformat(), self.end.isoformat())
  777. def platform_name():
  778. """ Returns the platform name as a compat_str """
  779. res = platform.platform()
  780. if isinstance(res, bytes):
  781. res = res.decode(preferredencoding())
  782. assert isinstance(res, compat_str)
  783. return res
  784. def _windows_write_string(s, out):
  785. """ Returns True if the string was written using special methods,
  786. False if it has yet to be written out."""
  787. # Adapted from http://stackoverflow.com/a/3259271/35070
  788. import ctypes
  789. import ctypes.wintypes
  790. WIN_OUTPUT_IDS = {
  791. 1: -11,
  792. 2: -12,
  793. }
  794. def ucs2_len(s):
  795. return sum((2 if ord(c) > 0xffff else 1) for c in s)
  796. fileno = out.fileno()
  797. if fileno not in WIN_OUTPUT_IDS:
  798. return False
  799. GetStdHandle = ctypes.WINFUNCTYPE(
  800. ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD)(
  801. ("GetStdHandle", ctypes.windll.kernel32))
  802. h = GetStdHandle(WIN_OUTPUT_IDS[fileno])
  803. WriteConsoleW = ctypes.WINFUNCTYPE(
  804. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE, ctypes.wintypes.LPWSTR,
  805. ctypes.wintypes.DWORD, ctypes.POINTER(ctypes.wintypes.DWORD),
  806. ctypes.wintypes.LPVOID)(("WriteConsoleW", ctypes.windll.kernel32))
  807. written = ctypes.wintypes.DWORD(0)
  808. GetFileType = ctypes.WINFUNCTYPE(ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)(("GetFileType", ctypes.windll.kernel32))
  809. FILE_TYPE_CHAR = 0x0002
  810. FILE_TYPE_REMOTE = 0x8000
  811. GetConsoleMode = ctypes.WINFUNCTYPE(
  812. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE,
  813. ctypes.POINTER(ctypes.wintypes.DWORD))(
  814. ("GetConsoleMode", ctypes.windll.kernel32))
  815. INVALID_HANDLE_VALUE = ctypes.wintypes.DWORD(-1).value
  816. def not_a_console(handle):
  817. if handle == INVALID_HANDLE_VALUE or handle is None:
  818. return True
  819. return ((GetFileType(handle) & ~FILE_TYPE_REMOTE) != FILE_TYPE_CHAR
  820. or GetConsoleMode(handle, ctypes.byref(ctypes.wintypes.DWORD())) == 0)
  821. if not_a_console(h):
  822. return False
  823. remaining = ucs2_len(s)
  824. while remaining > 0:
  825. ret = WriteConsoleW(
  826. h, s, min(remaining, 1024), ctypes.byref(written), None)
  827. if ret == 0:
  828. raise OSError('Failed to write string')
  829. remaining -= written.value
  830. return True
  831. def write_string(s, out=None, encoding=None):
  832. if out is None:
  833. out = sys.stderr
  834. assert type(s) == compat_str
  835. if sys.platform == 'win32' and encoding is None and hasattr(out, 'fileno'):
  836. if _windows_write_string(s, out):
  837. return
  838. if ('b' in getattr(out, 'mode', '') or
  839. sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
  840. byt = s.encode(encoding or preferredencoding(), 'ignore')
  841. out.write(byt)
  842. elif hasattr(out, 'buffer'):
  843. enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
  844. byt = s.encode(enc, 'ignore')
  845. out.buffer.write(byt)
  846. else:
  847. out.write(s)
  848. out.flush()
  849. def bytes_to_intlist(bs):
  850. if not bs:
  851. return []
  852. if isinstance(bs[0], int): # Python 3
  853. return list(bs)
  854. else:
  855. return [ord(c) for c in bs]
  856. def intlist_to_bytes(xs):
  857. if not xs:
  858. return b''
  859. if isinstance(chr(0), bytes): # Python 2
  860. return ''.join([chr(x) for x in xs])
  861. else:
  862. return bytes(xs)
  863. def get_cachedir(params={}):
  864. cache_root = os.environ.get('XDG_CACHE_HOME',
  865. os.path.expanduser('~/.cache'))
  866. return params.get('cachedir', os.path.join(cache_root, 'youtube-dl'))
  867. # Cross-platform file locking
  868. if sys.platform == 'win32':
  869. import ctypes.wintypes
  870. import msvcrt
  871. class OVERLAPPED(ctypes.Structure):
  872. _fields_ = [
  873. ('Internal', ctypes.wintypes.LPVOID),
  874. ('InternalHigh', ctypes.wintypes.LPVOID),
  875. ('Offset', ctypes.wintypes.DWORD),
  876. ('OffsetHigh', ctypes.wintypes.DWORD),
  877. ('hEvent', ctypes.wintypes.HANDLE),
  878. ]
  879. kernel32 = ctypes.windll.kernel32
  880. LockFileEx = kernel32.LockFileEx
  881. LockFileEx.argtypes = [
  882. ctypes.wintypes.HANDLE, # hFile
  883. ctypes.wintypes.DWORD, # dwFlags
  884. ctypes.wintypes.DWORD, # dwReserved
  885. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  886. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  887. ctypes.POINTER(OVERLAPPED) # Overlapped
  888. ]
  889. LockFileEx.restype = ctypes.wintypes.BOOL
  890. UnlockFileEx = kernel32.UnlockFileEx
  891. UnlockFileEx.argtypes = [
  892. ctypes.wintypes.HANDLE, # hFile
  893. ctypes.wintypes.DWORD, # dwReserved
  894. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  895. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  896. ctypes.POINTER(OVERLAPPED) # Overlapped
  897. ]
  898. UnlockFileEx.restype = ctypes.wintypes.BOOL
  899. whole_low = 0xffffffff
  900. whole_high = 0x7fffffff
  901. def _lock_file(f, exclusive):
  902. overlapped = OVERLAPPED()
  903. overlapped.Offset = 0
  904. overlapped.OffsetHigh = 0
  905. overlapped.hEvent = 0
  906. f._lock_file_overlapped_p = ctypes.pointer(overlapped)
  907. handle = msvcrt.get_osfhandle(f.fileno())
  908. if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
  909. whole_low, whole_high, f._lock_file_overlapped_p):
  910. raise OSError('Locking file failed: %r' % ctypes.FormatError())
  911. def _unlock_file(f):
  912. assert f._lock_file_overlapped_p
  913. handle = msvcrt.get_osfhandle(f.fileno())
  914. if not UnlockFileEx(handle, 0,
  915. whole_low, whole_high, f._lock_file_overlapped_p):
  916. raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
  917. else:
  918. import fcntl
  919. def _lock_file(f, exclusive):
  920. fcntl.lockf(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
  921. def _unlock_file(f):
  922. fcntl.lockf(f, fcntl.LOCK_UN)
  923. class locked_file(object):
  924. def __init__(self, filename, mode, encoding=None):
  925. assert mode in ['r', 'a', 'w']
  926. self.f = io.open(filename, mode, encoding=encoding)
  927. self.mode = mode
  928. def __enter__(self):
  929. exclusive = self.mode != 'r'
  930. try:
  931. _lock_file(self.f, exclusive)
  932. except IOError:
  933. self.f.close()
  934. raise
  935. return self
  936. def __exit__(self, etype, value, traceback):
  937. try:
  938. _unlock_file(self.f)
  939. finally:
  940. self.f.close()
  941. def __iter__(self):
  942. return iter(self.f)
  943. def write(self, *args):
  944. return self.f.write(*args)
  945. def read(self, *args):
  946. return self.f.read(*args)
  947. def shell_quote(args):
  948. quoted_args = []
  949. encoding = sys.getfilesystemencoding()
  950. if encoding is None:
  951. encoding = 'utf-8'
  952. for a in args:
  953. if isinstance(a, bytes):
  954. # We may get a filename encoded with 'encodeFilename'
  955. a = a.decode(encoding)
  956. quoted_args.append(pipes.quote(a))
  957. return u' '.join(quoted_args)
  958. def takewhile_inclusive(pred, seq):
  959. """ Like itertools.takewhile, but include the latest evaluated element
  960. (the first element so that Not pred(e)) """
  961. for e in seq:
  962. yield e
  963. if not pred(e):
  964. return
  965. def smuggle_url(url, data):
  966. """ Pass additional data in a URL for internal use. """
  967. sdata = compat_urllib_parse.urlencode(
  968. {u'__youtubedl_smuggle': json.dumps(data)})
  969. return url + u'#' + sdata
  970. def unsmuggle_url(smug_url, default=None):
  971. if not '#__youtubedl_smuggle' in smug_url:
  972. return smug_url, default
  973. url, _, sdata = smug_url.rpartition(u'#')
  974. jsond = compat_parse_qs(sdata)[u'__youtubedl_smuggle'][0]
  975. data = json.loads(jsond)
  976. return url, data
  977. def format_bytes(bytes):
  978. if bytes is None:
  979. return u'N/A'
  980. if type(bytes) is str:
  981. bytes = float(bytes)
  982. if bytes == 0.0:
  983. exponent = 0
  984. else:
  985. exponent = int(math.log(bytes, 1024.0))
  986. suffix = [u'B', u'KiB', u'MiB', u'GiB', u'TiB', u'PiB', u'EiB', u'ZiB', u'YiB'][exponent]
  987. converted = float(bytes) / float(1024 ** exponent)
  988. return u'%.2f%s' % (converted, suffix)
  989. def str_to_int(int_str):
  990. int_str = re.sub(r'[,\.]', u'', int_str)
  991. return int(int_str)
  992. def get_term_width():
  993. columns = os.environ.get('COLUMNS', None)
  994. if columns:
  995. return int(columns)
  996. try:
  997. sp = subprocess.Popen(
  998. ['stty', 'size'],
  999. stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  1000. out, err = sp.communicate()
  1001. return int(out.split()[1])
  1002. except:
  1003. pass
  1004. return None
  1005. def month_by_name(name):
  1006. """ Return the number of a month by (locale-independently) English name """
  1007. ENGLISH_NAMES = [
  1008. u'January', u'February', u'March', u'April', u'May', u'June',
  1009. u'July', u'August', u'September', u'October', u'November', u'December']
  1010. try:
  1011. return ENGLISH_NAMES.index(name) + 1
  1012. except ValueError:
  1013. return None
  1014. def fix_xml_ampersands(xml_str):
  1015. """Replace all the '&' by '&amp;' in XML"""
  1016. return re.sub(
  1017. r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
  1018. u'&amp;',
  1019. xml_str)
  1020. def setproctitle(title):
  1021. assert isinstance(title, compat_str)
  1022. try:
  1023. libc = ctypes.cdll.LoadLibrary("libc.so.6")
  1024. except OSError:
  1025. return
  1026. title_bytes = title.encode('utf-8')
  1027. buf = ctypes.create_string_buffer(len(title_bytes))
  1028. buf.value = title_bytes
  1029. try:
  1030. libc.prctl(15, buf, 0, 0, 0)
  1031. except AttributeError:
  1032. return # Strange libc, just skip this
  1033. def remove_start(s, start):
  1034. if s.startswith(start):
  1035. return s[len(start):]
  1036. return s
  1037. def url_basename(url):
  1038. path = compat_urlparse.urlparse(url).path
  1039. return path.strip(u'/').split(u'/')[-1]
  1040. class HEADRequest(compat_urllib_request.Request):
  1041. def get_method(self):
  1042. return "HEAD"
  1043. def int_or_none(v, scale=1, default=None):
  1044. return default if v is None else (int(v) // scale)
  1045. def float_or_none(v, scale=1, default=None):
  1046. return default if v is None else (float(v) / scale)
  1047. def parse_duration(s):
  1048. if s is None:
  1049. return None
  1050. m = re.match(
  1051. r'(?:(?:(?P<hours>[0-9]+)[:h])?(?P<mins>[0-9]+)[:m])?(?P<secs>[0-9]+)s?(?::[0-9]+)?$', s)
  1052. if not m:
  1053. return None
  1054. res = int(m.group('secs'))
  1055. if m.group('mins'):
  1056. res += int(m.group('mins')) * 60
  1057. if m.group('hours'):
  1058. res += int(m.group('hours')) * 60 * 60
  1059. return res
  1060. def prepend_extension(filename, ext):
  1061. name, real_ext = os.path.splitext(filename)
  1062. return u'{0}.{1}{2}'.format(name, ext, real_ext)
  1063. def check_executable(exe, args=[]):
  1064. """ Checks if the given binary is installed somewhere in PATH, and returns its name.
  1065. args can be a list of arguments for a short output (like -version) """
  1066. try:
  1067. subprocess.Popen([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  1068. except OSError:
  1069. return False
  1070. return exe
  1071. class PagedList(object):
  1072. def __init__(self, pagefunc, pagesize):
  1073. self._pagefunc = pagefunc
  1074. self._pagesize = pagesize
  1075. def __len__(self):
  1076. # This is only useful for tests
  1077. return len(self.getslice())
  1078. def getslice(self, start=0, end=None):
  1079. res = []
  1080. for pagenum in itertools.count(start // self._pagesize):
  1081. firstid = pagenum * self._pagesize
  1082. nextfirstid = pagenum * self._pagesize + self._pagesize
  1083. if start >= nextfirstid:
  1084. continue
  1085. page_results = list(self._pagefunc(pagenum))
  1086. startv = (
  1087. start % self._pagesize
  1088. if firstid <= start < nextfirstid
  1089. else 0)
  1090. endv = (
  1091. ((end - 1) % self._pagesize) + 1
  1092. if (end is not None and firstid <= end <= nextfirstid)
  1093. else None)
  1094. if startv != 0 or endv is not None:
  1095. page_results = page_results[startv:endv]
  1096. res.extend(page_results)
  1097. # A little optimization - if current page is not "full", ie. does
  1098. # not contain page_size videos then we can assume that this page
  1099. # is the last one - there are no more ids on further pages -
  1100. # i.e. no need to query again.
  1101. if len(page_results) + startv < self._pagesize:
  1102. break
  1103. # If we got the whole page, but the next page is not interesting,
  1104. # break out early as well
  1105. if end == nextfirstid:
  1106. break
  1107. return res
  1108. def uppercase_escape(s):
  1109. unicode_escape = codecs.getdecoder('unicode_escape')
  1110. return re.sub(
  1111. r'\\U[0-9a-fA-F]{8}',
  1112. lambda m: unicode_escape(m.group(0))[0],
  1113. s)
  1114. try:
  1115. struct.pack(u'!I', 0)
  1116. except TypeError:
  1117. # In Python 2.6 (and some 2.7 versions), struct requires a bytes argument
  1118. def struct_pack(spec, *args):
  1119. if isinstance(spec, compat_str):
  1120. spec = spec.encode('ascii')
  1121. return struct.pack(spec, *args)
  1122. def struct_unpack(spec, *args):
  1123. if isinstance(spec, compat_str):
  1124. spec = spec.encode('ascii')
  1125. return struct.unpack(spec, *args)
  1126. else:
  1127. struct_pack = struct.pack
  1128. struct_unpack = struct.unpack
  1129. def read_batch_urls(batch_fd):
  1130. def fixup(url):
  1131. if not isinstance(url, compat_str):
  1132. url = url.decode('utf-8', 'replace')
  1133. BOM_UTF8 = u'\xef\xbb\xbf'
  1134. if url.startswith(BOM_UTF8):
  1135. url = url[len(BOM_UTF8):]
  1136. url = url.strip()
  1137. if url.startswith(('#', ';', ']')):
  1138. return False
  1139. return url
  1140. with contextlib.closing(batch_fd) as fd:
  1141. return [url for url in map(fixup, fd) if url]
  1142. def urlencode_postdata(*args, **kargs):
  1143. return compat_urllib_parse.urlencode(*args, **kargs).encode('ascii')
  1144. def parse_xml(s):
  1145. class TreeBuilder(xml.etree.ElementTree.TreeBuilder):
  1146. def doctype(self, name, pubid, system):
  1147. pass # Ignore doctypes
  1148. parser = xml.etree.ElementTree.XMLParser(target=TreeBuilder())
  1149. kwargs = {'parser': parser} if sys.version_info >= (2, 7) else {}
  1150. return xml.etree.ElementTree.XML(s.encode('utf-8'), **kwargs)
  1151. if sys.version_info < (3, 0) and sys.platform == 'win32':
  1152. def compat_getpass(prompt, *args, **kwargs):
  1153. if isinstance(prompt, compat_str):
  1154. prompt = prompt.encode(preferredencoding())
  1155. return getpass.getpass(prompt, *args, **kwargs)
  1156. else:
  1157. compat_getpass = getpass.getpass
  1158. US_RATINGS = {
  1159. 'G': 0,
  1160. 'PG': 10,
  1161. 'PG-13': 13,
  1162. 'R': 16,
  1163. 'NC': 18,
  1164. }
  1165. def strip_jsonp(code):
  1166. return re.sub(r'(?s)^[a-zA-Z_]+\s*\(\s*(.*)\);\s*?\s*$', r'\1', code)