diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-11-13 13:54:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-13 13:54:27 +0100 |
| commit | de7f8b757b4d63b19e935676467b2b5320e2b6b6 (patch) | |
| tree | f1e0c5fb9071906cc30dce7318630a56e51c6918 /searx | |
| parent | 7a9dda51d2f532089396e97a890e1727c1e872d1 (diff) | |
| parent | 3c3599c9e60d68bca1b2f5d26b9f4cf070606976 (diff) | |
Merge pull request #499 from dalf/fix-autocompletion-startpage
[fix] startpage autocompletion
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/autocomplete.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/searx/autocomplete.py b/searx/autocomplete.py index cf2deb62f..a55377cd9 100644 --- a/searx/autocomplete.py +++ b/searx/autocomplete.py @@ -24,6 +24,7 @@ from httpx import HTTPError from searx import settings +from searx.data import ENGINES_LANGUAGES from searx.network import get as http_get from searx.exceptions import SearxEngineResponseException @@ -77,12 +78,11 @@ def google(query, lang): def startpage(query, lang): # startpage autocompleter - url = 'https://startpage.com/do/suggest?{query}' - - resp = get(url.format(query=urlencode({'query': query}))).text.split('\n') - if len(resp) > 1: - return resp - return [] + lui = ENGINES_LANGUAGES['startpage'].get(lang, 'english') + url = 'https://startpage.com/suggestions?{query}' + resp = get(url.format(query=urlencode({'q': query, 'segment': 'startpage.udog', 'lui': lui}))) + data = resp.json() + return [e['text'] for e in data.get('suggestions', []) if 'text' in e] def swisscows(query, lang): |