diff options
author | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2019-08-26 21:54:01 -0700 |
---|---|---|
committer | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2019-08-26 21:54:01 -0700 |
commit | bb4d223770bc8cb333dc2c5ca13e8430b18051dd (patch) | |
tree | 58238710f064ece90d95585e6bc0abc3658ef851 /searx/engines | |
parent | 8e62f7600f4582b913c92d56ffbafc22e37abe3b (diff) | |
download | searxng-bb4d223770bc8cb333dc2c5ca13e8430b18051dd.tar.gz searxng-bb4d223770bc8cb333dc2c5ca13e8430b18051dd.zip |
[fix] google images
Diffstat (limited to 'searx/engines')
-rw-r--r-- | searx/engines/google_images.py | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/searx/engines/google_images.py b/searx/engines/google_images.py index d9a49e9cc..636913114 100644 --- a/searx/engines/google_images.py +++ b/searx/engines/google_images.py @@ -70,11 +70,21 @@ def response(resp): try: metadata = loads(result) - img_format = "{0} {1}x{2}".format(metadata['ity'], str(metadata['ow']), str(metadata['oh'])) - source = "{0} ({1})".format(metadata['st'], metadata['isu']) + + img_format = metadata.get('ity', '') + img_width = metadata.get('ow', '') + img_height = metadata.get('oh', '') + if img_width and img_height: + img_format += " {0}x{1}".format(img_width, img_height) + + source = metadata.get('st', '') + source_url = metadata.get('isu', '') + if source_url: + source += " ({0})".format(source_url) + results.append({'url': metadata['ru'], 'title': metadata['pt'], - 'content': metadata['s'], + 'content': metadata.get('s', ''), 'source': source, 'img_format': img_format, 'thumbnail_src': metadata['tu'], |