diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-13 18:16:09 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-07-14 09:47:32 +0200 |
commit | ef6e1bd6b90ae0ad6ea273a13cb291b0db6f0210 (patch) | |
tree | 320b32c2d9807e9afedef28937487dbc88f862ff /searx/settings.yml | |
parent | ff180cf2dbab35d93b013b68afc19b795e7b9b71 (diff) | |
download | searxng-ef6e1bd6b90ae0ad6ea273a13cb291b0db6f0210.tar.gz searxng-ef6e1bd6b90ae0ad6ea273a13cb291b0db6f0210.zip |
[fix] Qwant engines - implement API v3 and add 'quant videos'
The implementation uses the Qwant API (https://api.qwant.com/v3). The API is
undocumented but can be reverse engineered by reading the network log of
https://www.qwant.com/ queries.
This implementation is used by different qwant engines in the settings.yml::
- name: qwant
categories: general
...
- name: qwant news
categories: news
...
- name: qwant images
categories: images
...
- name: qwant videos
categories: videos
...
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/settings.yml')
-rw-r--r-- | searx/settings.yml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index f8c645107..5470bf18b 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -990,16 +990,25 @@ engines: additional_tests: rosebud: *test_rosebud + - name: qwant news + engine: qwant + shortcut: qwn + categories: news + disabled: true + network: qwant + - name: qwant images engine: qwant shortcut: qwi categories: images + disabled: true network: qwant - - name: qwant news + - name: qwant videos engine: qwant - shortcut: qwn - categories: news + shortcut: qwv + categories: videos + disabled: true network: qwant # - name: library |