diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-07 16:03:18 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-07 16:03:18 +0100 |
commit | 0331df435b912d8abfc012d15fd8be9ae90ad78d (patch) | |
tree | f4e44f5ea7da19d33235ba311ade9f1133c30a97 /module/plugins/crypter | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-0331df435b912d8abfc012d15fd8be9ae90ad78d.tar.xz |
Fix previous merge
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/Go4UpCom.py | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/module/plugins/crypter/Go4UpCom.py b/module/plugins/crypter/Go4UpCom.py deleted file mode 100644 index 102bc32b5..000000000 --- a/module/plugins/crypter/Go4UpCom.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- - -import re - -from urlparse import urljoin - -from module.plugins.internal.SimpleCrypter import SimpleCrypter, create_getInfo - - -class Go4UpCom(SimpleCrypter): - __name__ = "Go4UpCom" - __type__ = "crypter" - __version__ = "0.11" - - __pattern__ = r'http://go4up\.com/(dl/\w{12}|rd/\w{12}/\d+)' - - __description__ = """Go4Up.com decrypter plugin""" - __license__ = "GPLv3" - __authors__ = [("rlindner81", "rlindner81@gmail.com"), - ("Walter Purcaro", "vuolter@gmail.com")] - - - LINK_PATTERN = r'(http://go4up\.com/rd/.+?)<' - - NAME_PATTERN = r'<title>Download (.+?)<' - - OFFLINE_PATTERN = r'>\s*(404 Page Not Found|File not Found|Mirror does not exist)' - - - def getLinks(self - links = [] - - m = re.search(r'(/download/gethosts/.+?)"') - if m: - self.html = self.load(urljoin("http://go4up.com/", m.group(1))) - pages = [self.load(url) for url in re.findall(self.LINK_PATTERN, self.html)] - else: - pages = [self.html] - - for html in pages: - try: - links.append(re.search(r'<b><a href="(.+?)"', html).group(1)) - except: - continue - - return links - - -getInfo = create_getInfo(Go4UpCom) |