forked from Ponysearch/Ponysearch
[enh] wikipedia search added
This commit is contained in:
parent
1291931cfc
commit
e4b768b6cc
1 changed files with 15 additions and 0 deletions
15
searx/engines/wikipedia.py
Normal file
15
searx/engines/wikipedia.py
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
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', []):
|
||||||
|
results.append({'url': 'https://en.wikipedia.org/wiki/%s' % res['title'], 'title': res['title']})
|
||||||
|
return results
|
||||||
|
|
Loading…
Reference in a new issue