[fix] google: switch to using "Google Go App" (NSTNWV) useragent

This commit is contained in:
Esen
2026-04-10 08:41:34 +03:00
committed by Markus Heiser
parent 08ef7a63d7
commit 67af4894d4
3 changed files with 2670 additions and 2602 deletions
+3 -3
View File
@@ -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):