| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:32:32 +02:00
										 |  |  | '''
 | 
					
						
							|  |  |  | searx is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | searx is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | along with searx. If not, see < http://www.gnu.org/licenses/ >. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | (C) 2013- by Adam Tauber, <asciimoo@gmail.com> | 
					
						
							|  |  |  | '''
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2017-06-06 22:20:20 +02:00
										 |  |  | import threading | 
					
						
							|  |  |  | from os.path import realpath, dirname | 
					
						
							| 
									
										
										
										
											2018-03-01 05:30:48 +01:00
										 |  |  | from babel.localedata import locale_identifiers | 
					
						
							| 
									
										
										
										
											2020-12-09 17:33:18 +01:00
										 |  |  | from urllib.parse import urlparse | 
					
						
							| 
									
										
										
										
											2014-07-07 13:59:27 +02:00
										 |  |  | from operator import itemgetter | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | from searx import settings | 
					
						
							| 
									
										
										
										
											2015-01-09 04:13:05 +01:00
										 |  |  | from searx import logger | 
					
						
							| 
									
										
										
										
											2020-10-05 13:50:33 +02:00
										 |  |  | from searx.data import ENGINES_LANGUAGES | 
					
						
							| 
									
										
											  
											
												[mod] don't dump traceback of SearxEngineResponseException on init
When initing engines a "SearxEngineResponseException" is logged very verbose,
including full traceback information:
    ERROR:searx.engines:yggtorrent engine: Fail to initialize
    Traceback (most recent call last):
      File "share/searx/searx/engines/__init__.py", line 293, in engine_init
        init_fn(get_engine_from_settings(engine_name))
      File "share/searx/searx/engines/yggtorrent.py", line 42, in init
        resp = http_get(url, allow_redirects=False)
      File "share/searx/searx/poolrequests.py", line 197, in get
        return request('get', url, **kwargs)
      File "share/searx/searx/poolrequests.py", line 190, in request
        raise_for_httperror(response)
      File "share/searx/searx/raise_for_httperror.py", line 60, in raise_for_httperror
        raise_for_captcha(resp)
      File "share/searx/searx/raise_for_httperror.py", line 43, in raise_for_captcha
        raise_for_cloudflare_captcha(resp)
      File "share/searx/searx/raise_for_httperror.py", line 30, in raise_for_cloudflare_captcha
        raise SearxEngineCaptchaException(message='Cloudflare CAPTCHA', suspended_time=3600 * 24 * 15)
    searx.exceptions.SearxEngineCaptchaException: Cloudflare CAPTCHA, suspended_time=1296000
For SearxEngineResponseException this is not needed.  Those types of exceptions
can be a normal use case.  E.g. for CAPTCHA errors like shown in the example
above. It should be enough to log a warning for such issues:
    WARNING:searx.engines:yggtorrent engine: Fail to initialize // Cloudflare CAPTCHA, suspended_time=1296000
