bing_videos.py 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. """
  2. Bing (Videos)
  3. @website https://www.bing.com/videos
  4. @provide-api yes (http://datamarket.azure.com/dataset/bing/search)
  5. @using-api no
  6. @results HTML
  7. @stable no
  8. @parse url, title, content, thumbnail
  9. """
  10. from json import loads
  11. from lxml import html
  12. from searx.engines.bing_images import _fetch_supported_languages, supported_languages_url, get_region_code
  13. from searx.engines.xpath import extract_text
  14. from searx.url_utils import urlencode
  15. categories = ['videos']
  16. paging = True
  17. safesearch = True
  18. time_range_support = True
  19. number_of_results = 10
  20. language_support = True
  21. search_url = 'https://www.bing.com/videos/asyncv2?{query}&async=content&'\
  22. 'first={offset}&count={number_of_results}&CW=1366&CH=25&FORM=R5VR5'
  23. time_range_string = '&qft=+filterui:videoage-lt{interval}'
  24. time_range_dict = {'day': '1440',
  25. 'week': '10080',
  26. 'month': '43200',
  27. 'year': '525600'}
  28. # safesearch definitions
  29. safesearch_types = {2: 'STRICT',
  30. 1: 'DEMOTE',
  31. 0: 'OFF'}
  32. # do search-request
  33. def request(query, params):
  34. offset = (params['pageno'] - 1) * 10 + 1
  35. # safesearch cookie
  36. params['cookies']['SRCHHPGUSR'] = \
  37. 'ADLT=' + safesearch_types.get(params['safesearch'], 'DEMOTE')
  38. # language cookie
  39. region = get_region_code(params['language'], lang_list=supported_languages)
  40. params['cookies']['_EDGE_S'] = 'mkt=' + region + '&F=1'
  41. # query and paging
  42. params['url'] = search_url.format(query=urlencode({'q': query}),
  43. offset=offset,
  44. number_of_results=number_of_results)
  45. # time range
  46. if params['time_range'] in time_range_dict:
  47. params['url'] += time_range_string.format(interval=time_range_dict[params['time_range']])
  48. return params
  49. # get response from search-request
  50. def response(resp):
  51. results = []
  52. dom = html.fromstring(resp.text)
  53. for result in dom.xpath('//div[@class="dg_u"]'):
  54. url = result.xpath('./div[@class="mc_vtvc"]/a/@href')[0]
  55. url = 'https://bing.com' + url
  56. title = extract_text(result.xpath('./div/a/div/div[@class="mc_vtvc_title"]/@title'))
  57. content = extract_text(result.xpath('./div/a/div/div/div/div/text()'))
  58. thumbnail = result.xpath('./div/a/div/div/img/@src')[0]
  59. results.append({'url': url,
  60. 'title': title,
  61. 'content': content,
  62. 'thumbnail': thumbnail,
  63. 'template': 'videos.html'})
  64. if len(results) >= number_of_results:
  65. break
  66. return results