]> git.phdru.name Git - phdru.name/phdru.name.git/blobdiff - phd_pp.py
Google.ru and Yandex search.
[phdru.name/phdru.name.git] / phd_pp.py
index 1352b18a61b78d9c3a49faa3a68e5bf491a48406..603211a9918a6c1fb5300f0cf5a093a8426bb147 100644 (file)
--- a/phd_pp.py
+++ b/phd_pp.py
@@ -1,4 +1,4 @@
-import os, re, time
+import os, re, time, urllib
 from Cheetah.Template import Template
 
 
@@ -91,3 +91,9 @@ class phd_pp(Template):
       return """\
 <img src="%(img_name)s-thumbnail.jpg" alt="%(img_name)s-thumbnail.jpg" /><br />
 <a href="%(img_name)s-800x600.jpg">800x600</a>, <a href="%(img_name)s-1024x800.jpg">1024x800</a>""" % {"img_name": img_name}
+
+   def google_ru(self, query):
+      return "http://www.google.ru/search?hl=ru&ie=utf-8&oe=utf-8&q=%s" % urllib.quote_plus(unicode(query, "koi8-r").encode("utf-8"))
+
+   def yandex(self, query):
+      return "http://www.yandex.ru/yandsearch?text=%s&rpt=rad" % urllib.quote_plus(unicode(query, "koi8-r").encode("cp1251"))