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

Functions

 request (query, params)
 
 response (resp)
 
 parse_web_lite (resp)
 
 parse_web_api (resp)
 
 fetch_traits (EngineTraits engine_traits)
 

Variables

dict about
 
list categories = []
 
bool paging = True
 
int max_page = 5
 
 qwant_categ = None
 
bool safesearch = True
 
list qwant_news_locales
 
str api_url = 'https://api.qwant.com/v3/search/'
 
str web_lite_url = 'https://lite.qwant.com/'
 

Detailed Description

This engine uses the Qwant API (https://api.qwant.com/v3) to implement Qwant
-Web, -News, -Images and -Videos.  The API is undocumented but can be reverse
engineered by reading the network log of https://www.qwant.com/ queries.

For Qwant's *web-search* two alternatives are implemented:

- ``web``: uses the :py:obj:`api_url` which returns a JSON structure
- ``web-lite``: uses the :py:obj:`web_lite_url` which returns a HTML page


Configuration
=============

The engine has the following additional settings:

- :py:obj:`qwant_categ`

This implementation is used by different qwant engines in the :ref:`settings.yml
<settings engines>`:

.. code:: yaml

  - name: qwant
    qwant_categ: web-lite  # alternatively use 'web'
    ...
  - name: qwant news
    qwant_categ: news
    ...
  - name: qwant images
    qwant_categ: images
    ...
  - name: qwant videos
    qwant_categ: videos
    ...

Implementations
===============

Function Documentation

◆ fetch_traits()

searx.engines.qwant.fetch_traits ( EngineTraits engine_traits)

Definition at line 321 of file qwant.py.

321def fetch_traits(engine_traits: EngineTraits):
322
323 # pylint: disable=import-outside-toplevel
324 from searx import network
325 from searx.locales import region_tag
326 from searx.utils import extr
327
328 resp = network.get(about['website'])
329 json_string = extr(resp.text, 'INITIAL_PROPS = ', '</script>')
330
331 q_initial_props = loads(json_string)
332 q_locales = q_initial_props.get('locales')
333 eng_tag_list = set()
334
335 for country, v in q_locales.items():
336 for lang in v['langs']:
337 _locale = "{lang}_{country}".format(lang=lang, country=country)
338
339 if qwant_categ == 'news' and _locale.lower() not in qwant_news_locales:
340 # qwant-news does not support all locales from qwant-web:
341 continue
342
343 eng_tag_list.add(_locale)
344
345 for eng_tag in eng_tag_list:
346 try:
347 sxng_tag = region_tag(babel.Locale.parse(eng_tag, sep='_'))
348 except babel.UnknownLocaleError:
349 print("ERROR: can't determine babel locale of quant's locale %s" % eng_tag)
350 continue
351
352 conflict = engine_traits.regions.get(sxng_tag)
353 if conflict:
354 if conflict != eng_tag:
355 print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_tag))
356 continue
357 engine_traits.regions[sxng_tag] = eng_tag

◆ parse_web_api()

searx.engines.qwant.parse_web_api ( resp)
Parse results from Qwant's API

Definition at line 183 of file qwant.py.

