logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git
commit: 16c40ffefddd4277a299ef5e8603235ac45de7d9
parent 75c58fd008e3d10dff788d133904a7904dd4635f
Author: Thomas Renard <Thomas.Renard@g3la.de>
Date:   Sun, 11 Dec 2016 14:05:07 +0100

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