summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/Premium4Me.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-24 14:24:51 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-24 14:24:51 +0200
commit669b1e0ec048e1ed8aeb842b2570376e9ad96863 (patch)
tree4703826f0c65f84ec5e9f1bac2d9dbd50e3376fa /module/plugins/hooks/Premium4Me.py
parentDebridItaliaCom: two more hosters supported (diff)
downloadpyload-669b1e0ec048e1ed8aeb842b2570376e9ad96863.tar.xz
Fixed PEP 8 violations in Hooks
Diffstat (limited to 'module/plugins/hooks/Premium4Me.py')
-rw-r--r--module/plugins/hooks/Premium4Me.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/module/plugins/hooks/Premium4Me.py b/module/plugins/hooks/Premium4Me.py
index edbdfbdb9..4bcc79b25 100644
--- a/module/plugins/hooks/Premium4Me.py
+++ b/module/plugins/hooks/Premium4Me.py
@@ -3,25 +3,24 @@
from module.network.RequestFactory import getURL
from module.plugins.internal.MultiHoster import MultiHoster
+
class Premium4Me(MultiHoster):
__name__ = "Premium4Me"
__version__ = "0.03"
__type__ = "hook"
__config__ = [("activated", "bool", "Activated", "False"),
- ("hosterListMode", "all;listed;unlisted", "Use for downloads from supported hosters:", "all"),
- ("hosterList", "str", "Hoster list (comma separated)", "")]
+ ("hosterListMode", "all;listed;unlisted", "Use for downloads from supported hosters:", "all"),
+ ("hosterList", "str", "Hoster list (comma separated)", "")]
__description__ = """Premium.to hook plugin"""
__author_name__ = ("RaNaN", "zoidberg", "stickell")
__author_mail__ = ("RaNaN@pyload.org", "zoidberg@mujmail.cz", "l.stickell@yahoo.it")
def getHoster(self):
-
page = getURL("http://premium.to/api/hosters.php?authcode=%s" % self.account.authcode)
return [x.strip() for x in page.replace("\"", "").split(";")]
def coreReady(self):
-
self.account = self.core.accountManager.getAccountPlugin("Premium4Me")
user = self.account.selectAccount()[0]
@@ -30,4 +29,4 @@ class Premium4Me(MultiHoster):
self.logError(_("Please add your premium.to account first and restart pyLoad"))
return
- return MultiHoster.coreReady(self) \ No newline at end of file
+ return MultiHoster.coreReady(self)