183def parse_web_api(resp):
184 """Parse results from Qwant's API"""
185 # pylint: disable=too-many-locals, too-many-branches, too-many-statements
186
187 results = []
188
189 # load JSON result
190 search_results = loads(resp.text)
191 data = search_results.get('data', {})
192
193 # check for an API error
194 if search_results.get('status') != 'success':
195 error_code = data.get('error_code')
196 if error_code == 24:
197 raise SearxEngineTooManyRequestsException()
198 if search_results.get("data", {}).get("error_data", {}).get("captchaUrl") is not None:
199 raise SearxEngineCaptchaException()
200 msg = ",".join(data.get('message', ['unknown']))
201 raise SearxEngineAPIException(f"{msg} ({error_code})")
202
203 # raise for other errors
204 raise_for_httperror(resp)
205
206 if qwant_categ == 'web':
207 # The WEB query contains a list named 'mainline'. This list can contain
208 # different result types (e.g. mainline[0]['type'] returns type of the
209 # result items in mainline[0]['items']
210 mainline = data.get('result', {}).get('items', {}).get('mainline', {})
211 else:
212 # Queries on News, Images and Videos do not have a list named 'mainline'
213 # in the response. The result items are directly in the list
214 # result['items'].
215 mainline = data.get('result', {}).get('items', [])
216 mainline = [
217 {'type': qwant_categ, 'items': mainline},
218 ]
219
220 # return empty array if there are no results
221 if not mainline:
222 return []
223
224 for row in mainline:
225 mainline_type = row.get('type', 'web')
226 if mainline_type != qwant_categ:
227 continue
228
229 if mainline_type == 'ads':
230 # ignore adds
231 continue
232
233 mainline_items = row.get('items', [])
234 for item in mainline_items:
235
236 title = item.get('title', None)
237 res_url = item.get('url', None)
238
239 if mainline_type == 'web':
240 content = item['desc']
241 results.append(
242 {
243 'title': title,
244 'url': res_url,
245 'content': content,
246 }
247 )
248
249 elif mainline_type == 'news':
250
251 pub_date = item['date']
252 if pub_date is not None:
253 pub_date = datetime.fromtimestamp(pub_date)
254 news_media = item.get('media', [])
255 thumbnail = None
256 if news_media:
257 thumbnail = news_media[0].get('pict', {}).get('url', None)
258 results.append(
259 {
260 'title': title,
261 'url': res_url,
262 'publishedDate': pub_date,
263 'thumbnail': thumbnail,
264 }
265 )
266
267 elif mainline_type == 'images':
268 thumbnail = item['thumbnail']
269 img_src = item['media']
270 results.append(
271 {
272 'title': title,
273 'url': res_url,
274 'template': 'images.html',
275 'thumbnail_src': thumbnail,
276 'img_src': img_src,
277 'resolution': f"{item['width']} x {item['height']}",
278 'img_format': item.get('thumb_type'),
279 }
280 )
281
282 elif mainline_type == 'videos':
283 # some videos do not have a description: while qwant-video
284 # returns an empty string, such video from a qwant-web query
285 # miss the 'desc' key.
286 d, s, c = item.get('desc'), item.get('source'), item.get('channel')
287 content_parts = []
288 if d:
289 content_parts.append(d)
290 if s:
291 content_parts.append("%s: %s " % (gettext("Source"), s))
292 if c:
293 content_parts.append("%s: %s " % (gettext("Channel"), c))
294 content = ' // '.join(content_parts)
295 length = item['duration']
296 if length is not None:
297 length = timedelta(milliseconds=length)
298 pub_date = item['date']
299 if pub_date is not None:
300 pub_date = datetime.fromtimestamp(pub_date)
301 thumbnail = item['thumbnail']
302 # from some locations (DE and others?) the s2 link do
303 # response a 'Please wait ..' but does not deliver the thumbnail
304 thumbnail = thumbnail.replace('https://s2.qwant.com', 'https://s1.qwant.com', 1)
305 results.append(
306 {
307 'title': title,
308 'url': res_url,
309 'content': content,
310 'iframe_src': get_embeded_stream_url(res_url),
311 'publishedDate': pub_date,
312 'thumbnail': thumbnail,
313 'template': 'videos.html',
314 'length': length,
315 }
316 )
317
318 return results
319
320

Referenced by response().

+ Here is the caller graph for this function:

◆ parse_web_lite()

searx.engines.qwant.parse_web_lite ( resp)
Parse results from Qwant-Lite

Definition at line 162 of file qwant.py.

162def parse_web_lite(resp):
163 """Parse results from Qwant-Lite"""
164
165 results = []
166 dom = lxml.html.fromstring(resp.text)
167
168 for item in eval_xpath_list(dom, '//section/article'):
169 if eval_xpath(item, "./span[contains(@class, 'tooltip')]"):
170 # ignore randomly interspersed advertising adds
171 continue
172 results.append(
173 {
174 'url': extract_text(eval_xpath(item, "./span[contains(@class, 'url partner')]")),
175 'title': extract_text(eval_xpath(item, './h2/a')),
176 'content': extract_text(eval_xpath(item, './p')),
177 }
178 )
179
180 return results
181
182

