1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-12 16:30:33 +02:00
searxng/searx/engines/google_images.py

28 lines
840 B
Python
Raw Normal View History

2013-10-19 22:19:14 +02:00
#!/usr/bin/env python
2013-10-19 23:12:18 +02:00
from urllib import urlencode
from json import loads
2013-10-19 22:19:14 +02:00
2013-10-19 22:19:31 +02:00
categories = ['images']
2013-10-19 22:19:14 +02:00
2013-10-19 23:12:18 +02:00
search_url = 'https://ajax.googleapis.com/ajax/services/search/images?v=1.0&start=0&rsz=large&safe=off&filter=off&'
2013-10-19 22:19:14 +02:00
def request(query, params):
global search_url
2013-10-19 23:12:18 +02:00
params['url'] = search_url + urlencode({'q': query})
2013-10-19 22:19:14 +02:00
return params
def response(resp):
global base_url
results = []
2013-10-19 23:12:18 +02:00
search_res = loads(resp.text)
2013-10-20 21:40:14 +02:00
if not search_res.get('responseData'):
2013-10-19 23:12:18 +02:00
return []
2013-10-20 21:40:14 +02:00
if not search_res['responseData'].get('results'):
2013-10-20 19:45:13 +02:00
return []
2013-10-19 23:12:18 +02:00
for result in search_res['responseData']['results']:
url = result['originalContextUrl']
title = result['title']
results.append({'url': url, 'title': title, 'content': '', 'img_src': result['url'], 'template': 'images.html'})
2013-10-19 22:19:14 +02:00
return results