.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.demo_offline Namespace Reference

Functions

 init (engine_settings=None)
 
EngineResults search (query, request_params)
 

Variables

str engine_type = 'offline'
 
list categories = ['general']
 
bool disabled = True
 
float timeout = 2.0
 
dict about
 
str _my_offline_engine = ""
 

Detailed Description

Within this module we implement a *demo offline engine*.  Do not look to
close to the implementation, its just a simple example.  To get in use of this
*demo* engine add the following entry to your engines list in ``settings.yml``:

.. code:: yaml

  - name: my offline engine
    engine: demo_offline
    shortcut: demo
    disabled: false

Function Documentation

◆ init()

searx.engines.demo_offline.init ( engine_settings = None)
Initialization of the (offline) engine.  The origin of this demo engine is a
simple json string which is loaded in this example while the engine is
initialized.

Definition at line 36 of file demo_offline.py.

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

◆ search()

EngineResults searx.engines.demo_offline.search ( query,
request_params )
Query (offline) engine and return results.  Assemble the list of results
from your local engine.  In this demo engine we ignore the 'query' term,
usual you would pass the 'query' term to your local engine to filter out the
results.

Definition at line 53 of file demo_offline.py.

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

Variable Documentation

◆ _my_offline_engine

str searx.engines.demo_offline._my_offline_engine = ""
protected

Definition at line 33 of file demo_offline.py.

◆ about

dict searx.engines.demo_offline.about
Initial value:
1= {
2 "wikidata_id": None,
3 "official_api_documentation": None,
4 "use_official_api": False,
5 "require_api_key": False,
6 "results": 'JSON',
7}

Definition at line 24 of file demo_offline.py.

◆ categories

list searx.engines.demo_offline.categories = ['general']

Definition at line 20 of file demo_offline.py.

◆ disabled

bool searx.engines.demo_offline.disabled = True

Definition at line 21 of file demo_offline.py.

◆ engine_type

str searx.engines.demo_offline.engine_type = 'offline'

Definition at line 19 of file demo_offline.py.

◆ timeout

float searx.engines.demo_offline.timeout = 2.0

Definition at line 22 of file demo_offline.py.