[fix] handle missing images in google news

This commit is contained in:
Adam Tauber 2016-12-23 12:59:03 +01:00
parent 4b225eb7ef
commit 0171db5c3f

View file

@ -70,9 +70,9 @@ def response(resp):
'content': ''.join(result.xpath('.//div[@class="st"]//text()')),
}
img = result.xpath('.//img/@src')[0]
if img and not img.startswith('data'):
r['img_src'] = img
imgs = result.xpath('.//img/@src')
if len(imgs) and not imgs[0].startswith('data'):
r['img_src'] = imgs[0]
results.append(r)