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 From 420e3caba3bd321b21dd020f62e7d22f80212d40 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 14 Jul 2021 09:37:20 +0200 Subject: [mod] enable Qwant engines (web, news, images, video) by default Qwant is a fast and reliable search engine and AFAIK there is no CAPTCHA. Let us enable Qwant engines by default. Signed-off-by: Markus Heiser --- searx/settings.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'searx/settings.yml') diff --git a/searx/settings.yml b/searx/settings.yml index 5470bf18b..e12a39c1a 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -986,7 +986,7 @@ engines: engine: qwant shortcut: qw categories: general - disabled: true + disabled: false additional_tests: rosebud: *test_rosebud @@ -994,21 +994,21 @@ engines: engine: qwant shortcut: qwn categories: news - disabled: true + disabled: false network: qwant - name: qwant images engine: qwant shortcut: qwi categories: images - disabled: true + disabled: false network: qwant - name: qwant videos engine: qwant shortcut: qwv categories: videos - disabled: true + disabled: false network: qwant # - name: library -- cgit v1.2.3