.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
demo_offline.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""Within this module we implement a *demo offline engine*. Do not look to
3close to the implementation, its just a simple example. To get in use of this
4*demo* engine add the following entry to your engines list in ``settings.yml``:
5
6.. code:: yaml
7
8 - name: my offline engine
9 engine: demo_offline
10 shortcut: demo
11 disabled: false
12
13"""
14
15import json
16
17from searx.result_types import EngineResults
18
19engine_type = 'offline'
20categories = ['general']
21disabled = True
22timeout = 2.0
23
24about = {
25 "wikidata_id": None,
26 "official_api_documentation": None,
27 "use_official_api": False,
28 "require_api_key": False,
29 "results": 'JSON',
30}
31
32# if there is a need for globals, use a leading underline
33_my_offline_engine: str = ""
34
35
36def init(engine_settings=None):
37 """Initialization of the (offline) engine. The origin of this demo engine is a
38 simple json string which is loaded in this example while the engine is
39 initialized.
40
41 """
42 global _my_offline_engine # pylint: disable=global-statement
43
44 _my_offline_engine = (
45 '[ {"value": "%s"}'
46 ', {"value":"first item"}'
47 ', {"value":"second item"}'
48 ', {"value":"third item"}'
49 ']' % engine_settings.get('name')
50 )
51
52
53def search(query, request_params) -> EngineResults:
54 """Query (offline) engine and return results. Assemble the list of results
55 from your local engine. In this demo engine we ignore the 'query' term,
56 usual you would pass the 'query' term to your local engine to filter out the
57 results.
58 """
59 res = EngineResults()
60
61 count = 0
62 for row in json.loads(_my_offline_engine):
63 count += 1
64 kvmap = {
65 'query': query,
66 'language': request_params['searxng_locale'],
67 'value': row.get("value"),
68 }
69 res.add(
70 res.types.KeyValue(
71 caption=f"Demo Offline Engine Result #{count}",
72 key_title="Name",
73 value_title="Value",
74 kvmap=kvmap,
75 )
76 )
77 res.add(res.types.LegacyResult(number_of_results=count))
78 return res
init(engine_settings=None)