From 811837d1098b5c09fb2da58cf5a9cf25db41b9e1 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Sun, 26 Dec 2021 23:08:25 +0100 Subject: [PATCH 1/2] [remove] searxng_extra/google_search.py remove deprecated script --- searxng_extra/google_search.py | 37 ---------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 searxng_extra/google_search.py diff --git a/searxng_extra/google_search.py b/searxng_extra/google_search.py deleted file mode 100644 index 34b40c0f2..000000000 --- a/searxng_extra/google_search.py +++ /dev/null @@ -1,37 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later - -from sys import argv, exit - -if not len(argv) > 1: - print('search query required') - exit(1) - -import requests -from json import dumps -from searx.engines import google -from searx.search import default_request_params - -request_params = default_request_params() -# Possible params -# request_params['headers']['User-Agent'] = '' -# request_params['category'] = '' -request_params['pageno'] = 1 -request_params['language'] = 'en_us' -request_params['time_range'] = '' - -params = google.request(argv[1], request_params) - -request_args = dict( - headers=request_params['headers'], - cookies=request_params['cookies'], -) - -if request_params['method'] == 'GET': - req = requests.get -else: - req = requests.post - request_args['data'] = request_params['data'] - -resp = req(request_params['url'], **request_args) -resp.search_params = request_params -print(dumps(google.response(resp))) From 9215d4cde72edadd763bd212209ead861ed7eebd Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Sun, 26 Dec 2021 23:09:10 +0100 Subject: [PATCH 2/2] [fix] python searxng_extra/standalone_searx.py --help The scripts loads the engine and then parse the arguments. After that the engines are initialized. Before this commit, with "--help", the HTTP clients are closed before the engine initialization threads. When these init threads try to send an HTTP request, an exception is raised. --- searxng_extra/standalone_searx.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/searxng_extra/standalone_searx.py b/searxng_extra/standalone_searx.py index e243d9cb1..de8a0d77f 100755 --- a/searxng_extra/standalone_searx.py +++ b/searxng_extra/standalone_searx.py @@ -196,9 +196,14 @@ def parse_argument( if __name__ == '__main__': - searx.search.initialize() + settings_engines = searx.settings['engines'] + searx.search.load_engines(settings_engines) engine_cs = list(searx.engines.categories.keys()) prog_args = parse_argument(category_choices=engine_cs) + searx.search.initialize_network(settings_engines, searx.settings['outgoing']) + searx.search.check_network_configuration() + searx.search.initialize_metrics([engine['name'] for engine in settings_engines]) + searx.search.initialize_processors(settings_engines) search_q = get_search_query(prog_args, engine_categories=engine_cs) res_dict = to_dict(search_q) sys.stdout.write(dumps(