diff options
author | Alexandre Flament <alex@al-f.net> | 2020-12-16 13:41:32 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2020-12-17 11:39:36 +0100 |
commit | 7ec8bc3ea76516e33318c67165161df5c1efdd36 (patch) | |
tree | 6c9dff310882db816cada8662ef5ed2b8a8158e8 /searx/engines/command.py | |
parent | c0cc01e936593ff3df828fa3bb834507c45cd7ac (diff) | |
download | searxng-7ec8bc3ea76516e33318c67165161df5c1efdd36.tar.gz searxng-7ec8bc3ea76516e33318c67165161df5c1efdd36.zip |
[mod] split searx.search into different processors
see searx.search.processors.abstract.EngineProcessor
First the method searx call the get_params method.
If the return value is not None, then the searx call the method search.
Diffstat (limited to 'searx/engines/command.py')
-rw-r--r-- | searx/engines/command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/command.py b/searx/engines/command.py index 0268d52eb..6321e0004 100644 --- a/searx/engines/command.py +++ b/searx/engines/command.py @@ -23,7 +23,7 @@ from threading import Thread from searx import logger -offline = True +engine_type = 'offline' paging = True command = [] delimiter = {} |