From ef6e1bd6b90ae0ad6ea273a13cb291b0db6f0210 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Tue, 13 Jul 2021 18:16:09 +0200 Subject: [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 --- searx/settings.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'searx/settings.yml') 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 -- cgit v1.2.3