.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.autocomplete Namespace Reference

Functions

 update_kwargs (**kwargs)
 
SXNG_Response get (*args, **kwargs)
 
SXNG_Response post (*args, **kwargs)
 
 baidu (query, _lang)
 
 brave (query, _lang)
 
 dbpedia (query, _lang)
 
 duckduckgo (query, sxng_locale)
 
 google_complete (query, sxng_locale)
 
 mwmbl (query, _lang)
 
 qihu360search (query, _lang)
 
 quark (query, _lang)
 
 seznam (query, _lang)
 
 sogou (query, _lang)
 
 stract (query, _lang)
 
 swisscows (query, _lang)
 
 qwant (query, sxng_locale)
 
 wikipedia (query, sxng_locale)
 
 yandex (query, _lang)
 
 search_autocomplete (backend_name, query, sxng_locale)
 

Variables

dict backends
 

Detailed Description

This module implements functions needed for the autocompleter.

Function Documentation

◆ baidu()

searx.autocomplete.baidu ( query,
_lang )

Definition at line 42 of file autocomplete.py.

42def baidu(query, _lang):
43 # baidu search autocompleter
44 base_url = "https://www.baidu.com/sugrec?"
45 response = get(base_url + urlencode({'ie': 'utf-8', 'json': 1, 'prod': 'pc', 'wd': query}))
46
47 results = []
48
49 if response.ok:
50 data = response.json()
51 if 'g' in data:
52 for item in data['g']:
53 results.append(item['q'])
54 return results
55
56

References get().

+ Here is the call graph for this function:

◆ brave()

searx.autocomplete.brave ( query,
_lang )

Definition at line 57 of file autocomplete.py.

57def brave(query, _lang):
58 # brave search autocompleter
59 url = 'https://search.brave.com/api/suggest?'
60 url += urlencode({'q': query})
61 country = 'all'
62 # if lang in _brave:
63 # country = lang
64 kwargs = {'cookies': {'country': country}}
65 resp = get(url, **kwargs)
66
67 results = []
68
69 if resp.ok:
70 data = resp.json()
71 for item in data[1]:
72 results.append(item)
73 return results
74
75

References get().

+ Here is the call graph for this function:

◆ dbpedia()

searx.autocomplete.dbpedia ( query,
_lang )

Definition at line 76 of file autocomplete.py.

76def dbpedia(query, _lang):
77 # dbpedia autocompleter, no HTTPS
78 autocomplete_url = 'https://lookup.dbpedia.org/api/search.asmx/KeywordSearch?'
79
80 response = get(autocomplete_url + urlencode(dict(QueryString=query)))
81
82 results = []
83
84 if response.ok:
85 dom = lxml.etree.fromstring(response.content)
86 results = dom.xpath('//Result/Label//text()')
87
88 return results
89
90

References get().

+ Here is the call graph for this function:

◆ duckduckgo()

searx.autocomplete.duckduckgo ( query,
sxng_locale )
Autocomplete from DuckDuckGo. Supports DuckDuckGo's languages

Definition at line 91 of file autocomplete.py.

91def duckduckgo(query, sxng_locale):
92 """Autocomplete from DuckDuckGo. Supports DuckDuckGo's languages"""
93
94 traits = engines['duckduckgo'].traits
95 args = {
96 'q': query,
97 'kl': traits.get_region(sxng_locale, traits.all_locale),
98 }
99
100 url = 'https://duckduckgo.com/ac/?type=list&' + urlencode(args)
101 resp = get(url)
102
103 ret_val = []
104 if resp.ok:
105 j = resp.json()
106 if len(j) > 1:
107 ret_val = j[1]
108 return ret_val
109
110

References get().

+ Here is the call graph for this function:

◆ get()

SXNG_Response searx.autocomplete.get ( * args,
** kwargs )

Definition at line 32 of file autocomplete.py.

32def get(*args, **kwargs) -> SXNG_Response:
33 update_kwargs(**kwargs)
34 return http_get(*args, **kwargs)
35
36

References update_kwargs().

Referenced by baidu(), brave(), dbpedia(), duckduckgo(), google_complete(), mwmbl(), qihu360search(), quark(), qwant(), seznam(), sogou(), swisscows(), wikipedia(), and yandex().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ google_complete()

searx.autocomplete.google_complete ( query,
sxng_locale )
Autocomplete from Google.  Supports Google's languages and subdomains
(:py:obj:`searx.engines.google.get_google_info`) by using the async REST
API::

    https://{subdomain}/complete/search?{args}

Definition at line 111 of file autocomplete.py.

