Result¶
Basic types for the typification of results.
Result
base classLegacyResult
for internal use only
- class searx.result_types._base.Result(*, url: str | None = None, template: str = 'default.html', engine: str | None = '', parsed_url: ParseResult | None = None)[source]¶
Base class of all result types Result Types.
- template: str¶
Name of the template used to render the result.
By default result_templates/default.html is used.
- engine: str | None¶
Name of the engine this result comes from. In case of plugins a prefix
plugin:
is set, in case of answerer prefixanswerer:
is set.The field is optional and is initialized from the context if necessary.
- parsed_url: ParseResult | None¶
urllib.parse.ParseResult
ofResult.url
.The field is optional and is initialized from the context if necessary.
- normalize_result_fields()[source]¶
Normalize fields
url
andparse_sql
.If field
url
is set and fieldparse_url
is unset, initparse_url
from fieldurl
. Theurl
field is initialized with the resulting value inparse_url
, ifurl
andparse_url
are not equal.example.com/path/
andexample.com/path
are equivalent and are normalized toexample.com/path
.
- filter_urls(filter_func: Callable[[Result | LegacyResult, str, str], str | bool])[source]¶
A filter function is passed in the
filter_func
argument to filter and/or modify the URLs.The filter function receives the
result object
as the first argument and the field name (str
) in the second argument. In the third argument the URL string value is passed to the filter function.The filter function is applied to all fields that contain a URL, in addition to the familiar
url
field, these include fields such as:["url", "iframe_src", "audio_src", "img_src", "thumbnail_src", "thumbnail"]
and the
urls
list of items of the infobox.For each field, the filter function is called and returns a bool or a string value:
True
: leave URL in field unchangedFalse
: remove URL field from result (or remove entire result)str
: modified URL to be used instead
See Filter URLs example.
- class searx.result_types._base.LegacyResult(*args, **kwargs)[source]¶
A wrapper around a legacy result item. The SearXNG core uses this class for untyped dictionaries / to be downward compatible.
This class is needed until we have implemented an
Result
class for each result type and the old usages in the codebase have been fully migrated.There is only one place where this class is used, in the
searx.results.ResultContainer
.Attention
Do not use this class in your own implementations!