From cb05a1be5033f231a14af8cd7e63f7c6d2fe9d14 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Fri, 10 Jan 2014 11:10:00 +0100 Subject: New crypter: TnyCz Merged #466 (cherry picked from commit 6deb27fdf190191160eab39c682d3acf472edb97) --- module/plugins/crypter/TnyCz.py | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 module/plugins/crypter/TnyCz.py diff --git a/module/plugins/crypter/TnyCz.py b/module/plugins/crypter/TnyCz.py new file mode 100644 index 000000000..d393507c7 --- /dev/null +++ b/module/plugins/crypter/TnyCz.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- + +""" + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see . + + @author: Walter Purcaro +""" + +from module.plugins.internal.SimpleCrypter import SimpleCrypter + +import re + + +class TnyCz(SimpleCrypter): + __name__ = "TnyCz" + __type__ = "crypter" + __pattern__ = r"http://(?:www\.)?tny\.cz/\w+" + __version__ = "0.01" + __description__ = """Tny.cz Plugin""" + __author_name__ = ("Walter Purcaro") + __author_mail__ = ("vuolter@gmail.com") + + TITLE_PATTERN = r'(?P<title>.+) - .+' + + def getLinks(self): + m = re.search(r'', self.html) + return re.findall(".+", self.load(m.group(1), decode=True)) if m else None -- cgit v1.2.3