diff options
author | Adam Tauber <asciimoo@gmail.com> | 2018-08-13 12:03:27 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2018-08-13 12:38:19 +0200 |
commit | 845ba79e7532dedad2bb96e5d68504b6729bee14 (patch) | |
tree | 609a5135036b4c393ae13eae32243b5132f13b93 /searx/engines/qwant.py | |
parent | b8978b4bbf20eaf6dee1c3e63330a39eae76dfc8 (diff) | |
download | searxng-845ba79e7532dedad2bb96e5d68504b6729bee14.tar.gz searxng-845ba79e7532dedad2bb96e5d68504b6729bee14.zip |
[fix] update qwant search url
thx to @dalf for the fix (#1365)
Diffstat (limited to 'searx/engines/qwant.py')
-rw-r--r-- | searx/engines/qwant.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/qwant.py b/searx/engines/qwant.py index 239193b96..4b0f1c87c 100644 --- a/searx/engines/qwant.py +++ b/searx/engines/qwant.py @@ -28,7 +28,7 @@ category_to_keyword = {'general': 'web', 'social media': 'social'} # search-url -url = 'https://api.qwant.com/api/search/{keyword}?count=10&offset={offset}&f=&{query}' +url = 'https://api.qwant.com/api/search/{keyword}?count=10&offset={offset}&f=&{query}&t={keyword}&uiv=4' # do search-request |