commit: 996c96fffff328497c2ba305c61e064256c84188
parent 23b9095cbf2d31a1495ee3d63a55bd81548cd367
Author: Thomas Pointhuber <thomas.pointhuber@gmx.at>
Date: Mon, 24 Aug 2015 11:31:30 +0200
[fix] block ixquick search url's
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/searx/engines/startpage.py b/searx/engines/startpage.py
@@ -73,6 +73,10 @@ def response(resp):
if re.match("^http(s|)://(www\.)?startpage\.com/do/search\?.*$", url):
continue
+ # block ixquick search url's
+ if re.match("^http(s|)://(www\.)?ixquick\.com/do/search\?.*$", url):
+ continue
+
title = escape(extract_text(link))
if result.xpath('./p[@class="desc"]'):