[fix] dbpedia autocomplete (and use HTTPS)

This commit is contained in:
Alexandre Flament 2020-12-04 16:47:43 +01:00
parent cec73b5dcf
commit 0226ae69d3
1 changed files with 2 additions and 3 deletions

View File

@ -113,7 +113,7 @@ def searx_bang(full_query):
def dbpedia(query, lang):
# dbpedia autocompleter, no HTTPS
autocomplete_url = 'http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?'
autocomplete_url = 'https://lookup.dbpedia.org/api/search.asmx/KeywordSearch?'
response = get(autocomplete_url + urlencode(dict(QueryString=query)))
@ -121,8 +121,7 @@ def dbpedia(query, lang):
if response.ok:
dom = etree.fromstring(response.content)
results = dom.xpath('//a:Result/a:Label//text()',
namespaces={'a': 'http://lookup.dbpedia.org/'})
results = dom.xpath('//Result/Label//text()')
return results