logo

searx

My custom branche(s) on searx, a meta-search engine
commit: 6b6007fc78f47099d84099c6d6c23e2cd213b82f
parent: 75c58fd008e3d10dff788d133904a7904dd4635f
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Sun, 11 Dec 2016 14:27:39 +0100

Merge pull request #782 from cy8aer/yacyhtmltag

htmlize yacy contents

Diffstat:

Msearx/engines/yacy.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/searx/engines/yacy.py b/searx/engines/yacy.py @@ -16,6 +16,8 @@ from json import loads from urllib import urlencode from dateutil import parser +from searx.utils import html_to_text + # engine dependent config categories = ['general', 'images'] # TODO , 'music', 'videos', 'files' paging = True @@ -88,7 +90,7 @@ def response(resp): # append result results.append({'url': result['link'], 'title': result['title'], - 'content': result['description'], + 'content': html_to_text(result['description']), 'publishedDate': publishedDate}) # TODO parse video, audio and file results