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")