.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
keyvalue.py
Go to the documentation of this file.
1
# SPDX-License-Identifier: AGPL-3.0-or-later
2
"""
3
Typification of the *keyvalue* results. Results of this type are rendered in
4
the :origin:`keyvalue.html <searx/templates/simple/result_templates/keyvalue.html>`
5
template.
6
7
----
8
9
.. autoclass:: KeyValue
10
:members:
11
:show-inheritance:
12
13
"""
14
# pylint: disable=too-few-public-methods
15
16
from
__future__
import
annotations
17
18
__all__ = [
"KeyValue"
]
19
20
import
typing
21
from
collections
import
OrderedDict
22
23
from
._base
import
MainResult
24
25
26
class
KeyValue
(
MainResult
, kw_only=
True
):
27
"""Simple table view which maps *key* names (first col) to *values*
28
(second col)."""
29
30
template: str =
"keyvalue.html"
31
32
kvmap: dict[str, typing.Any] | OrderedDict[str, typing.Any]
33
"""Dictionary with keys and values. To sort keys, use :py:obj:`OrderedDict`."""
34
35
caption: str =
""
36
"""Optional caption for this result."""
37
38
key_title: str =
""
39
"""Optional title for the *key column*."""
40
41
value_title: str =
""
42
"""Optional title for the *value column*."""
43
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)
searx.result_types._base.MainResult
Definition
_base.py:348
searx.result_types.keyvalue.KeyValue
Definition
keyvalue.py:26
searx.result_types.keyvalue.KeyValue.__hash__
int __hash__(self)
Definition
keyvalue.py:44
searxng
searx
result_types
keyvalue.py
Generated on Thu Apr 3 2025 20:32:58 for .oO SearXNG Developer Documentation Oo. by
1.13.2