summaryrefslogtreecommitdiff
path: root/searx/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'searx/utils.py')
-rw-r--r--searx/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/utils.py b/searx/utils.py
index 36df452f1..9a7968ab7 100644
--- a/searx/utils.py
+++ b/searx/utils.py
@@ -13,7 +13,7 @@ from collections.abc import MutableMapping, Callable
from numbers import Number
from os.path import splitext, join
-from random import choice, randint
+from random import choice
from html.parser import HTMLParser
from html import escape
from urllib.parse import urljoin, urlparse, parse_qs, urlencode
@@ -82,11 +82,11 @@ def gen_useragent(os_string: str | None = None) -> str:
def gen_gsa_useragent() -> str:
- """Return a random "Android Google App" User Agent suitable for Google
+ """Return a random "Google Go App" User Agent suitable for Google
See searx/data/gsa_useragents.txt
"""
- return choice(gsa_useragents_loader()) + " GoogleApp/" + str(randint(0, 9))
+ return choice(gsa_useragents_loader()) + " NSTNWV"
class HTMLTextExtractor(HTMLParser):