X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=phd.py;h=3e275e6f21c8a3fe5490a032cf5208b8e1abf7e8;hb=c1a994b2cce5060f46bb89094a49017a4dd8929a;hp=7d9cf13d7c895dd6c1e628ecadaaa355f7b7d587;hpb=4e1b23994ee310c40da786faedf49c8fa4b44d31;p=phdru.name%2Fphdru.name.git diff --git a/phd.py b/phd.py index 7d9cf13..3e275e6 100644 --- a/phd.py +++ b/phd.py @@ -101,16 +101,19 @@ class phd(Template): 800x600, 1024x800""" % {"img_name": img_name} def wikipedia(self, query): - return "http://en.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') + return "https://en.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') def wikipedia_ru(self, query): - return "http://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') + 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")