.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.google_videos Namespace Reference

Functions

 request (query, params)
 
 response (resp)
 

Variables

logging logger .Logger
 
dict about
 
list categories = ['videos', 'web']
 
bool paging = True
 
int max_page = 50
 
bool language_support = True
 
bool time_range_support = True
 
bool safesearch = True
 

Detailed Description

This is the implementation of the Google Videos engine.

.. admonition:: Content-Security-Policy (CSP)

   This engine needs to allow images from the `data URLs`_ (prefixed with the
   ``data:`` scheme)::

     Header set Content-Security-Policy "img-src 'self' data: ;"

.. _data URLs:
   https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs

Function Documentation

◆ request()

searx.engines.google_videos.request ( query,
params )
Google-Video search request

Definition at line 73 of file google_videos.py.

73def request(query, params):
74 """Google-Video search request"""
75
76 google_info = get_google_info(params, traits)
77 start = (params['pageno'] - 1) * 10
78
79 query_url = (
80 'https://'
81 + google_info['subdomain']
82 + '/search'
83 + "?"
84 + urlencode(
85 {
86 'q': query,
87 'tbm': "vid",
88 'start': 10 * params['pageno'],
89 **google_info['params'],
90 'asearch': 'arc',
91 'async': ui_async(start),
92 }
93 )
94 )
95
96 if params['time_range'] in time_range_dict:
97 query_url += '&' + urlencode({'tbs': 'qdr:' + time_range_dict[params['time_range']]})
98 if 'safesearch' in params:
99 query_url += '&' + urlencode({'safe': filter_mapping[params['safesearch']]})
100 params['url'] = query_url
101
102 params['cookies'] = google_info['cookies']
103 params['headers'].update(google_info['headers'])
104 return params
105
106

◆ response()

searx.engines.google_videos.response ( resp)
Get response from google's search request

Definition at line 107 of file google_videos.py.

107def response(resp):
108 """Get response from google's search request"""
109 results = []
110
111 detect_google_sorry(resp)
112 data_image_map = parse_data_images(resp.text)
113
114 # convert the text to dom
115 dom = html.fromstring(resp.text)
116
117 # parse results
118 for result in eval_xpath_list(dom, '//div[contains(@class, "g ")]'):
119
120 thumbnail = eval_xpath_getindex(result, './/img/@src', 0, None)
121 if thumbnail:
122 if thumbnail.startswith('data:image'):
123 img_id = eval_xpath_getindex(result, './/img/@id', 0, None)
124 if img_id:
125 thumbnail = data_image_map.get(img_id)
126 else:
127 thumbnail = None
128
129 title = extract_text(eval_xpath_getindex(result, './/a/h3[1]', 0))
130 url = eval_xpath_getindex(result, './/a/h3[1]/../@href', 0)
131
132 c_node = eval_xpath_getindex(result, './/div[contains(@class, "ITZIwc")]', 0)
133 content = extract_text(c_node)
134 pub_info = extract_text(eval_xpath(result, './/div[contains(@class, "gqF9jc")]'))
135
136 results.append(
137 {
138 'url': url,
139 'title': title,
140 'content': content,
141 'author': pub_info,
142 'thumbnail': thumbnail,
143 'iframe_src': get_embeded_stream_url(url),
144 'template': 'videos.html',
145 }
146 )
147
148 # parse suggestion
149 for suggestion in eval_xpath_list(dom, suggestion_xpath):
150 # append suggestion
151 results.append({'suggestion': extract_text(suggestion)})
152
153 return results

Variable Documentation

◆ about

dict searx.engines.google_videos.about
Initial value:
1= {
2 "website": 'https://www.google.com',
3 "wikidata_id": 'Q219885',
4 "official_api_documentation": 'https://developers.google.com/custom-search',
5 "use_official_api": False,
6 "require_api_key": False,
7 "results": 'HTML',
8}

Definition at line 50 of file google_videos.py.

◆ categories

list searx.engines.google_videos.categories = ['videos', 'web']

Definition at line 61 of file google_videos.py.

◆ language_support

bool searx.engines.google_videos.language_support = True

Definition at line 68 of file google_videos.py.

◆ logger

logging searx.engines.google_videos.logger .Logger

Definition at line 45 of file google_videos.py.

◆ max_page

int searx.engines.google_videos.max_page = 50

Definition at line 63 of file google_videos.py.

◆ paging

bool searx.engines.google_videos.paging = True

Definition at line 62 of file google_videos.py.

◆ safesearch

bool searx.engines.google_videos.safesearch = True

Definition at line 70 of file google_videos.py.

◆ time_range_support

bool searx.engines.google_videos.time_range_support = True

Definition at line 69 of file google_videos.py.