diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-10 01:51:06 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-10 01:51:06 +0100 |
commit | 21446b75ee240f2aee137aa1998ee0184fe47bf4 (patch) | |
tree | 263e4811147ba0c4e2ae043d7a48b332c61b4690 /module/plugins/accounts/RyushareCom.py | |
parent | [PremiumTo] Parse Special Traffic (diff) | |
download | pyload-21446b75ee240f2aee137aa1998ee0184fe47bf4.tar.xz |
[RyushareCom] Update
Diffstat (limited to 'module/plugins/accounts/RyushareCom.py')
-rw-r--r-- | module/plugins/accounts/RyushareCom.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/module/plugins/accounts/RyushareCom.py b/module/plugins/accounts/RyushareCom.py index ca476366b..8c56ff20f 100644 --- a/module/plugins/accounts/RyushareCom.py +++ b/module/plugins/accounts/RyushareCom.py @@ -6,20 +6,11 @@ from module.plugins.internal.XFSAccount import XFSAccount class RyushareCom(XFSAccount): __name__ = "RyushareCom" __type__ = "account" - __version__ = "0.05" + __version__ = "0.06" __description__ = """Ryushare.com account plugin""" __license__ = "GPLv3" - __authors__ = [("zoidberg", "zoidberg@mujmail.cz"), - ("trance4us", None)] + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] HOSTER_DOMAIN = "ryushare.com" - - - def login(self, user, data, req): - req.lastURL = "http://ryushare.com/login.python" - html = req.load("http://ryushare.com/login.python", - post={"login": user, "password": data['password'], "op": "login"}) - if 'Incorrect Login or Password' in html or '>Error<' in html: - self.wrongPassword() |