summaryrefslogtreecommitdiff
path: root/searx/botdetection/__init__.py
blob: d5716bcc8a7a591ef83b8000dddce8db08854675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint
""".. _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