.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"""
3Typification of the *keyvalue* results. Results of this type are rendered in
4the :origin:`keyvalue.html <searx/templates/simple/result_templates/keyvalue.html>`
5template.
6
7----
8
9.. autoclass:: KeyValue
10 :members:
11 :show-inheritance:
12
13"""
14# pylint: disable=too-few-public-methods
15
16from __future__ import annotations
17
18__all__ = ["KeyValue"]
19
20import typing
21from collections import OrderedDict
22
23from ._base import MainResult
24
25
26class 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)