mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	In the past, some files were tested with the standard profile, others with a profile in which most of the messages were switched off ... some files were not checked at all. - ``PYLINT_SEARXNG_DISABLE_OPTION`` has been abolished - the distinction ``# lint: pylint`` is no longer necessary - the pylint tasks have been reduced from three to two 1. ./searx/engines -> lint engines with additional builtins 2. ./searx ./searxng_extra ./tests -> lint all other python files Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
		
			
				
	
	
		
			27 lines
		
	
	
		
			971 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			971 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
"""Processors for engine-type: ``offline``
 | 
						|
 | 
						|
"""
 | 
						|
 | 
						|
from .abstract import EngineProcessor
 | 
						|
 | 
						|
 | 
						|
class OfflineProcessor(EngineProcessor):
 | 
						|
    """Processor class used by ``offline`` engines"""
 | 
						|
 | 
						|
    engine_type = 'offline'
 | 
						|
 | 
						|
    def _search_basic(self, query, params):
 | 
						|
        return self.engine.search(query, params)
 | 
						|
 | 
						|
    def search(self, query, params, result_container, start_time, timeout_limit):
 | 
						|
        try:
 | 
						|
            search_results = self._search_basic(query, params)
 | 
						|
            self.extend_container(result_container, start_time, search_results)
 | 
						|
        except ValueError as e:
 | 
						|
            # do not record the error
 | 
						|
            self.logger.exception('engine {0} : invalid input : {1}'.format(self.engine_name, e))
 | 
						|
        except Exception as e:  # pylint: disable=broad-except
 | 
						|
            self.handle_exception(result_container, e)
 | 
						|
            self.logger.exception('engine {0} : exception : {1}'.format(self.engine_name, e))
 |