From cda9f8593f97b9e9cfb22fd2953635d0c2b901ad Mon Sep 17 00:00:00 2001 From: NK Date: Tue, 25 Jul 2017 13:39:11 +0100 Subject: [PATCH] Avoid UnicodeEncodeError when redirecting standalone output --- utils/standalone_searx.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/utils/standalone_searx.py b/utils/standalone_searx.py index b19df4ba..22316363 100755 --- a/utils/standalone_searx.py +++ b/utils/standalone_searx.py @@ -25,6 +25,8 @@ path.append(realpath(dirname(realpath(__file__)) + '/../')) # initialization from json import dumps from searx import settings +import sys +import codecs import searx.query import searx.search import searx.engines @@ -97,5 +99,6 @@ result_container_json = { "paging": result_container.paging, "results_number": result_container.results_number() } +sys.stdout = codecs.getwriter("UTF-8")(sys.stdout) +sys.stdout.write(dumps(result_container_json, sort_keys=True, indent=4, ensure_ascii=False, encoding="utf-8", default=json_serial)) -print(dumps(result_container_json, sort_keys=True, indent=4, ensure_ascii=False, encoding="utf-8", default=json_serial))