summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UploadkingCom.py
diff options
context:
space:
mode:
authorGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-10-12 23:53:45 +0200
committerGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-10-12 23:53:45 +0200
commitde034056468bb5cea26351be1d76f01fd2826395 (patch)
tree7b8ce13d742c1eeb6cb81e3fcfe43a55ed50a53e /module/plugins/hoster/UploadkingCom.py
parentbetter updatemanager (diff)
downloadpyload-de034056468bb5cea26351be1d76f01fd2826395.tar.xz
Cleanup.
Diffstat (limited to 'module/plugins/hoster/UploadkingCom.py')
-rw-r--r--module/plugins/hoster/UploadkingCom.py44
1 files changed, 0 insertions, 44 deletions
diff --git a/module/plugins/hoster/UploadkingCom.py b/module/plugins/hoster/UploadkingCom.py
deleted file mode 100644
index be2d6c3bd..000000000
--- a/module/plugins/hoster/UploadkingCom.py
+++ /dev/null
@@ -1,44 +0,0 @@
-# -*- 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 <http://www.gnu.org/licenses/>.
-
- @author: zoidberg
-"""
-
-import re
-from module.plugins.internal.DeadHoster import DeadHoster as SimpleHoster, create_getInfo
-#from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
-
-class UploadkingCom(SimpleHoster):
- __name__ = "UploadkingCom"
- __type__ = "hoster"
- __pattern__ = r"http://(?:www\.)?uploadking\.com/\w{10}"
- __version__ = "0.14"
- __description__ = """UploadKing.com plugin - free only"""
- __author_name__ = ("zoidberg")
- __author_mail__ = ("zoidberg@mujmail.cz")
-
- FILE_NAME_PATTERN = r'<font style="font-size:\d*px;">File(?:name)?:\s*<(?:b|/font><font[^>]*)>(?P<N>[^<]+)'
- FILE_SIZE_PATTERN = r'<font style="font-size:\d*px;">(?:Files|S)ize:\s*<(?:b|/font><font[^>]*)>(?P<S>[0-9.]+) (?P<U>[kKMG])i?B'
- FILE_OFFLINE_PATTERN = r'<center><font[^>]*>Unfortunately, this file is unavailable</font></center>'
- FILE_URL_PATTERN = r'id="dlbutton"><a href="([^"]+)"'
-
- def handleFree(self):
- found = re.search(self.FILE_URL_PATTERN, self.html)
- if not found: self.fail("Download URL not found")
- url = found.group(1)
- self.logDebug("DOWNLOAD URL: " + url)
- self.download(url)
-
-create_getInfo(UploadkingCom) \ No newline at end of file