X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=phd.py;h=3c2e0dd038bb987cb6187748dc385fce67aeda07;hb=5bfe6ea88d9f0579f7d4ed471c63c342c7b6fc1b;hp=3e275e6f21c8a3fe5490a032cf5208b8e1abf7e8;hpb=7a19a23b5facfac2066cebaf7b34c270b14d2dbe;p=phdru.name%2Fphdru.name.git diff --git a/phd.py b/phd.py index 3e275e6..3c2e0dd 100644 --- a/phd.py +++ b/phd.py @@ -123,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)