diff options
author | 2014-09-08 00:29:57 +0200 | |
---|---|---|
committer | 2014-09-14 11:02:23 +0200 | |
commit | 68d662e689cd42687341c550fb6ebb74e6968d21 (patch) | |
tree | 486cef41bd928b8db704894233b2cef94a6e346f /module/plugins/crypter/FreetexthostCom.py | |
parent | save_join -> safe_join & save_path -> safe_filename (diff) | |
download | pyload-68d662e689cd42687341c550fb6ebb74e6968d21.tar.xz |
module -> pyload
Diffstat (limited to 'module/plugins/crypter/FreetexthostCom.py')
-rw-r--r-- | module/plugins/crypter/FreetexthostCom.py | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/module/plugins/crypter/FreetexthostCom.py b/module/plugins/crypter/FreetexthostCom.py deleted file mode 100644 index bd8a90ce5..000000000 --- a/module/plugins/crypter/FreetexthostCom.py +++ /dev/null @@ -1,25 +0,0 @@ -# -*- coding: utf-8 -*- - -import re - -from module.plugins.internal.SimpleCrypter import SimpleCrypter - - -class FreetexthostCom(SimpleCrypter): - __name__ = "FreetexthostCom" - __type__ = "crypter" - __version__ = "0.01" - - __pattern__ = r'http://(?:www\.)?freetexthost\.com/\w+' - - __description__ = """Freetexthost.com decrypter plugin""" - __author_name__ = "stickell" - __author_mail__ = "l.stickell@yahoo.it" - - - def getLinks(self): - m = re.search(r'<div id="contentsinner">\s*(.+)<div class="viewcount">', self.html, re.DOTALL) - if m is None: - self.fail('Unable to extract links | Plugin may be out-of-date') - links = m.group(1) - return links.strip().split("<br />\r\n") |