[mod] purge local html_to_text

This commit is contained in:
Adam Tauber 2015-01-01 14:14:56 +01:00
parent 1408859b4b
commit 2181c4384e
1 changed files with 1 additions and 5 deletions

View File

@ -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}))