summaryrefslogtreecommitdiff
path: root/searx/engines/bing_videos.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-12-27 10:16:20 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2021-12-27 10:16:20 +0100
commitd84226bf63757b1d4245ab26e9c081daf42389aa (patch)
tree9c0456ad1a1d9d375311ccd8c9bd3eafd0779114 /searx/engines/bing_videos.py
parent3d96a9839a12649874b6d4cf9466bd3616b0a03c (diff)
[fix] issues reported by pylint
Fix pylint issues from commit (3d96a983) [format.python] initial formatting of the python code Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines/bing_videos.py')
-rw-r--r--searx/engines/bing_videos.py19
1 files changed, 14 insertions, 5 deletions
diff --git a/searx/engines/bing_videos.py b/searx/engines/bing_videos.py
index ad61724a1..7f8820546 100644
--- a/searx/engines/bing_videos.py
+++ b/searx/engines/bing_videos.py
@@ -6,15 +6,15 @@
from json import loads
from lxml import html
from urllib.parse import urlencode
-from searx.utils import match_language
+from searx.utils import match_language
from searx.engines.bing import language_aliases
-from searx.engines.bing import (
+
+from searx.engines.bing import ( # pylint: disable=unused-import
_fetch_supported_languages,
supported_languages_url,
-) # NOQA # pylint: disable=unused-import
+)
-# about
about = {
"website": 'https://www.bing.com/videos',
"wikidata_id": 'Q4914152',
@@ -31,7 +31,16 @@ time_range_support = True
number_of_results = 28
base_url = 'https://www.bing.com/'
-search_string = 'videos/search' '?{query}' '&count={count}' '&first={first}' '&scope=video' '&FORM=QBLH'
+search_string = (
+ # fmt: off
+ 'videos/search'
+ '?{query}'
+ '&count={count}'
+ '&first={first}'
+ '&scope=video'
+ '&FORM=QBLH'
+ # fmt: on
+)
time_range_string = '&qft=+filterui:videoage-lt{interval}'
time_range_dict = {'day': '1440', 'week': '10080', 'month': '43200', 'year': '525600'}