From 36a1ef12399d529f210ceb4f8b28f497fabd0834 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Mon, 27 Jan 2025 16:43:43 +0100 Subject: [refactor] typification of SearXNG / EngineResults In [1] and [2] we discussed the need of a Result.results property and how we can avoid unclear code. This patch implements a class for the reslut-lists of engines:: searx.result_types.EngineResults A simple example for the usage in engine development:: from searx.result_types import EngineResults ... def response(resp) -> EngineResults: res = EngineResults() ... res.add( res.types.Answer(answer="lorem ipsum ..", url="https://example.org") ) ... return res [1] https://github.com/searxng/searxng/pull/4183#pullrequestreview-257400034 [2] https://github.com/searxng/searxng/pull/4183#issuecomment-2614301580 Signed-off-by: Markus Heiser --- tests/unit/test_plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/unit/test_plugins.py') diff --git a/tests/unit/test_plugins.py b/tests/unit/test_plugins.py index 1096894b4..33df0f320 100644 --- a/tests/unit/test_plugins.py +++ b/tests/unit/test_plugins.py @@ -101,6 +101,6 @@ class PluginStorage(SearxTestCase): ret = self.storage.on_result( sxng_request, get_search_mock("lorem ipsum", user_plugins=["plg001", "plg002"]), - Result(results=[]), + Result(), ) self.assertFalse(ret) -- cgit v1.2.3