commit: 2181c4384ed4d41c795799a345974269327bf641
parent: 1408859b4b0ca9efc590ca0e112c6bc0cb984e2c
Author: Adam Tauber <asciimoo@gmail.com>
Date: Thu, 1 Jan 2015 14:14:56 +0100
[mod] purge local html_to_text
Diffstat:
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/searx/engines/duckduckgo_definitions.py b/searx/engines/duckduckgo_definitions.py
@@ -1,6 +1,7 @@
import json
from urllib import urlencode
from lxml import html
+from searx.utils import html_to_text
from searx.engines.xpath import extract_text
url = 'https://api.duckduckgo.com/'\
@@ -17,11 +18,6 @@ def result_to_text(url, text, htmlResult):
return text
-def html_to_text(htmlFragment):
- dom = html.fromstring(htmlFragment)
- return extract_text(dom)
-
-
def request(query, params):
# TODO add kl={locale}
params['url'] = url.format(query=urlencode({'q': query}))