Browse Source

[mod] purge local html_to_text

Adam Tauber 10 years ago
parent
commit
2181c4384e
1 changed files with 1 additions and 5 deletions
  1. 1 5
      searx/engines/duckduckgo_definitions.py

+ 1 - 5
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}))