2015-05-02 13:45:17 +00:00
|
|
|
"""
|
|
|
|
DuckDuckGo (Web)
|
|
|
|
|
|
|
|
@website https://duckduckgo.com/
|
|
|
|
@provide-api yes (https://duckduckgo.com/api),
|
|
|
|
but not all results from search-site
|
|
|
|
|
|
|
|
@using-api no
|
|
|
|
@results HTML (using search portal)
|
|
|
|
@stable no (HTML can change)
|
|
|
|
@parse url, title, content
|
|
|
|
|
|
|
|
@todo rewrite to api
|
|
|
|
@todo language support
|
|
|
|
(the current used site does not support language-change)
|
|
|
|
"""
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2013-10-23 21:55:37 +00:00
|
|
|
from urllib import urlencode
|
2014-03-21 15:33:17 +00:00
|
|
|
from lxml.html import fromstring
|
2015-02-02 16:55:39 +00:00
|
|
|
from searx.engines.xpath import extract_text
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
# engine dependent config
|
|
|
|
categories = ['general']
|
|
|
|
paging = True
|
2014-09-07 20:52:13 +00:00
|
|
|
language_support = True
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
# search-url
|
|
|
|
url = 'https://duckduckgo.com/html?{query}&s={offset}'
|
|
|
|
|
|
|
|
# specific xpath variables
|
|
|
|
result_xpath = '//div[@class="results_links results_links_deep web-result"]' # noqa
|
|
|
|
url_xpath = './/a[@class="large"]/@href'
|
2015-02-02 16:55:39 +00:00
|
|
|
title_xpath = './/a[@class="large"]'
|
|
|
|
content_xpath = './/div[@class="snippet"]'
|
2014-03-29 15:38:45 +00:00
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
|
|
|
|
# do search-request
|
2013-10-14 21:09:13 +00:00
|
|
|
def request(query, params):
|
2014-01-30 00:03:19 +00:00
|
|
|
offset = (params['pageno'] - 1) * 30
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2014-09-07 20:52:13 +00:00
|
|
|
if params['language'] == 'all':
|
|
|
|
locale = 'en-us'
|
|
|
|
else:
|
2014-12-07 15:37:56 +00:00
|
|
|
locale = params['language'].replace('_', '-').lower()
|
2014-09-07 20:52:13 +00:00
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
params['url'] = url.format(
|
2014-09-07 20:52:13 +00:00
|
|
|
query=urlencode({'q': query, 'kl': locale}),
|
2014-09-02 15:14:57 +00:00
|
|
|
offset=offset)
|
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
return params
|
|
|
|
|
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
# get response from search-request
|
2013-10-14 21:09:13 +00:00
|
|
|
def response(resp):
|
2013-10-15 17:11:43 +00:00
|
|
|
results = []
|
2014-03-21 15:33:17 +00:00
|
|
|
|
|
|
|
doc = fromstring(resp.text)
|
|
|
|
|
2014-09-02 16:12:42 +00:00
|
|
|
# parse results
|
2014-03-21 15:33:17 +00:00
|
|
|
for r in doc.xpath(result_xpath):
|
2014-03-21 17:17:13 +00:00
|
|
|
try:
|
|
|
|
res_url = r.xpath(url_xpath)[-1]
|
|
|
|
except:
|
|
|
|
continue
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2014-03-21 15:33:17 +00:00
|
|
|
if not res_url:
|
2013-10-15 17:11:43 +00:00
|
|
|
continue
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2015-02-02 16:55:39 +00:00
|
|
|
title = extract_text(r.xpath(title_xpath))
|
|
|
|
content = extract_text(r.xpath(content_xpath))
|
2014-09-02 15:14:57 +00:00
|
|
|
|
|
|
|
# append result
|
2014-03-21 15:33:17 +00:00
|
|
|
results.append({'title': title,
|
|
|
|
'content': content,
|
2015-09-07 21:13:04 +00:00
|
|
|
'url': res_url})
|
2014-03-21 15:33:17 +00:00
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
# return results
|
2013-10-15 17:11:43 +00:00
|
|
|
return results
|