# -*- coding: utf-8 -*- from pyload.plugins.internal.SimpleCrypter import SimpleCrypter import re class TnyCz(SimpleCrypter): __name__ = "TnyCz" __type__ = "crypter" __version__ = "0.02" __pattern__ = r'http://(?:www\.)?tny\.cz/\w+' __description__ = """Tny.cz decrypter plugin""" __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] TITLE_PATTERN = r'(.+) - .+' def getLinks(self): m = re.search(r'', self.html) return re.findall(".+", self.load(m.group(1), decode=True)) if m else None