logo

searx

My custom branche(s) on searx, a meta-search engine
commit: a0037313ea1a3810aea50c6597c8a36eaebdd259
parent: d7f383d7ea11d94de170e8824934c10242a5580c
Author: asciimoo <asciimoo@gmail.com>
Date:   Wed, 16 Oct 2013 23:21:04 +0200

[mod] wikipedia limited to first result

Diffstat:

Msearx/engines/wikipedia.py5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/searx/engines/wikipedia.py b/searx/engines/wikipedia.py @@ -9,7 +9,8 @@ def request(query, 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'].replace(' ', '_'), 'title': res['title']}) + res = search_results.get('query', {}).get('search', []) + if len(res): + results.append({'url': 'https://en.wikipedia.org/wiki/%s' % res[0]['title'].replace(' ', '_'), 'title': res[0]['title']}) return results