]> git.phdru.name Git - phdru.name/phdru.name.git/blobdiff - phd.py
Add scripts to find html files with or w/o templates
[phdru.name/phdru.name.git] / phd.py
diff --git a/phd.py b/phd.py
index 1e884cfd9ebd1c2a89aabd272cf95f60a2722e95..3c2e0dd038bb987cb6187748dc385fce67aeda07 100644 (file)
--- 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")
 
@@ -120,5 +123,8 @@ class phd(Template):
    def google_ru(self, query):
       return "http://www.google.ru/search?hl=ru&ie=utf-8&oe=utf-8&q=%s" % quote_string(query)
 
+   def lurkmoar(self, query):
+       return "https://lurkmore.to/%s" % quote_string(query.replace(' ', '_'), ext_safe=',')
+
 def quote_string(s, to_encoding="utf-8", ext_safe=''):
    return urllib.quote(unicode(s, "utf-8").encode(to_encoding), '/' + ext_safe)