From 7a19a23b5facfac2066cebaf7b34c270b14d2dbe Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 31 May 2015 23:57:45 +0300 Subject: [PATCH] Use StartPage as the default search engine --- phd.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/phd.py b/phd.py index 1e884cf..3e275e6 100644 --- a/phd.py +++ b/phd.py @@ -106,11 +106,14 @@ class phd(Template): def wikipedia_ru(self, query): return "https://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') + def startpage(self, query): + return "https://startpage.com/do/search?q=%s" % quote_string(query) + + search = startpage + def nigma(self, query): return "http://www.nigma.ru/index.php?s=%s" % quote_string(query) - search = nigma - def yandex(self, query): return "http://www.yandex.ru/yandsearch?text=%s&rpt=rad" % quote_string(query, "cp1251") -- 2.39.2