1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-24 23:13:33 +02:00
searxng/searx/engines/wikipedia.py

16 lines
488 B
Python
Raw Normal View History

2013-10-15 20:51:35 +02:00
from json import loads
def request(query, params):
params['url'] = 'http://en.wikipedia.org/w/api.php?action=query&list=search&srsearch=%s&srprop=timestamp&format=json' % query
return params
def response(resp):
search_results = loads(resp.text)
results = []
for res in search_results.get('query', {}).get('search', []):
2013-10-15 22:28:27 +02:00
results.append({'url': 'https://en.wikipedia.org/wiki/%s' % res['title'].replace(' ', '_'), 'title': res['title']})
2013-10-15 20:51:35 +02:00
return results