|
@@ -53,7 +53,7 @@ from flask_babel import Babel, gettext, format_date, format_decimal
|
53
|
53
|
from flask.json import jsonify
|
54
|
54
|
from searx import settings, searx_dir, searx_debug
|
55
|
55
|
from searx.engines import (
|
56
|
|
- categories, engines, get_engines_stats, engine_shortcuts
|
|
56
|
+ categories, engines, engine_shortcuts, get_engines_stats, initialize_engines
|
57
|
57
|
)
|
58
|
58
|
from searx.utils import (
|
59
|
59
|
UnicodeWriter, highlight_content, html_to_text, get_themes,
|
|
@@ -765,6 +765,7 @@ def page_not_found(e):
|
765
|
765
|
|
766
|
766
|
|
767
|
767
|
def run():
|
|
768
|
+ initialize_engines(settings['engines'])
|
768
|
769
|
app.run(
|
769
|
770
|
debug=searx_debug,
|
770
|
771
|
use_debugger=searx_debug,
|