summaryrefslogtreecommitdiff
path: root/searx/engines/genius.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2021-05-24 16:19:06 +0200
committerMarkus Heiser <markus.heiser@darmarit.de>2021-05-24 16:19:06 +0200
commit3a71d4b1757a6802fc36c637918bf0dc65737415 (patch)
tree7b54a884d21188eb27c248e215001f9e0b988c66 /searx/engines/genius.py
parent703f8c4a8b4bd00a4070163cb14d1fe73e234d75 (diff)
downloadsearxng-3a71d4b1757a6802fc36c637918bf0dc65737415.tar.gz
searxng-3a71d4b1757a6802fc36c637918bf0dc65737415.zip
[pylint] searx/engines/genius.py, add logger & normalized indentation
- pylint searx/engines/genius.py - add logger and log ignored exceptions - normalized various indentation Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/engines/genius.py')
-rw-r--r--searx/engines/genius.py37
1 files changed, 23 insertions, 14 deletions
diff --git a/searx/engines/genius.py b/searx/engines/genius.py
index 9f6a8cd5f..86bab1f8f 100644
--- a/searx/engines/genius.py
+++ b/searx/engines/genius.py
@@ -1,12 +1,17 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
-"""
- Genius
+# lint: pylint
+# pylint: disable=invalid-name, missing-function-docstring
+"""Genius
+
"""
from json import loads
from urllib.parse import urlencode
from datetime import datetime
+from searx import logger
+logger = logger.getChild('genius engine')
+
# about
about = {
"website": 'https://genius.com/',
@@ -27,17 +32,20 @@ search_url = url + 'search/{index}?{query}&page={pageno}&per_page={page_size}'
def request(query, params):
- params['url'] = search_url.format(query=urlencode({'q': query}),
- index='multi',
- page_size=page_size,
- pageno=params['pageno'])
+ params['url'] = search_url.format(
+ query=urlencode({'q': query}),
+ index='multi',
+ page_size=page_size,
+ pageno=params['pageno'],
+ )
return params
def parse_lyric(hit):
try:
content = hit['highlights'][0]['value']
- except:
+ except Exception as e: # pylint: disable=broad-except
+ logger.error(e, exc_info=True)
content = ''
timestamp = hit['result']['lyrics_updated_at']
result = {'url': hit['result']['url'],
@@ -51,11 +59,12 @@ def parse_lyric(hit):
def parse_artist(hit):
- result = {'url': hit['result']['url'],
- 'title': hit['result']['name'],
- 'content': '',
- 'thumbnail': hit['result']['image_url'],
- 'template': 'videos.html'}
+ result = {
+ 'url': hit['result']['url'],
+ 'title': hit['result']['name'],
+ 'content': '',
+ 'thumbnail': hit['result']['image_url'],
+ }
return result
@@ -68,8 +77,8 @@ def parse_album(hit):
'template': 'videos.html'}
try:
year = hit['result']['release_date_components']['year']
- except:
- pass
+ except Exception as e: # pylint: disable=broad-except
+ logger.error(e, exc_info=True)
else:
if year:
result.update({'content': 'Released: {}'.format(year)})