summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/SpeedLoadOrg.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-10-11 18:24:06 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-10-11 18:24:06 +0200
commit2e7132ba7e461200e14ea50d2f857622eb69ca98 (patch)
tree9803e8381d683d99e6a5b2eeb1bc8b13f33265dc /module/plugins/hoster/SpeedLoadOrg.py
parentNCryptIn: ability to decrypt single encrypted links. (diff)
downloadpyload-2e7132ba7e461200e14ea50d2f857622eb69ca98.tar.xz
Removed dead plugins.
See #304
Diffstat (limited to 'module/plugins/hoster/SpeedLoadOrg.py')
-rw-r--r--module/plugins/hoster/SpeedLoadOrg.py14
1 files changed, 3 insertions, 11 deletions
diff --git a/module/plugins/hoster/SpeedLoadOrg.py b/module/plugins/hoster/SpeedLoadOrg.py
index 17354864f..5687fae85 100644
--- a/module/plugins/hoster/SpeedLoadOrg.py
+++ b/module/plugins/hoster/SpeedLoadOrg.py
@@ -1,23 +1,15 @@
# -*- coding: utf-8 -*-
-from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo
+from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
-class SpeedLoadOrg(XFileSharingPro):
+class SpeedLoadOrg(DeadHoster):
__name__ = "SpeedLoadOrg"
__type__ = "hoster"
__pattern__ = r"http://(www\.)?speedload\.org/(?P<ID>\w+)"
- __version__ = "1.01"
+ __version__ = "1.02"
__description__ = """Speedload.org hoster plugin"""
__author_name__ = ("stickell")
__author_mail__ = ("l.stickell@yahoo.it")
- FILE_NAME_PATTERN = r'Filename:</b></td><td nowrap>(?P<N>[^<]+)</td></tr>'
- FILE_SIZE_PATTERN = r'Size:</b></td><td>[\w. ]+<small>\((?P<S>\d+) bytes\)</small>'
-
- HOSTER_NAME = "speedload.org"
-
- def handlePremium(self):
- self.download(self.pyfile.url, post=self.getPostParameters())
-
getInfo = create_getInfo(SpeedLoadOrg)