111def google_complete(query, sxng_locale):
112 """Autocomplete from Google. Supports Google's languages and subdomains
113 (:py:obj:`searx.engines.google.get_google_info`) by using the async REST
114 API::
115
116 https://{subdomain}/complete/search?{args}
117
118 """
119
120 google_info = google.get_google_info({'searxng_locale': sxng_locale}, engines['google'].traits)
121
122 url = 'https://{subdomain}/complete/search?{args}'
123 args = urlencode(
124 {
125 'q': query,
126 'client': 'gws-wiz',
127 'hl': google_info['params']['hl'],
128 }
129 )
130 results = []
131 resp = get(url.format(subdomain=google_info['subdomain'], args=args))
132 if resp and resp.ok:
133 json_txt = resp.text[resp.text.find('[') : resp.text.find(']', -3) + 1]
134 data = json.loads(json_txt)
135 for item in data[0]:
136 results.append(lxml.html.fromstring(item[0]).text_content())
137 return results
138
139

References get().

+ Here is the call graph for this function:

◆ mwmbl()

searx.autocomplete.mwmbl ( query,
_lang )
Autocomplete from Mwmbl_.

Definition at line 140 of file autocomplete.py.

140def mwmbl(query, _lang):
141 """Autocomplete from Mwmbl_."""
142
143 # mwmbl autocompleter
144 url = 'https://api.mwmbl.org/search/complete?{query}'
145
146 results = get(url.format(query=urlencode({'q': query}))).json()[1]
147
148 # results starting with `go:` are direct urls and not useful for auto completion
149 return [result for result in results if not result.startswith("go: ") and not result.startswith("search: ")]
150
151

References get().

+ Here is the call graph for this function:

◆ post()

SXNG_Response searx.autocomplete.post ( * args,
** kwargs )

Definition at line 37 of file autocomplete.py.

37def post(*args, **kwargs) -> SXNG_Response:
38 update_kwargs(**kwargs)
39 return http_post(*args, **kwargs)
40
41

References update_kwargs().

Referenced by stract().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ qihu360search()

searx.autocomplete.qihu360search ( query,
_lang )

Definition at line 152 of file autocomplete.py.

152def qihu360search(query, _lang):
153 # 360Search search autocompleter
154 url = f"https://sug.so.360.cn/suggest?{urlencode({'format': 'json', 'word': query})}"
155 response = get(url)
156
157 results = []
158
159 if response.ok:
160 data = response.json()
161 if 'result' in data:
162 for item in data['result']:
163 results.append(item['word'])
164 return results
165
166

References get().

+ Here is the call graph for this function:

◆ quark()

searx.autocomplete.quark ( query,
_lang )

Definition at line 167 of file autocomplete.py.

167def quark(query, _lang):
168 # Quark search autocompleter
169 url = f"https://sugs.m.sm.cn/web?{urlencode({'q': query})}"
170 response = get(url)
171
172 results = []
173
174 if response.ok:
175 data = response.json()
176 for item in data.get('r', []):
177 results.append(item['w'])
178 return results
179
180

References get().

+ Here is the call graph for this function:

◆ qwant()

searx.autocomplete.qwant ( query,
sxng_locale )
Autocomplete from Qwant. Supports Qwant's regions.

Definition at line 241 of file autocomplete.py.

241def qwant(query, sxng_locale):
242 """Autocomplete from Qwant. Supports Qwant's regions."""
243 results = []
244
245 locale = engines['qwant'].traits.get_region(sxng_locale, 'en_US')
246 url = 'https://api.qwant.com/v3/suggest?{query}'
247 resp = get(url.format(query=urlencode({'q': query, 'locale': locale, 'version': '2'})))
248
249 if resp.ok:
250 data = resp.json()
251 if data['status'] == 'success':
252 for item in data['data']['items']:
253 results.append(item['value'])
254
255 return results
256
257

References get().

+ Here is the call graph for this function:

◆ search_autocomplete()

searx.autocomplete.search_autocomplete ( backend_name,
query,
sxng_locale )

Definition at line 314 of file autocomplete.py.

314def search_autocomplete(backend_name, query, sxng_locale):
315 backend = backends.get(backend_name)
316 if backend is None:
317 return []
318 try:
319 return backend(query, sxng_locale)
320 except (HTTPError, SearxEngineResponseException):
321 return []

◆ seznam()

searx.autocomplete.seznam ( query,
_lang )

Definition at line 181 of file autocomplete.py.

181def seznam(query, _lang):
182 # seznam search autocompleter
183 url = 'https://suggest.seznam.cz/fulltext/cs?{query}'
184
185 resp = get(
186 url.format(
187 query=urlencode(
188 {'phrase': query, 'cursorPosition': len(query), 'format': 'json-2', 'highlight': '1', 'count': '6'}
189 )
190 )
191 )
192
193 if not resp.ok:
194 return []
195
196 data = resp.json()
197 return [
198 ''.join([part.get('text', '') for part in item.get('text', [])])
199 for item in data.get('result', [])
200 if item.get('itemType', None) == 'ItemType.TEXT'
201 ]
202
203

