From 73ec2ba74ec735bb5e989cab0336ecca24a93701 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Bourrel?= Date: Wed, 19 Dec 2018 11:12:25 +0100 Subject: [PATCH] Update bing image engine with new image json format --- searx/engines/bing_images.py | 4 +--- tests/unit/engines/test_bing_images.py | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/searx/engines/bing_images.py b/searx/engines/bing_images.py index 66e14c01..876011f1 100644 --- a/searx/engines/bing_images.py +++ b/searx/engines/bing_images.py @@ -88,9 +88,7 @@ def response(resp): url = json_data.get('purl') img_src = json_data.get('murl') - - thumb_json_data = loads(_quote_keys_regex.sub(r'\1"\2": \3', link.attrib.get('mad'))) - thumbnail = thumb_json_data.get('turl') + thumbnail = json_data.get('turl') # append result results.append({'template': 'images.html', diff --git a/tests/unit/engines/test_bing_images.py b/tests/unit/engines/test_bing_images.py index afc4cd6f..cb1d550d 100644 --- a/tests/unit/engines/test_bing_images.py +++ b/tests/unit/engines/test_bing_images.py @@ -52,7 +52,7 @@ class TestBingImagesEngine(SearxTestCase):
  • @@ -60,7 +60,7 @@ class TestBingImagesEngine(SearxTestCase):
    @@ -71,7 +71,7 @@ class TestBingImagesEngine(SearxTestCase):