summaryrefslogtreecommitdiff
path: root/searx/engines/yacy.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-01-13 11:31:25 +0100
committerAlexandre Flament <alex@al-f.net>2021-01-14 20:57:17 +0100
commita4dcfa025c690dc4c824b2261242748a331a97e8 (patch)
tree2085c05e8ba319411a4b729c589e660d973a5c7c /searx/engines/yacy.py
parent5a511f0d620038b8e94c581bcfd3c987082b9414 (diff)
downloadsearxng-a4dcfa025c690dc4c824b2261242748a331a97e8.tar.gz
searxng-a4dcfa025c690dc4c824b2261242748a331a97e8.zip
[enh] engines: add about variable
move meta information from comment to the about variable so the preferences, the documentation can show these information
Diffstat (limited to 'searx/engines/yacy.py')
-rw-r--r--searx/engines/yacy.py27
1 files changed, 14 insertions, 13 deletions
diff --git a/searx/engines/yacy.py b/searx/engines/yacy.py
index 6f7ab759f..afd59cd49 100644
--- a/searx/engines/yacy.py
+++ b/searx/engines/yacy.py
@@ -1,16 +1,7 @@
-# Yacy (Web, Images, Videos, Music, Files)
-#
-# @website http://yacy.net
-# @provide-api yes
-# (http://www.yacy-websuche.de/wiki/index.php/Dev:APIyacysearch)
-#
-# @using-api yes
-# @results JSON
-# @stable yes
-# @parse (general) url, title, content, publishedDate
-# @parse (images) url, title, img_src
-#
-# @todo parse video, audio and file results
+# SPDX-License-Identifier: AGPL-3.0-or-later
+"""
+ Yacy (Web, Images, Videos, Music, Files)
+"""
from json import loads
from dateutil import parser
@@ -20,6 +11,16 @@ from requests.auth import HTTPDigestAuth
from searx.utils import html_to_text
+# about
+about = {
+ "website": 'https://yacy.net/',
+ "wikidata_id": 'Q1759675',
+ "official_api_documentation": 'https://wiki.yacy.net/index.php/Dev:API',
+ "use_official_api": True,
+ "require_api_key": False,
+ "results": 'JSON',
+}
+
# engine dependent config
categories = ['general', 'images'] # TODO , 'music', 'videos', 'files'
paging = True