logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 295b1699ced9b79f3b6e5e4375460ca6ddb64431
parent 599c1137bbc2927c7f0d387ccd65daa2a30a6bf4
Author: dalf <alex@al-f.net>
Date:   Sat, 11 Oct 2014 12:47:30 +0200

[mod] return only one result from the wikidata engine

Diffstat:

Msearx/engines/wikidata.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/searx/engines/wikidata.py b/searx/engines/wikidata.py @@ -2,7 +2,7 @@ import json from requests import get from urllib import urlencode -resultCount=2 +resultCount=1 urlSearch = 'https://www.wikidata.org/w/api.php?action=query&list=search&format=json&srnamespace=0&srprop=sectiontitle&{query}' urlDetail = 'https://www.wikidata.org/w/api.php?action=wbgetentities&format=json&props=labels%7Cinfo%7Csitelinks%7Csitelinks%2Furls%7Cdescriptions%7Cclaims&{query}' urlMap = 'https://www.openstreetmap.org/?lat={latitude}&lon={longitude}&zoom={zoom}&layers=M'