From acc46fc3497a66a427b795b4a22c6e71d69185a1 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sat, 13 Dec 2014 15:56:57 +0100 Subject: Update --- pyload/plugins/crypter/Go4UpCom.py | 49 -------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 pyload/plugins/crypter/Go4UpCom.py (limited to 'pyload/plugins/crypter/Go4UpCom.py') diff --git a/pyload/plugins/crypter/Go4UpCom.py b/pyload/plugins/crypter/Go4UpCom.py deleted file mode 100644 index 44c25c88a..000000000 --- a/pyload/plugins/crypter/Go4UpCom.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- - -import re - -from urlparse import urljoin - -from pyload.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'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 Exception: - continue - - return links - - -getInfo = create_getInfo(Go4UpCom) -- cgit v1.2.3