forked from zaclys/searxng
add yandex autocompleter
This commit is contained in:
parent
eb3d185e66
commit
7b8d6015e3
|
@ -152,6 +152,17 @@ def wikipedia(query, lang):
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
||||||
|
def yandex(query, _lang):
|
||||||
|
# yandex autocompleter
|
||||||
|
url = "https://suggest.yandex.com/suggest-ff.cgi?{0}"
|
||||||
|
|
||||||
|
resp = loads(get(url.format(urlencode(dict(part=query)))).text)
|
||||||
|
print(resp)
|
||||||
|
if len(resp) > 1:
|
||||||
|
return resp[1]
|
||||||
|
return []
|
||||||
|
|
||||||
|
|
||||||
backends = {
|
backends = {
|
||||||
'dbpedia': dbpedia,
|
'dbpedia': dbpedia,
|
||||||
'duckduckgo': duckduckgo,
|
'duckduckgo': duckduckgo,
|
||||||
|
@ -162,6 +173,7 @@ backends = {
|
||||||
'qwant': qwant,
|
'qwant': qwant,
|
||||||
'wikipedia': wikipedia,
|
'wikipedia': wikipedia,
|
||||||
'brave': brave,
|
'brave': brave,
|
||||||
|
'yandex': yandex,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue