mirror of
https://github.com/searxng/searxng.git
synced 2025-09-04 01:08:33 +02:00
25 lines
581 B
Python
25 lines
581 B
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
""".. _botdetection src:
|
|
|
|
Implementations used for bot detection.
|
|
|
|
"""
|
|
|
|
|
|
__all__ = ["init", "dump_request", "get_network", "too_many_requests", "ProxyFix"]
|
|
|
|
|
|
import valkey
|
|
|
|
from ._helpers import dump_request
|
|
from ._helpers import get_network
|
|
from ._helpers import too_many_requests
|
|
from . import config
|
|
from . import valkeydb
|
|
from .trusted_proxies import ProxyFix
|
|
|
|
|
|
def init(cfg: config.Config, valkey_client: valkey.Valkey | None):
|
|
config.set_global_cfg(cfg)
|
|
if valkey_client:
|
|
valkeydb.set_valkey_client(valkey_client)
|