1
0
mirror of https://github.com/searxng/searxng.git synced 2024-08-24 15:10:17 +02:00
searxng/searx/engines/duckduckgo_definitions.py

20 lines
567 B
Python
Raw Normal View History

2013-10-14 23:54:33 +02:00
import json
from searx import base_result_template
def request(query, params):
params['url'] = 'http://api.duckduckgo.com/?q=%s&format=json&pretty=0' % query
return params
def response(resp):
search_res = json.loads(resp.text)
results = []
if 'Definition' in search_res:
res = {'title' : search_res.get('Heading', '')
,'content' : search_res.get('Definition', '')
,'url' : search_res.get('AbstractURL', '')
}
results.append(base_result_template.format(**res))
return results