closes: #2612
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
											
										 
											2021-03-05 17:26:22 +01:00
										 |  |  | from searx.exceptions import SearxEngineResponseException | 
					
						
							| 
									
										
										
											
												[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
   * can contains network definition
   * propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
     keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
   * retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
   * local_addresses can be "192.168.0.1/24" (it supports IPv6)
   * support_ipv4 & support_ipv6: both True by default
     see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
   * either a full network description
   * either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
											
										 
											2021-04-05 10:43:33 +02:00
										 |  |  | from searx.network import get, initialize as initialize_network, set_context_network_name | 
					
						
							| 
									
										
										
										
											2021-02-26 07:20:50 +01:00
										 |  |  | from searx.utils import load_module, match_language, get_engine_from_settings, gen_useragent | 
					
						
							| 
									
										
										
										
											2015-01-09 04:13:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | logger = logger.getChild('engines') | 
					
						
							| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | engine_dir = dirname(realpath(__file__)) | 
					
						
							| 
									
										
										
										
											2013-10-23 23:54:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-15 19:11:43 +02:00
										 |  |  | engines = {} | 
					
						
							| 
									
										
										
										
											2013-10-14 23:09:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-17 21:06:28 +02:00
										 |  |  | categories = {'general': []} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:30:48 +01:00
										 |  |  | babel_langs = [lang_parts[0] + '-' + lang_parts[-1] if len(lang_parts) > 1 else lang_parts[0] | 
					
						
							|  |  |  |                for lang_parts in (lang_code.split('_') for lang_code in locale_identifiers())] | 
					
						
							| 
									
										
										
										
											2013-10-17 21:06:28 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | engine_shortcuts = {} | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  | engine_default_args = {'paging': False, | 
					
						
							|  |  |  |                        'categories': ['general'], | 
					
						
							| 
									
										
										
										
											2016-08-06 06:34:56 +02:00
										 |  |  |                        'supported_languages': [], | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  |                        'safesearch': False, | 
					
						
							|  |  |  |                        'timeout': settings['outgoing']['request_timeout'], | 
					
						
							|  |  |  |                        'shortcut': '-', | 
					
						
							| 
									
										
										
										
											2016-02-20 00:21:56 +01:00
										 |  |  |                        'disabled': False, | 
					
						
							| 
									
										
										
										
											2021-03-08 11:35:08 +01:00
										 |  |  |                        'enable_http': False, | 
					
						
							| 
									
										
										
										
											2019-09-23 17:14:32 +02:00
										 |  |  |                        'time_range_support': False, | 
					
						
							| 
									
										
										
										
											2020-12-16 13:41:32 +01:00
										 |  |  |                        'engine_type': 'online', | 
					
						
							| 
									
										
										
										
											2020-03-29 13:14:06 +02:00
										 |  |  |                        'display_error_messages': True, | 
					
						
							| 
									
										
										
										
											2020-02-01 11:01:17 +01:00
										 |  |  |                        'tokens': []} | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-13 19:26:40 +01:00
										 |  |  | def load_engine(engine_data): | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  |     engine_name = engine_data['name'] | 
					
						
							|  |  |  |     if '_' in engine_name: | 
					
						
							|  |  |  |         logger.error('Engine name contains underscore: "{}"'.format(engine_name)) | 
					
						
							| 
									
										
										
										
											2016-09-28 22:30:05 +02:00
										 |  |  |         sys.exit(1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  |     if engine_name.lower() != engine_name: | 
					
						
							|  |  |  |         logger.warn('Engine name is not lowercase: "{}", converting to lowercase'.format(engine_name)) | 
					
						
							|  |  |  |         engine_name = engine_name.lower() | 
					
						
							|  |  |  |         engine_data['name'] = engine_name | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-28 22:30:05 +02:00
										 |  |  |     engine_module = engine_data['engine'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-31 18:59:27 +02:00
										 |  |  |     try: | 
					
						
							|  |  |  |         engine = load_module(engine_module + '.py', engine_dir) | 
					
						
							| 
									
										
										
										
											2020-11-16 09:37:13 +01:00
										 |  |  |     except (SyntaxError, KeyboardInterrupt, SystemExit, SystemError, ImportError, RuntimeError): | 
					
						
							| 
									
										
										
										
											2020-09-07 15:39:26 +02:00
										 |  |  |         logger.exception('Fatal exception in engine "{}"'.format(engine_module)) | 
					
						
							|  |  |  |         sys.exit(1) | 
					
						
							| 
									
										
										
										
											2020-08-31 18:59:27 +02:00
										 |  |  |     except: | 
					
						
							|  |  |  |         logger.exception('Cannot load engine "{}"'.format(engine_module)) | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-16 12:44:07 +01:00
										 |  |  |     for param_name, param_value in engine_data.items(): | 
					
						
							| 
									
										
										
										
											2013-10-23 23:54:46 +02:00
										 |  |  |         if param_name == 'engine': | 
					
						
							| 
									
										
										
										
											2020-11-16 12:44:07 +01:00
										 |  |  |             pass | 
					
						
							|  |  |  |         elif param_name == 'categories': | 
					
						
							|  |  |  |             if param_value == 'none': | 
					
						
							| 
									
										
										
										
											2013-11-04 21:46:23 +01:00
										 |  |  |                 engine.categories = [] | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2020-11-16 12:44:07 +01:00
										 |  |  |                 engine.categories = list(map(str.strip, param_value.split(','))) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             setattr(engine, param_name, param_value) | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |     for arg_name, arg_value in engine_default_args.items(): | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  |         if not hasattr(engine, arg_name): | 
					
						
							|  |  |  |             setattr(engine, arg_name, arg_value) | 
					
						
							| 
									
										
										
										
											2015-01-31 23:11:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  |     # checking required variables | 
					
						
							| 
									
										
										
										
											2013-10-25 23:41:14 +02:00
										 |  |  |     for engine_attr in dir(engine): | 
					
						
							|  |  |  |         if engine_attr.startswith('_'): | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2017-07-19 21:30:18 +02:00
										 |  |  |         if engine_attr == 'inactive' and getattr(engine, engine_attr) is True: | 
					
						
							|  |  |  |             return None | 
					
						
							| 
									
										
										
										
											2014-01-20 02:31:20 +01:00
										 |  |  |         if getattr(engine, engine_attr) is None: | 
					
						
							| 
									
										
										
										
											2015-01-09 04:13:05 +01:00
										 |  |  |             logger.error('Missing engine config attribute: "{0}.{1}"' | 
					
						
							| 
									
										
										
										
											2015-05-02 15:45:17 +02:00
										 |  |  |                          .format(engine.name, engine_attr)) | 
					
						
							| 
									
										
										
										
											2013-10-25 23:41:14 +02:00
										 |  |  |             sys.exit(1) | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  |     # assign supported languages from json file | 
					
						
							| 
									
										
										
										
											2020-10-05 13:50:33 +02:00
										 |  |  |     if engine_data['name'] in ENGINES_LANGUAGES: | 
					
						
							|  |  |  |         setattr(engine, 'supported_languages', ENGINES_LANGUAGES[engine_data['name']]) | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-01 05:30:48 +01:00
										 |  |  |     # find custom aliases for non standard language codes | 
					
						
							|  |  |  |     if hasattr(engine, 'supported_languages'): | 
					
						
							|  |  |  |         if hasattr(engine, 'language_aliases'): | 
					
						
							|  |  |  |             language_aliases = getattr(engine, 'language_aliases') | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             language_aliases = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for engine_lang in getattr(engine, 'supported_languages'): | 
					
						
							|  |  |  |             iso_lang = match_language(engine_lang, babel_langs, fallback=None) | 
					
						
							|  |  |  |             if iso_lang and iso_lang != engine_lang and not engine_lang.startswith(iso_lang) and \ | 
					
						
							|  |  |  |                iso_lang not in getattr(engine, 'supported_languages'): | 
					
						
							|  |  |  |                 language_aliases[iso_lang] = engine_lang | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-07 03:48:11 +01:00
										 |  |  |         setattr(engine, 'language_aliases', language_aliases) | 
					
						
							| 
									
										
										
										
											2018-03-01 05:30:48 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-24 09:58:57 +01:00
										 |  |  |     # language_support | 
					
						
							|  |  |  |     setattr(engine, 'language_support', len(getattr(engine, 'supported_languages', [])) > 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  |     # assign language fetching method if auxiliary method exists | 
					
						
							|  |  |  |     if hasattr(engine, '_fetch_supported_languages'): | 
					
						
							| 
									
										
										
										
											2021-02-26 07:20:50 +01:00
										 |  |  |         headers = { | 
					
						
							|  |  |  |             'User-Agent': gen_useragent(), | 
					
						
							|  |  |  |             'Accept-Language': 'ja-JP,ja;q=0.8,en-US;q=0.5,en;q=0.3',  # bing needs a non-English language | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  |         setattr(engine, 'fetch_supported_languages', | 
					
						
							| 
									
										
										
										
											2021-02-26 07:20:50 +01:00
										 |  |  |                 lambda: engine._fetch_supported_languages(get(engine.supported_languages_url, headers=headers))) | 
					
						
							| 
									
										
										
										
											2016-12-15 07:34:43 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |     # tor related settings | 
					
						
							|  |  |  |     if settings['outgoing'].get('using_tor_proxy'): | 
					
						
							|  |  |  |         # use onion url if using tor. | 
					
						
							|  |  |  |         if hasattr(engine, 'onion_url'): | 
					
						
							|  |  |  |             engine.search_url = engine.onion_url + getattr(engine, 'search_path', '') | 
					
						
							|  |  |  |     elif 'onions' in engine.categories: | 
					
						
							|  |  |  |         # exclude onion engines if not using tor. | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     engine.timeout += settings['outgoing'].get('extra_proxy_timeout', 0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  |     for category_name in engine.categories: | 
					
						
							|  |  |  |         categories.setdefault(category_name, []).append(engine) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if engine.shortcut in engine_shortcuts: | 
					
						
							|  |  |  |         logger.error('Engine config error: ambigious shortcut: {0}'.format(engine.shortcut)) | 
					
						
							|  |  |  |         sys.exit(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     engine_shortcuts[engine.shortcut] = engine.name | 
					
						
							| 
									
										
										
										
											2013-10-15 18:19:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-13 19:26:40 +01:00
										 |  |  |     return engine | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  | def load_engines(engine_list): | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |     global engines, engine_shortcuts | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  |     engines.clear() | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |     engine_shortcuts.clear() | 
					
						
							| 
									
										
										
										
											2016-12-27 17:25:19 +01:00
										 |  |  |     for engine_data in engine_list: | 
					
						
							| 
									
										
										
										
											2020-08-31 18:59:27 +02:00
										 |  |  |         engine = load_engine(engine_data) | 
					
						
							|  |  |  |         if engine is not None: | 
					
						
							| 
									
										
										
										
											2017-04-01 12:00:54 +02:00
										 |  |  |             engines[engine.name] = engine | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  |     return engines | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def initialize_engines(engine_list): | 
					
						
							|  |  |  |     load_engines(engine_list) | 
					
						
							| 
									
										
										
											
												[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
   * can contains network definition
   * propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
     keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
   * retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
   * local_addresses can be "192.168.0.1/24" (it supports IPv6)
   * support_ipv4 & support_ipv6: both True by default
     see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
   * either a full network description
   * either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
											
										 
											2021-04-05 10:43:33 +02:00
										 |  |  |     initialize_network(engine_list, settings['outgoing']) | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def engine_init(engine_name, init_fn): | 
					
						
							| 
									
										
										
										
											2020-12-09 21:23:20 +01:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
											
												[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
   * can contains network definition
   * propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
     keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
   * retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
   * local_addresses can be "192.168.0.1/24" (it supports IPv6)
   * support_ipv4 & support_ipv6: both True by default
     see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
   * either a full network description
   * either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
											
										 
											2021-04-05 10:43:33 +02:00
										 |  |  |             set_context_network_name(engine_name) | 
					
						
							| 
									
										
										
										
											2020-12-09 21:23:20 +01:00
										 |  |  |             init_fn(get_engine_from_settings(engine_name)) | 
					
						
							| 
									
										
											  
											
												[mod] don't dump traceback of SearxEngineResponseException on init
When initing engines a "SearxEngineResponseException" is logged very verbose,
including full traceback information:
    ERROR:searx.engines:yggtorrent engine: Fail to initialize
    Traceback (most recent call last):
      File "share/searx/searx/engines/__init__.py", line 293, in engine_init
        init_fn(get_engine_from_settings(engine_name))
      File "share/searx/searx/engines/yggtorrent.py", line 42, in init
        resp = http_get(url, allow_redirects=False)
      File "share/searx/searx/poolrequests.py", line 197, in get
        return request('get', url, **kwargs)
      File "share/searx/searx/poolrequests.py", line 190, in request
        raise_for_httperror(response)
      File "share/searx/searx/raise_for_httperror.py", line 60, in raise_for_httperror
        raise_for_captcha(resp)
      File "share/searx/searx/raise_for_httperror.py", line 43, in raise_for_captcha
        raise_for_cloudflare_captcha(resp)
      File "share/searx/searx/raise_for_httperror.py", line 30, in raise_for_cloudflare_captcha
        raise SearxEngineCaptchaException(message='Cloudflare CAPTCHA', suspended_time=3600 * 24 * 15)
    searx.exceptions.SearxEngineCaptchaException: Cloudflare CAPTCHA, suspended_time=1296000
For SearxEngineResponseException this is not needed.  Those types of exceptions
can be a normal use case.  E.g. for CAPTCHA errors like shown in the example
above. It should be enough to log a warning for such issues:
    WARNING:searx.engines:yggtorrent engine: Fail to initialize // Cloudflare CAPTCHA, suspended_time=1296000
closes: #2612
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
											
										 
											2021-03-05 17:26:22 +01:00
										 |  |  |         except SearxEngineResponseException as exc: | 
					
						
							|  |  |  |             logger.warn('%s engine: Fail to initialize // %s', engine_name, exc) | 
					
						
							| 
									
										
										
										
											2020-12-09 21:23:20 +01:00
										 |  |  |         except Exception: | 
					
						
							|  |  |  |             logger.exception('%s engine: Fail to initialize', engine_name) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             logger.debug('%s engine: Initialized', engine_name) | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-17 14:30:06 +01:00
										 |  |  |     for engine_name, engine in engines.items(): | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  |         if hasattr(engine, 'init'): | 
					
						
							| 
									
										
										
										
											2018-02-17 14:30:06 +01:00
										 |  |  |             init_fn = getattr(engine, 'init') | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  |             if init_fn: | 
					
						
							|  |  |  |                 logger.debug('%s engine: Starting background initialization', engine_name) | 
					
						
							|  |  |  |                 threading.Thread(target=engine_init, args=(engine_name, init_fn)).start() |