mirror of
https://github.com/searxng/searxng.git
synced 2024-11-06 05:10:11 +01:00
30 lines
749 B
Python
30 lines
749 B
Python
from json import loads
|
|
from urllib import urlencode
|
|
from searx.utils import html_to_text
|
|
|
|
url = 'https://duckduckgo.com/'
|
|
search_url = url + 'd.js?{query}&p=1&s={offset}'
|
|
locale = 'us-en'
|
|
|
|
paging = True
|
|
|
|
|
|
def request(query, params):
|
|
offset = (params['pageno'] - 1) * 30
|
|
q = urlencode({'q': query,
|
|
'l': locale})
|
|
params['url'] = search_url.format(query=q, offset=offset)
|
|
return params
|
|
|
|
|
|
def response(resp):
|
|
results = []
|
|
search_res = loads(resp.text[resp.text.find('[{'):-2])[:-1]
|
|
for r in search_res:
|
|
if not r.get('t'):
|
|
continue
|
|
results.append({'title': r['t'],
|
|
'content': html_to_text(r['a']),
|
|
'url': r['u']})
|
|
return results
|