mirror of
https://github.com/searxng/searxng.git
synced 2024-11-17 18:00:12 +01:00
15 lines
384 B
Python
15 lines
384 B
Python
|
from lxml import html
|
||
|
|
||
|
|
||
|
def request(query, params):
|
||
|
params['method'] = 'POST'
|
||
|
params['url'] = 'https://duckduckgo.com/html'
|
||
|
params['data']['q'] = query
|
||
|
return params
|
||
|
|
||
|
|
||
|
def response(resp):
|
||
|
dom = html.fromstring(resp.text)
|
||
|
results = dom.xpath('//div[@class="results_links results_links_deep web-result"]')
|
||
|
return [html.tostring(x) for x in results]
|