summaryrefslogtreecommitdiff
path: root/searx/botdetection/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/botdetection/__init__.py')
-rw-r--r--searx/botdetection/__init__.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/searx/botdetection/__init__.py b/searx/botdetection/__init__.py
index 78a7d30f3..b4de0f9c8 100644
--- a/searx/botdetection/__init__.py
+++ b/searx/botdetection/__init__.py
@@ -9,18 +9,4 @@ The methods implemented in this python package are use by the :ref:`limiter src`
"""
-import flask
-
-
-def dump_request(request: flask.Request):
- return (
- "%s: '%s'" % (request.headers.get('X-Forwarded-For'), request.path)
- + " || form: %s" % request.form
- + " || Accept: %s" % request.headers.get('Accept')
- + " || Accept-Language: %s" % request.headers.get('Accept-Language')
- + " || Accept-Encoding: %s" % request.headers.get('Accept-Encoding')
- + " || Content-Type: %s" % request.headers.get('Content-Type')
- + " || Content-Length: %s" % request.headers.get('Content-Length')
- + " || Connection: %s" % request.headers.get('Connection')
- + " || User-Agent: %s" % request.headers.get('User-Agent')
- )
+from ._helpers import dump_request