Merge pull request #613 from return42/pylint-bing-images

[pylint] Bing (Images) engine
This commit is contained in:
Alexandre Flament 2022-01-02 22:00:55 +01:00 committed by GitHub
commit d83aa2b0d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 27 additions and 28 deletions

View File

@ -1,11 +1,13 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Bing (Images)
# lint: pylint
"""Bing (Images)
"""
from urllib.parse import urlencode
from lxml import html
from json import loads
from urllib.parse import urlencode
from lxml import html
from searx.utils import match_language
from searx.engines.bing import language_aliases
@ -77,7 +79,6 @@ def response(resp):
# parse results
for result in dom.xpath('//div[@class="imgpt"]'):
try:
img_format = result.xpath('./div[contains(@class, "img_info")]/span/text()')[0]
# Microsoft seems to experiment with this code so don't make the path too specific,
# just catch the text section for the first anchor in img_info assuming this to be
@ -101,7 +102,5 @@ def response(resp):
'img_format': img_format,
}
)
except:
continue
return results