Referenced by response().

+ Here is the caller graph for this function:

◆ request()

searx.engines.qwant.request ( query,
params )
Qwant search request

Definition at line 111 of file qwant.py.

111def request(query, params):
112 """Qwant search request"""
113
114 if not query:
115 return None
116
117 q_locale = traits.get_region(params["searxng_locale"], default='en_US')
118
119 url = api_url + f'{qwant_categ}?'
120 args = {'q': query}
121 params['raise_for_httperror'] = False
122
123 if qwant_categ == 'web-lite':
124
125 url = web_lite_url + '?'
126 args['locale'] = q_locale.lower()
127 args['l'] = q_locale.split('_')[0]
128 args['s'] = params['safesearch']
129 args['p'] = params['pageno']
130
131 params['raise_for_httperror'] = True
132
133 elif qwant_categ == 'images':
134
135 args['locale'] = q_locale
136 args['safesearch'] = params['safesearch']
137 args['count'] = 50
138 args['tgp'] = 3
139 args['offset'] = (params['pageno'] - 1) * args['count']
140
141 else: # web, news, videos
142
143 args['locale'] = q_locale
144 args['safesearch'] = params['safesearch']
145 args['count'] = 10
146 args['llm'] = 'false'
147 args['tgp'] = 3
148 args['offset'] = (params['pageno'] - 1) * args['count']
149
150 params['url'] = url + urlencode(args)
151
152 return params
153
154

◆ response()

searx.engines.qwant.response ( resp)

Definition at line 155 of file qwant.py.

155def response(resp):
156
157 if qwant_categ == 'web-lite':
158 return parse_web_lite(resp)
159 return parse_web_api(resp)
160
161

References parse_web_api(), and parse_web_lite().

+ Here is the call graph for this function:

Variable Documentation

◆ about

dict searx.engines.qwant.about
Initial value:
1= {
2 "website": 'https://www.qwant.com/',
3 "wikidata_id": 'Q14657870',
4 "official_api_documentation": None,
5 "use_official_api": True,
6 "require_api_key": False,
7 "results": 'JSON',
8}

Definition at line 70 of file qwant.py.

◆ api_url

str searx.engines.qwant.api_url = 'https://api.qwant.com/v3/search/'

Definition at line 104 of file qwant.py.

◆ categories

list searx.engines.qwant.categories = []

Definition at line 80 of file qwant.py.

◆ max_page

int searx.engines.qwant.max_page = 5

Definition at line 82 of file qwant.py.

◆ paging

bool searx.engines.qwant.paging = True

Definition at line 81 of file qwant.py.

◆ qwant_categ

searx.engines.qwant.qwant_categ = None

Definition at line 86 of file qwant.py.

◆ qwant_news_locales

list searx.engines.qwant.qwant_news_locales
Initial value:
1= [
2 'ca_ad', 'ca_es', 'ca_fr', 'co_fr', 'de_at', 'de_ch', 'de_de', 'en_au',
3 'en_ca', 'en_gb', 'en_ie', 'en_my', 'en_nz', 'en_us', 'es_ad', 'es_ar',
4 'es_cl', 'es_co', 'es_es', 'es_mx', 'es_pe', 'eu_es', 'eu_fr', 'fc_ca',
5 'fr_ad', 'fr_be', 'fr_ca', 'fr_ch', 'fr_fr', 'it_ch', 'it_it', 'nl_be',
6 'nl_nl', 'pt_ad', 'pt_pt',
7]

Definition at line 93 of file qwant.py.

◆ safesearch

bool searx.engines.qwant.safesearch = True

Definition at line 89 of file qwant.py.

◆ web_lite_url

str searx.engines.qwant.web_lite_url = 'https://lite.qwant.com/'

Definition at line 107 of file qwant.py.