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
62 for row
in json.loads(_my_offline_engine):
66 'language': request_params[
'searxng_locale'],
67 'value': row.get(
"value"),
71 caption=f
"Demo Offline Engine Result #{count}",
77 res.add(res.types.LegacyResult(number_of_results=count))