diff options
Diffstat (limited to 'searx/engines/brave.py')
| -rw-r--r-- | searx/engines/brave.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/searx/engines/brave.py b/searx/engines/brave.py index 1794cfc89..080de1b0c 100644 --- a/searx/engines/brave.py +++ b/searx/engines/brave.py @@ -152,6 +152,10 @@ send_accept_language_header = True paging = False """Brave only supports paging in :py:obj:`brave_category` ``search`` (UI category All).""" +max_page = 10 +"""Tested 9 pages maximum (``&offset=8``), to be save max is set to 10. Trying +to do more won't return any result and you will most likely be flagged as a bot. +""" safesearch = True safesearch_map = {2: 'strict', 1: 'moderate', 0: 'off'} # cookie: safesearch=off |