References get().

+ Here is the call graph for this function:

◆ sogou()

searx.autocomplete.sogou ( query,
_lang )

Definition at line 204 of file autocomplete.py.

204def sogou(query, _lang):
205 # Sogou search autocompleter
206 base_url = "https://sor.html5.qq.com/api/getsug?"
207 response = get(base_url + urlencode({'m': 'searxng', 'key': query}))
208
209 if response.ok:
210 raw_json = extr(response.text, "[", "]", default="")
211
212 try:
213 data = json.loads(f"[{raw_json}]]")
214 return data[1]
215 except json.JSONDecodeError:
216 return []
217
218 return []
219
220

References get().

+ Here is the call graph for this function:

◆ stract()

searx.autocomplete.stract ( query,
_lang )

Definition at line 221 of file autocomplete.py.

221def stract(query, _lang):
222 # stract autocompleter (beta)
223 url = f"https://stract.com/beta/api/autosuggest?q={quote_plus(query)}"
224
225 resp = post(url)
226
227 if not resp.ok:
228 return []
229
230 return [html.unescape(suggestion['raw']) for suggestion in resp.json()]
231
232

References post().

+ Here is the call graph for this function:

◆ swisscows()

searx.autocomplete.swisscows ( query,
_lang )

Definition at line 233 of file autocomplete.py.

233def swisscows(query, _lang):
234 # swisscows autocompleter
235 url = 'https://swisscows.ch/api/suggest?{query}&itemsCount=5'
236
237 resp = json.loads(get(url.format(query=urlencode({'query': query}))).text)
238 return resp
239
240

References get().

+ Here is the call graph for this function:

◆ update_kwargs()

searx.autocomplete.update_kwargs ( ** kwargs)

Definition at line 26 of file autocomplete.py.

26def update_kwargs(**kwargs):
27 if 'timeout' not in kwargs:
28 kwargs['timeout'] = settings['outgoing']['request_timeout']
29 kwargs['raise_for_httperror'] = True
30
31

Referenced by get(), and post().

+ Here is the caller graph for this function:

◆ wikipedia()

searx.autocomplete.wikipedia ( query,
sxng_locale )
Autocomplete from Wikipedia. Supports Wikipedia's languages (aka netloc).

Definition at line 258 of file autocomplete.py.

258def wikipedia(query, sxng_locale):
259 """Autocomplete from Wikipedia. Supports Wikipedia's languages (aka netloc)."""
260 results = []
261 eng_traits = engines['wikipedia'].traits
262 wiki_lang = eng_traits.get_language(sxng_locale, 'en')
263 wiki_netloc = eng_traits.custom['wiki_netloc'].get(wiki_lang, 'en.wikipedia.org') # type: ignore
264
265 url = 'https://{wiki_netloc}/w/api.php?{args}'
266 args = urlencode(
267 {
268 'action': 'opensearch',
269 'format': 'json',
270 'formatversion': '2',
271 'search': query,
272 'namespace': '0',
273 'limit': '10',
274 }
275 )
276 resp = get(url.format(args=args, wiki_netloc=wiki_netloc))
277 if resp.ok:
278 data = resp.json()
279 if len(data) > 1:
280 results = data[1]
281
282 return results
283
284

References get().

+ Here is the call graph for this function:

◆ yandex()

searx.autocomplete.yandex ( query,
_lang )

Definition at line 285 of file autocomplete.py.

285def yandex(query, _lang):
286 # yandex autocompleter
287 url = "https://suggest.yandex.com/suggest-ff.cgi?{0}"
288
289 resp = json.loads(get(url.format(urlencode(dict(part=query)))).text)
290 if len(resp) > 1:
291 return resp[1]
292 return []
293
294

References get().

+ Here is the call graph for this function:

Variable Documentation

◆ backends

dict searx.autocomplete.backends
Initial value:
1= {
2 '360search': qihu360search,
3 'baidu': baidu,
4 'brave': brave,
5 'dbpedia': dbpedia,
6 'duckduckgo': duckduckgo,
7 'google': google_complete,
8 'mwmbl': mwmbl,
9 'quark': quark,
10 'qwant': qwant,
11 'seznam': seznam,
12 'sogou': sogou,
13 'stract': stract,
14 'swisscows': swisscows,
15 'wikipedia': wikipedia,
16 'yandex': yandex,
17}

Definition at line 295 of file autocomplete.py.