.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.result_types.keyvalue.KeyValue Class Reference
+ Inheritance diagram for searx.result_types.keyvalue.KeyValue:
+ Collaboration diagram for searx.result_types.keyvalue.KeyValue:

Public Member Functions

int __hash__ (self)
 
- Public Member Functions inherited from searx.result_types._base.MainResult
int __hash__ (self)
 
 normalize_result_fields (self)
 
- Public Member Functions inherited from searx.result_types._base.Result
 __post_init__ (self)
 
 filter_urls (self, Callable[[Result|LegacyResult, str, str], str|bool] filter_func)
 
int __hash__ (self)
 
 __eq__ (self, other)
 
 __setitem__ (self, field_name, value)
 
 __getitem__ (self, field_name)
 
 __iter__ (self)
 
 as_dict (self)
 
 defaults_from (self, Result other)
 

Static Public Attributes

dict kvmap [str, typing.Any] | OrderedDict[str, typing.Any]
 
str caption = ""
 
str key_title = ""
 
str value_title = ""
 
- Static Public Attributes inherited from searx.result_types._base.MainResult
str title = ""
 
str content = ""
 
str img_src = ""
 
str thumbnail = ""
 
datetime publishedDate = None
 
str pubdate = ""
 
time length = None
 
str views = ""
 
str author = ""
 
str metadata = ""
 
typing priority = ""
 
set engines = set()
 
bool open_group = False
 
bool close_group = False
 
list positions = []
 
float score = 0
 
str category = ""
 
- Static Public Attributes inherited from searx.result_types._base.Result
str url = None
 
str template = "default.html"
 
str engine = ""
 
urllib parsed_url = None
 

Detailed Description

Simple table view which maps *key* names (first col) to *values*
(second col).

Definition at line 26 of file keyvalue.py.

Member Function Documentation

◆ __hash__()

int searx.result_types.keyvalue.KeyValue.__hash__ ( self)
The KeyValues objects are checked for object identity, even if all
fields of two results have the same values, they are different from each
other.

Definition at line 44 of file keyvalue.py.

44 def __hash__(self) -> int:
45 """The KeyValues objects are checked for object identity, even if all
46 fields of two results have the same values, they are different from each
47 other.
48 """
49 return id(self)

Member Data Documentation

◆ caption

str searx.result_types.keyvalue.KeyValue.caption = ""
static

Definition at line 35 of file keyvalue.py.

◆ key_title

str searx.result_types.keyvalue.KeyValue.key_title = ""
static

Definition at line 38 of file keyvalue.py.

◆ kvmap

dict searx.result_types.keyvalue.KeyValue.kvmap [str, typing.Any] | OrderedDict[str, typing.Any]
static

Definition at line 32 of file keyvalue.py.

◆ value_title

str searx.result_types.keyvalue.KeyValue.value_title = ""
static

Definition at line 41 of file keyvalue.py.


The documentation for this class was generated from the following file: