From e5169110617b44c79b1d9c89ffe6d8c1559d6f50 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 24 Jul 2016 01:48:04 +0300 Subject: [PATCH] Add function lurkmoar() to point URLs to Lurkmore --- phd.py | 3 +++ 1 file changed, 3 insertions(+) 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) -- 2.39.2