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>
		
			
				
	
	
		
			23 lines
		
	
	
		
			517 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			517 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# SPDX-License-Identifier: AGPL-3.0-or-later
 | 
						|
""".. _botdetection src:
 | 
						|
 | 
						|
Implementations used for bot detection.
 | 
						|
 | 
						|
"""
 | 
						|
 | 
						|
from ._helpers import dump_request
 | 
						|
from ._helpers import get_real_ip
 | 
						|
from ._helpers import get_network
 | 
						|
from ._helpers import too_many_requests
 | 
						|
 | 
						|
__all__ = ['dump_request', 'get_network', 'get_real_ip', 'too_many_requests']
 | 
						|
 | 
						|
redis_client = None
 | 
						|
cfg = None
 | 
						|
 | 
						|
 | 
						|
def init(_cfg, _redis_client):
 | 
						|
    global redis_client, cfg  # pylint: disable=global-statement
 | 
						|
    redis_client = _redis_client
 | 
						|
    cfg = _cfg
 |