diff options
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/PremiumTo.py (renamed from module/plugins/hooks/Premium4Me.py) | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/module/plugins/hooks/Premium4Me.py b/module/plugins/hooks/PremiumTo.py index 9c6701b06..0572dab34 100644 --- a/module/plugins/hooks/Premium4Me.py +++ b/module/plugins/hooks/PremiumTo.py @@ -4,26 +4,24 @@ from module.network.RequestFactory import getURL from module.plugins.internal.MultiHoster import MultiHoster -class Premium4Me(MultiHoster): - __name__ = "Premium4Me" +class PremiumTo(MultiHoster): + __name__ = "PremiumTo" __type__ = "hook" - __version__ = "0.03" - + __version__ = "0.04" __config__ = [("activated", "bool", "Activated", False), ("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) + page = getURL("http://premium.to/api/hosters.php", + get={'username': self.account.username, 'password': self.account.password}) return [x.strip() for x in page.replace("\"", "").split(";")] def coreReady(self): - self.account = self.core.accountManager.getAccountPlugin("Premium4Me") + self.account = self.core.accountManager.getAccountPlugin("PremiumTo") user = self.account.selectAccount()[0] |