summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/accounts/HellspyCz.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-23 20:22:42 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-23 20:40:59 +0200
commit4a81799278ae003bfbd7897f7bcd1ef46642d953 (patch)
tree59e580fc761103cfacd9190bc9c55a5a01367f47 /pyload/plugins/accounts/HellspyCz.py
parentlittle cleanup, added some tests (diff)
downloadpyload-4a81799278ae003bfbd7897f7bcd1ef46642d953.tar.xz
Fixed PEP 8 violations in Accounts
(cherry picked from commit f5535809bebc6cc343475704832c8fd8674d2d06) Conflicts: pyload/plugins/accounts/AlldebridCom.py pyload/plugins/accounts/Premium4Me.py pyload/plugins/accounts/PremiumizeMe.py pyload/plugins/accounts/RealdebridCom.py
Diffstat (limited to 'pyload/plugins/accounts/HellspyCz.py')
-rw-r--r--pyload/plugins/accounts/HellspyCz.py23
1 files changed, 13 insertions, 10 deletions
diff --git a/pyload/plugins/accounts/HellspyCz.py b/pyload/plugins/accounts/HellspyCz.py
index 5f14a093e..1bb574731 100644
--- a/pyload/plugins/accounts/HellspyCz.py
+++ b/pyload/plugins/accounts/HellspyCz.py
@@ -17,9 +17,10 @@
@author: zoidberg
"""
-from module.plugins.Account import Account
import re
-import string
+
+from module.plugins.Account import Account
+
class HellspyCz(Account):
__name__ = "HellspyCz"
@@ -48,23 +49,25 @@ class HellspyCz(Account):
return {"validuntil": -1, "trafficleft": credits}
- def login(self, user, data,req):
- header = req.load('http://www.hellspy.com/', just_header = True)
- self.phpsessid = re.search(r'PHPSESSID=(\w+)', header).group(1)
+ def login(self, user, data, req):
+ header = req.load('http://www.hellspy.com/', just_header=True)
+ self.phpsessid = re.search(r'PHPSESSID=(\w+)', header).group(1)
self.logDebug("PHPSESSID:" + self.phpsessid)
-
+
html = req.load("http://www.hellspy.com/--%s-" % self.phpsessid)
- html = req.load("http://www.hell-share.com/user/login/?do=apiLoginForm-submit&api_hash=hellspy_iq&user_hash=%s" % self.phpsessid, post={
+ html = req.load(
+ "http://www.hell-share.com/user/login/?do=apiLoginForm-submit&api_hash=hellspy_iq&user_hash=%s" % self.phpsessid,
+ post={
"login": "1",
"password": data["password"],
"username": user,
- "redir_url": 'http://www.hellspy.com/?do=loginBox-login',
+ "redir_url": 'http://www.hellspy.com/?do=loginBox-login',
"permanent_login": "1"
- })
+ })
cj = self.getAccountCookies(user)
cj.setCookie(".hellspy.com", "PHPSESSID", self.phpsessid)
if not re.search(self.CREDIT_LEFT_PATTERN, html):
- self.wrongPassword() \ No newline at end of file
+ self.wrongPassword()