[enh] engines: add about variable

move meta information from comment to the about variable
so the preferences, the documentation can show these information
This commit is contained in:
Alexandre Flament 2021-01-13 11:31:25 +01:00
parent 5a511f0d62
commit a4dcfa025c
90 changed files with 1421 additions and 725 deletions

View file

@ -1,15 +1,7 @@
# INA (Videos)
#
# @website https://www.ina.fr/
# @provide-api no
#
# @using-api no
# @results HTML (using search portal)
# @stable no (HTML can change)
# @parse url, title, content, publishedDate, thumbnail
#
# @todo set content-parameter with correct data
# @todo embedded (needs some md5 from video page)
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
INA (Videos)
"""
from json import loads
from html import unescape
@ -18,6 +10,15 @@ from lxml import html
from dateutil import parser
from searx.utils import extract_text
# about
about = {
"website": 'https://www.ina.fr/',
"wikidata_id": 'Q1665109',
"official_api_documentation": None,
"use_official_api": False,
"require_api_key": False,
"results": 'HTML',
}
# engine dependent config
categories = ['videos']