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

Classes

class  ResultContainer
 
class  Timing
 
class  UnresponsiveEngine
 

Functions

float calculate_score (result, priority)
 
 merge_two_infoboxes (LegacyResult origin, LegacyResult other)
 
 merge_two_main_results (MainResult|LegacyResult origin, MainResult|LegacyResult other)
 

Function Documentation

◆ calculate_score()

float searx.results.calculate_score ( result,
priority )

Definition at line 17 of file results.py.

17def calculate_score(result, priority) -> float:
18 weight = 1.0
19
20 for result_engine in result['engines']:
21 if hasattr(searx.engines.engines.get(result_engine), 'weight'):
22 weight *= float(searx.engines.engines[result_engine].weight)
23
24 weight *= len(result['positions'])
25 score = 0
26
27 for position in result['positions']:
28 if priority == 'low':
29 continue
30 if priority == 'high':
31 score += weight
32 else:
33 score += weight / position
34
35 return score
36
37

Referenced by searx.results.ResultContainer.close().

+ Here is the caller graph for this function:

◆ merge_two_infoboxes()

searx.results.merge_two_infoboxes ( LegacyResult origin,
LegacyResult other )
Merges the values from ``other`` into ``origin``.

Definition at line 290 of file results.py.

290def merge_two_infoboxes(origin: LegacyResult, other: LegacyResult):
291 """Merges the values from ``other`` into ``origin``."""
292 # pylint: disable=too-many-branches
293 weight1 = getattr(searx.engines.engines[origin.engine], "weight", 1)
294 weight2 = getattr(searx.engines.engines[other.engine], "weight", 1)
295
296 if weight2 > weight1:
297 origin.engine = other.engine
298
299 origin.engines |= other.engines
300
301 if other.urls:
302 url_items = origin.get("urls", [])
303
304 for url2 in other.urls:
305 unique_url = True
306 entity_url2 = url2.get("entity")
307
308 for url1 in origin.get("urls", []):
309 if (entity_url2 is not None and entity_url2 == url1.get("entity")) or (
310 url1.get("url") == url2.get("url")
311 ):
312 unique_url = False
313 break
314 if unique_url:
315 url_items.append(url2)
316
317 origin.urls = url_items
318
319 if other.img_src:
320 if not origin.img_src:
321 origin.img_src = other.img_src
322 elif weight2 > weight1:
323 origin.img_src = other.img_src
324
325 if other.attributes:
326 if not origin.attributes:
327 origin.attributes = other.attributes
328 else:
329 attr_names_1 = set()
330 for attr in origin.attributes:
331 label = attr.get("label")
332 if label:
333 attr_names_1.add(label)
334
335 entity = attr.get("entity")
336 if entity:
337 attr_names_1.add(entity)
338
339 for attr in other.attributes:
340 if attr.get("label") not in attr_names_1 and attr.get('entity') not in attr_names_1:
341 origin.attributes.append(attr)
342
343 if other.content:
344 if not origin.content:
345 origin.content = other.content
346 elif len(other.content) > len(origin.content):
347 origin.content = other.content
348
349

Referenced by searx.results.ResultContainer._merge_infobox().

+ Here is the caller graph for this function:

◆ merge_two_main_results()

searx.results.merge_two_main_results ( MainResult | LegacyResult origin,
MainResult | LegacyResult other )
Merges the values from ``other`` into ``origin``.

Definition at line 350 of file results.py.

350def merge_two_main_results(origin: MainResult | LegacyResult, other: MainResult | LegacyResult):
351 """Merges the values from ``other`` into ``origin``."""
352
353 if len(other.content) > len(origin.content):
354 # use content with more text
355 origin.content = other.content
356
357 # use title with more text
358 if len(other.title) > len(origin.title):
359 origin.title = other.title
360
361 # merge all result's parameters not found in origin
362 if isinstance(other, MainResult) and isinstance(origin, MainResult):
363 origin.defaults_from(other)
364 elif isinstance(other, LegacyResult) and isinstance(origin, LegacyResult):
365 origin.defaults_from(other)
366
367 # add engine to list of result-engines
368 origin.engines.add(other.engine or "")
369
370 # use https, ftps, .. if possible
371 if origin.parsed_url and not origin.parsed_url.scheme.endswith("s"):
372 if other.parsed_url and other.parsed_url.scheme.endswith("s"):
373 origin.parsed_url = origin.parsed_url._replace(scheme=other.parsed_url.scheme)
374 origin.url = origin.parsed_url.geturl()

Referenced by searx.results.ResultContainer._merge_main_result().

+ Here is the caller graph for this function: