diff options
author | 2016-06-15 00:16:11 +0200 | |
---|---|---|
committer | 2016-06-15 00:16:11 +0200 | |
commit | 2e8df8e40ae14517d28b31c044291c8a57987a4f (patch) | |
tree | 8f2e7578ccccb4ffe870dd818962b1d877c7cfa7 /module/plugins/accounts/UploadableCh.py | |
parent | [SimpleCrypter] fix #2499 (diff) | |
download | pyload-2e8df8e40ae14517d28b31c044291c8a57987a4f.tar.xz |
[BigfileTo] fix #2507
Diffstat (limited to 'module/plugins/accounts/UploadableCh.py')
-rw-r--r-- | module/plugins/accounts/UploadableCh.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/module/plugins/accounts/UploadableCh.py b/module/plugins/accounts/UploadableCh.py deleted file mode 100644 index a8f17ad6d..000000000 --- a/module/plugins/accounts/UploadableCh.py +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- - -from module.plugins.internal.Account import Account - - -class UploadableCh(Account): - __name__ = "UploadableCh" - __type__ = "account" - __version__ = "0.09" - __status__ = "testing" - - __description__ = """Uploadable.ch account plugin""" - __license__ = "GPLv3" - __authors__ = [("Sasch", "gsasch@gmail.com")] - - - def grab_info(self, user, password, data): - html = self.load("http://www.uploadable.ch/login.php") - - premium = '<a href="/logout.php"' in html - trafficleft = -1 if premium else None - - return {'validuntil': None, 'trafficleft': trafficleft, 'premium': premium} #@TODO: validuntil - - - def signin(self, user, password, data): - html = self.load("http://www.uploadable.ch/login.php", - post={'userName' : user, - 'userPassword' : password, - 'autoLogin' : "1", - 'action__login': "normalLogin"}) - - if "Login failed" in html: - self.fail_login() |