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.

661 lines
27 KiB

11 years ago
11 years ago
  1. import base64
  2. import hashlib
  3. import json
  4. import netrc
  5. import os
  6. import re
  7. import socket
  8. import sys
  9. import time
  10. import xml.etree.ElementTree
  11. from ..utils import (
  12. compat_http_client,
  13. compat_urllib_error,
  14. compat_urllib_parse_urlparse,
  15. compat_str,
  16. clean_html,
  17. compiled_regex_type,
  18. ExtractorError,
  19. int_or_none,
  20. RegexNotFoundError,
  21. sanitize_filename,
  22. unescapeHTML,
  23. )
  24. _NO_DEFAULT = object()
  25. class InfoExtractor(object):
  26. """Information Extractor class.
  27. Information extractors are the classes that, given a URL, extract
  28. information about the video (or videos) the URL refers to. This
  29. information includes the real video URL, the video title, author and
  30. others. The information is stored in a dictionary which is then
  31. passed to the FileDownloader. The FileDownloader processes this
  32. information possibly downloading the video to the file system, among
  33. other possible outcomes.
  34. The dictionaries must include the following fields:
  35. id: Video identifier.
  36. title: Video title, unescaped.
  37. Additionally, it must contain either a formats entry or a url one:
  38. formats: A list of dictionaries for each format available, ordered
  39. from worst to best quality.
  40. Potential fields:
  41. * url Mandatory. The URL of the video file
  42. * ext Will be calculated from url if missing
  43. * format A human-readable description of the format
  44. ("mp4 container with h264/opus").
  45. Calculated from the format_id, width, height.
  46. and format_note fields if missing.
  47. * format_id A short description of the format
  48. ("mp4_h264_opus" or "19").
  49. Technically optional, but strongly recommended.
  50. * format_note Additional info about the format
  51. ("3D" or "DASH video")
  52. * width Width of the video, if known
  53. * height Height of the video, if known
  54. * resolution Textual description of width and height
  55. * tbr Average bitrate of audio and video in KBit/s
  56. * abr Average audio bitrate in KBit/s
  57. * acodec Name of the audio codec in use
  58. * asr Audio sampling rate in Hertz
  59. * vbr Average video bitrate in KBit/s
  60. * vcodec Name of the video codec in use
  61. * container Name of the container format
  62. * filesize The number of bytes, if known in advance
  63. * filesize_approx An estimate for the number of bytes
  64. * player_url SWF Player URL (used for rtmpdump).
  65. * protocol The protocol that will be used for the actual
  66. download, lower-case.
  67. "http", "https", "rtsp", "rtmp", "m3u8" or so.
  68. * preference Order number of this format. If this field is
  69. present and not None, the formats get sorted
  70. by this field, regardless of all other values.
  71. -1 for default (order by other properties),
  72. -2 or smaller for less than default.
  73. * quality Order number of the video quality of this
  74. format, irrespective of the file format.
  75. -1 for default (order by other properties),
  76. -2 or smaller for less than default.
  77. * http_referer HTTP Referer header value to set.
  78. * http_method HTTP method to use for the download.
  79. * http_headers A dictionary of additional HTTP headers
  80. to add to the request.
  81. * http_post_data Additional data to send with a POST
  82. request.
  83. url: Final video URL.
  84. ext: Video filename extension.
  85. format: The video format, defaults to ext (used for --get-format)
  86. player_url: SWF Player URL (used for rtmpdump).
  87. The following fields are optional:
  88. display_id An alternative identifier for the video, not necessarily
  89. unique, but available before title. Typically, id is
  90. something like "4234987", title "Dancing naked mole rats",
  91. and display_id "dancing-naked-mole-rats"
  92. thumbnails: A list of dictionaries, with the following entries:
  93. * "url"
  94. * "width" (optional, int)
  95. * "height" (optional, int)
  96. * "resolution" (optional, string "{width}x{height"},
  97. deprecated)
  98. thumbnail: Full URL to a video thumbnail image.
  99. description: One-line video description.
  100. uploader: Full name of the video uploader.
  101. timestamp: UNIX timestamp of the moment the video became available.
  102. upload_date: Video upload date (YYYYMMDD).
  103. If not explicitly set, calculated from timestamp.
  104. uploader_id: Nickname or id of the video uploader.
  105. location: Physical location of the video.
  106. subtitles: The subtitle file contents as a dictionary in the format
  107. {language: subtitles}.
  108. duration: Length of the video in seconds, as an integer.
  109. view_count: How many users have watched the video on the platform.
  110. like_count: Number of positive ratings of the video
  111. dislike_count: Number of negative ratings of the video
  112. comment_count: Number of comments on the video
  113. age_limit: Age restriction for the video, as an integer (years)
  114. webpage_url: The url to the video webpage, if given to youtube-dl it
  115. should allow to get the same result again. (It will be set
  116. by YoutubeDL if it's missing)
  117. categories: A list of categories that the video falls in, for example
  118. ["Sports", "Berlin"]
  119. Unless mentioned otherwise, the fields should be Unicode strings.
  120. Subclasses of this one should re-define the _real_initialize() and
  121. _real_extract() methods and define a _VALID_URL regexp.
  122. Probably, they should also be added to the list of extractors.
  123. Finally, the _WORKING attribute should be set to False for broken IEs
  124. in order to warn the users and skip the tests.
  125. """
  126. _ready = False
  127. _downloader = None
  128. _WORKING = True
  129. def __init__(self, downloader=None):
  130. """Constructor. Receives an optional downloader."""
  131. self._ready = False
  132. self.set_downloader(downloader)
  133. @classmethod
  134. def suitable(cls, url):
  135. """Receives a URL and returns True if suitable for this IE."""
  136. # This does not use has/getattr intentionally - we want to know whether
  137. # we have cached the regexp for *this* class, whereas getattr would also
  138. # match the superclass
  139. if '_VALID_URL_RE' not in cls.__dict__:
  140. cls._VALID_URL_RE = re.compile(cls._VALID_URL)
  141. return cls._VALID_URL_RE.match(url) is not None
  142. @classmethod
  143. def working(cls):
  144. """Getter method for _WORKING."""
  145. return cls._WORKING
  146. def initialize(self):
  147. """Initializes an instance (authentication, etc)."""
  148. if not self._ready:
  149. self._real_initialize()
  150. self._ready = True
  151. def extract(self, url):
  152. """Extracts URL information and returns it in list of dicts."""
  153. self.initialize()
  154. return self._real_extract(url)
  155. def set_downloader(self, downloader):
  156. """Sets the downloader for this IE."""
  157. self._downloader = downloader
  158. def _real_initialize(self):
  159. """Real initialization process. Redefine in subclasses."""
  160. pass
  161. def _real_extract(self, url):
  162. """Real extraction process. Redefine in subclasses."""
  163. pass
  164. @classmethod
  165. def ie_key(cls):
  166. """A string for getting the InfoExtractor with get_info_extractor"""
  167. return cls.__name__[:-2]
  168. @property
  169. def IE_NAME(self):
  170. return type(self).__name__[:-2]
  171. def _request_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  172. """ Returns the response handle """
  173. if note is None:
  174. self.report_download_webpage(video_id)
  175. elif note is not False:
  176. if video_id is None:
  177. self.to_screen(u'%s' % (note,))
  178. else:
  179. self.to_screen(u'%s: %s' % (video_id, note))
  180. try:
  181. return self._downloader.urlopen(url_or_request)
  182. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  183. if errnote is False:
  184. return False
  185. if errnote is None:
  186. errnote = u'Unable to download webpage'
  187. errmsg = u'%s: %s' % (errnote, compat_str(err))
  188. if fatal:
  189. raise ExtractorError(errmsg, sys.exc_info()[2], cause=err)
  190. else:
  191. self._downloader.report_warning(errmsg)
  192. return False
  193. def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  194. """ Returns a tuple (page content as string, URL handle) """
  195. # Strip hashes from the URL (#1038)
  196. if isinstance(url_or_request, (compat_str, str)):
  197. url_or_request = url_or_request.partition('#')[0]
  198. urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal)
  199. if urlh is False:
  200. assert not fatal
  201. return False
  202. content_type = urlh.headers.get('Content-Type', '')
  203. webpage_bytes = urlh.read()
  204. m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
  205. if m:
  206. encoding = m.group(1)
  207. else:
  208. m = re.search(br'<meta[^>]+charset=[\'"]?([^\'")]+)[ /\'">]',
  209. webpage_bytes[:1024])
  210. if m:
  211. encoding = m.group(1).decode('ascii')
  212. elif webpage_bytes.startswith(b'\xff\xfe'):
  213. encoding = 'utf-16'
  214. else:
  215. encoding = 'utf-8'
  216. if self._downloader.params.get('dump_intermediate_pages', False):
  217. try:
  218. url = url_or_request.get_full_url()
  219. except AttributeError:
  220. url = url_or_request
  221. self.to_screen(u'Dumping request to ' + url)
  222. dump = base64.b64encode(webpage_bytes).decode('ascii')
  223. self._downloader.to_screen(dump)
  224. if self._downloader.params.get('write_pages', False):
  225. try:
  226. url = url_or_request.get_full_url()
  227. except AttributeError:
  228. url = url_or_request
  229. basen = '%s_%s' % (video_id, url)
  230. if len(basen) > 240:
  231. h = u'___' + hashlib.md5(basen.encode('utf-8')).hexdigest()
  232. basen = basen[:240 - len(h)] + h
  233. raw_filename = basen + '.dump'
  234. filename = sanitize_filename(raw_filename, restricted=True)
  235. self.to_screen(u'Saving request to ' + filename)
  236. with open(filename, 'wb') as outf:
  237. outf.write(webpage_bytes)
  238. try:
  239. content = webpage_bytes.decode(encoding, 'replace')
  240. except LookupError:
  241. content = webpage_bytes.decode('utf-8', 'replace')
  242. if (u'<title>Access to this site is blocked</title>' in content and
  243. u'Websense' in content[:512]):
  244. msg = u'Access to this webpage has been blocked by Websense filtering software in your network.'
  245. blocked_iframe = self._html_search_regex(
  246. r'<iframe src="([^"]+)"', content,
  247. u'Websense information URL', default=None)
  248. if blocked_iframe:
  249. msg += u' Visit %s for more details' % blocked_iframe
  250. raise ExtractorError(msg, expected=True)
  251. return (content, urlh)
  252. def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  253. """ Returns the data of the page as a string """
  254. res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal)
  255. if res is False:
  256. return res
  257. else:
  258. content, _ = res
  259. return content
  260. def _download_xml(self, url_or_request, video_id,
  261. note=u'Downloading XML', errnote=u'Unable to download XML',
  262. transform_source=None, fatal=True):
  263. """Return the xml as an xml.etree.ElementTree.Element"""
  264. xml_string = self._download_webpage(
  265. url_or_request, video_id, note, errnote, fatal=fatal)
  266. if xml_string is False:
  267. return xml_string
  268. if transform_source:
  269. xml_string = transform_source(xml_string)
  270. return xml.etree.ElementTree.fromstring(xml_string.encode('utf-8'))
  271. def _download_json(self, url_or_request, video_id,
  272. note=u'Downloading JSON metadata',
  273. errnote=u'Unable to download JSON metadata',
  274. transform_source=None,
  275. fatal=True):
  276. json_string = self._download_webpage(
  277. url_or_request, video_id, note, errnote, fatal=fatal)
  278. if (not fatal) and json_string is False:
  279. return None
  280. if transform_source:
  281. json_string = transform_source(json_string)
  282. try:
  283. return json.loads(json_string)
  284. except ValueError as ve:
  285. raise ExtractorError('Failed to download JSON', cause=ve)
  286. def report_warning(self, msg, video_id=None):
  287. idstr = u'' if video_id is None else u'%s: ' % video_id
  288. self._downloader.report_warning(
  289. u'[%s] %s%s' % (self.IE_NAME, idstr, msg))
  290. def to_screen(self, msg):
  291. """Print msg to screen, prefixing it with '[ie_name]'"""
  292. self._downloader.to_screen(u'[%s] %s' % (self.IE_NAME, msg))
  293. def report_extraction(self, id_or_name):
  294. """Report information extraction."""
  295. self.to_screen(u'%s: Extracting information' % id_or_name)
  296. def report_download_webpage(self, video_id):
  297. """Report webpage download."""
  298. self.to_screen(u'%s: Downloading webpage' % video_id)
  299. def report_age_confirmation(self):
  300. """Report attempt to confirm age."""
  301. self.to_screen(u'Confirming age')
  302. def report_login(self):
  303. """Report attempt to log in."""
  304. self.to_screen(u'Logging in')
  305. #Methods for following #608
  306. @staticmethod
  307. def url_result(url, ie=None, video_id=None):
  308. """Returns a url that points to a page that should be processed"""
  309. #TODO: ie should be the class used for getting the info
  310. video_info = {'_type': 'url',
  311. 'url': url,
  312. 'ie_key': ie}
  313. if video_id is not None:
  314. video_info['id'] = video_id
  315. return video_info
  316. @staticmethod
  317. def playlist_result(entries, playlist_id=None, playlist_title=None):
  318. """Returns a playlist"""
  319. video_info = {'_type': 'playlist',
  320. 'entries': entries}
  321. if playlist_id:
  322. video_info['id'] = playlist_id
  323. if playlist_title:
  324. video_info['title'] = playlist_title
  325. return video_info
  326. def _search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0):
  327. """
  328. Perform a regex search on the given string, using a single or a list of
  329. patterns returning the first matching group.
  330. In case of failure return a default value or raise a WARNING or a
  331. RegexNotFoundError, depending on fatal, specifying the field name.
  332. """
  333. if isinstance(pattern, (str, compat_str, compiled_regex_type)):
  334. mobj = re.search(pattern, string, flags)
  335. else:
  336. for p in pattern:
  337. mobj = re.search(p, string, flags)
  338. if mobj:
  339. break
  340. if os.name != 'nt' and sys.stderr.isatty():
  341. _name = u'\033[0;34m%s\033[0m' % name
  342. else:
  343. _name = name
  344. if mobj:
  345. # return the first matching group
  346. return next(g for g in mobj.groups() if g is not None)
  347. elif default is not _NO_DEFAULT:
  348. return default
  349. elif fatal:
  350. raise RegexNotFoundError(u'Unable to extract %s' % _name)
  351. else:
  352. self._downloader.report_warning(u'unable to extract %s; '
  353. u'please report this issue on http://yt-dl.org/bug' % _name)
  354. return None
  355. def _html_search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0):
  356. """
  357. Like _search_regex, but strips HTML tags and unescapes entities.
  358. """
  359. res = self._search_regex(pattern, string, name, default, fatal, flags)
  360. if res:
  361. return clean_html(res).strip()
  362. else:
  363. return res
  364. def _get_login_info(self):
  365. """
  366. Get the the login info as (username, password)
  367. It will look in the netrc file using the _NETRC_MACHINE value
  368. If there's no info available, return (None, None)
  369. """
  370. if self._downloader is None:
  371. return (None, None)
  372. username = None
  373. password = None
  374. downloader_params = self._downloader.params
  375. # Attempt to use provided username and password or .netrc data
  376. if downloader_params.get('username', None) is not None:
  377. username = downloader_params['username']
  378. password = downloader_params['password']
  379. elif downloader_params.get('usenetrc', False):
  380. try:
  381. info = netrc.netrc().authenticators(self._NETRC_MACHINE)
  382. if info is not None:
  383. username = info[0]
  384. password = info[2]
  385. else:
  386. raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
  387. except (IOError, netrc.NetrcParseError) as err:
  388. self._downloader.report_warning(u'parsing .netrc: %s' % compat_str(err))
  389. return (username, password)
  390. # Helper functions for extracting OpenGraph info
  391. @staticmethod
  392. def _og_regexes(prop):
  393. content_re = r'content=(?:"([^>]+?)"|\'([^>]+?)\')'
  394. property_re = r'(?:name|property)=[\'"]og:%s[\'"]' % re.escape(prop)
  395. template = r'<meta[^>]+?%s[^>]+?%s'
  396. return [
  397. template % (property_re, content_re),
  398. template % (content_re, property_re),
  399. ]
  400. def _og_search_property(self, prop, html, name=None, **kargs):
  401. if name is None:
  402. name = 'OpenGraph %s' % prop
  403. escaped = self._search_regex(self._og_regexes(prop), html, name, flags=re.DOTALL, **kargs)
  404. if escaped is None:
  405. return None
  406. return unescapeHTML(escaped)
  407. def _og_search_thumbnail(self, html, **kargs):
  408. return self._og_search_property('image', html, u'thumbnail url', fatal=False, **kargs)
  409. def _og_search_description(self, html, **kargs):
  410. return self._og_search_property('description', html, fatal=False, **kargs)
  411. def _og_search_title(self, html, **kargs):
  412. return self._og_search_property('title', html, **kargs)
  413. def _og_search_video_url(self, html, name='video url', secure=True, **kargs):
  414. regexes = self._og_regexes('video') + self._og_regexes('video:url')
  415. if secure:
  416. regexes = self._og_regexes('video:secure_url') + regexes
  417. return self._html_search_regex(regexes, html, name, **kargs)
  418. def _og_search_url(self, html, **kargs):
  419. return self._og_search_property('url', html, **kargs)
  420. def _html_search_meta(self, name, html, display_name=None, fatal=False, **kwargs):
  421. if display_name is None:
  422. display_name = name
  423. return self._html_search_regex(
  424. r'''(?ix)<meta
  425. (?=[^>]+(?:itemprop|name|property)=["\']?%s["\']?)
  426. [^>]+content=["\']([^"\']+)["\']''' % re.escape(name),
  427. html, display_name, fatal=fatal, **kwargs)
  428. def _dc_search_uploader(self, html):
  429. return self._html_search_meta('dc.creator', html, 'uploader')
  430. def _rta_search(self, html):
  431. # See http://www.rtalabel.org/index.php?content=howtofaq#single
  432. if re.search(r'(?ix)<meta\s+name="rating"\s+'
  433. r' content="RTA-5042-1996-1400-1577-RTA"',
  434. html):
  435. return 18
  436. return 0
  437. def _media_rating_search(self, html):
  438. # See http://www.tjg-designs.com/WP/metadata-code-examples-adding-metadata-to-your-web-pages/
  439. rating = self._html_search_meta('rating', html)
  440. if not rating:
  441. return None
  442. RATING_TABLE = {
  443. 'safe for kids': 0,
  444. 'general': 8,
  445. '14 years': 14,
  446. 'mature': 17,
  447. 'restricted': 19,
  448. }
  449. return RATING_TABLE.get(rating.lower(), None)
  450. def _twitter_search_player(self, html):
  451. return self._html_search_meta('twitter:player', html,
  452. 'twitter card player')
  453. def _sort_formats(self, formats):
  454. if not formats:
  455. raise ExtractorError(u'No video formats found')
  456. def _formats_key(f):
  457. # TODO remove the following workaround
  458. from ..utils import determine_ext
  459. if not f.get('ext') and 'url' in f:
  460. f['ext'] = determine_ext(f['url'])
  461. preference = f.get('preference')
  462. if preference is None:
  463. proto = f.get('protocol')
  464. if proto is None:
  465. proto = compat_urllib_parse_urlparse(f.get('url', '')).scheme
  466. preference = 0 if proto in ['http', 'https'] else -0.1
  467. if f.get('ext') in ['f4f', 'f4m']: # Not yet supported
  468. preference -= 0.5
  469. if f.get('vcodec') == 'none': # audio only
  470. if self._downloader.params.get('prefer_free_formats'):
  471. ORDER = [u'aac', u'mp3', u'm4a', u'webm', u'ogg', u'opus']
  472. else:
  473. ORDER = [u'webm', u'opus', u'ogg', u'mp3', u'aac', u'm4a']
  474. ext_preference = 0
  475. try:
  476. audio_ext_preference = ORDER.index(f['ext'])
  477. except ValueError:
  478. audio_ext_preference = -1
  479. else:
  480. if self._downloader.params.get('prefer_free_formats'):
  481. ORDER = [u'flv', u'mp4', u'webm']
  482. else:
  483. ORDER = [u'webm', u'flv', u'mp4']
  484. try:
  485. ext_preference = ORDER.index(f['ext'])
  486. except ValueError:
  487. ext_preference = -1
  488. audio_ext_preference = 0
  489. return (
  490. preference,
  491. f.get('quality') if f.get('quality') is not None else -1,
  492. f.get('height') if f.get('height') is not None else -1,
  493. f.get('width') if f.get('width') is not None else -1,
  494. ext_preference,
  495. f.get('tbr') if f.get('tbr') is not None else -1,
  496. f.get('vbr') if f.get('vbr') is not None else -1,
  497. f.get('abr') if f.get('abr') is not None else -1,
  498. audio_ext_preference,
  499. f.get('filesize') if f.get('filesize') is not None else -1,
  500. f.get('filesize_approx') if f.get('filesize_approx') is not None else -1,
  501. f.get('format_id'),
  502. )
  503. formats.sort(key=_formats_key)
  504. def http_scheme(self):
  505. """ Either "https:" or "https:", depending on the user's preferences """
  506. return (
  507. 'http:'
  508. if self._downloader.params.get('prefer_insecure', False)
  509. else 'https:')
  510. def _proto_relative_url(self, url, scheme=None):
  511. if url is None:
  512. return url
  513. if url.startswith('//'):
  514. if scheme is None:
  515. scheme = self.http_scheme()
  516. return scheme + url
  517. else:
  518. return url
  519. def _sleep(self, timeout, video_id, msg_template=None):
  520. if msg_template is None:
  521. msg_template = u'%(video_id)s: Waiting for %(timeout)s seconds'
  522. msg = msg_template % {'video_id': video_id, 'timeout': timeout}
  523. self.to_screen(msg)
  524. time.sleep(timeout)
  525. def _extract_f4m_formats(self, manifest_url, video_id):
  526. manifest = self._download_xml(
  527. manifest_url, video_id, 'Downloading f4m manifest',
  528. 'Unable to download f4m manifest')
  529. formats = []
  530. for media_el in manifest.findall('{http://ns.adobe.com/f4m/1.0}media'):
  531. formats.append({
  532. 'url': manifest_url,
  533. 'ext': 'flv',
  534. 'tbr': int_or_none(media_el.attrib.get('bitrate')),
  535. 'width': int_or_none(media_el.attrib.get('width')),
  536. 'height': int_or_none(media_el.attrib.get('height')),
  537. })
  538. self._sort_formats(formats)
  539. return formats
  540. class SearchInfoExtractor(InfoExtractor):
  541. """
  542. Base class for paged search queries extractors.
  543. They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
  544. Instances should define _SEARCH_KEY and _MAX_RESULTS.
  545. """
  546. @classmethod
  547. def _make_valid_url(cls):
  548. return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
  549. @classmethod
  550. def suitable(cls, url):
  551. return re.match(cls._make_valid_url(), url) is not None
  552. def _real_extract(self, query):
  553. mobj = re.match(self._make_valid_url(), query)
  554. if mobj is None:
  555. raise ExtractorError(u'Invalid search query "%s"' % query)
  556. prefix = mobj.group('prefix')
  557. query = mobj.group('query')
  558. if prefix == '':
  559. return self._get_n_results(query, 1)
  560. elif prefix == 'all':
  561. return self._get_n_results(query, self._MAX_RESULTS)
  562. else:
  563. n = int(prefix)
  564. if n <= 0:
  565. raise ExtractorError(u'invalid download number %s for query "%s"' % (n, query))
  566. elif n > self._MAX_RESULTS:
  567. self._downloader.report_warning(u'%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
  568. n = self._MAX_RESULTS
  569. return self._get_n_results(query, n)
  570. def _get_n_results(self, query, n):
  571. """Get a specified number of results for a query"""
  572. raise NotImplementedError("This method must be implemented by subclasses")
  573. @property
  574. def SEARCH_KEY(self):
  575. return self._SEARCH_KEY