summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/DDLMusicOrg.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-21 15:03:21 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-21 15:03:21 +0200
commit4b61d36bf18931df0a9720047b3619ce245f8a1b (patch)
treefa6214ca6c85eb547dfe7de1ec7502ff3ce71793 /module/plugins/crypter/DDLMusicOrg.py
parentNormalize line endings to avoid line endings merge conflicts (diff)
downloadpyload-4b61d36bf18931df0a9720047b3619ce245f8a1b.tar.xz
Fixed PEP 8 violations in Crypters
Diffstat (limited to 'module/plugins/crypter/DDLMusicOrg.py')
-rw-r--r--module/plugins/crypter/DDLMusicOrg.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/module/plugins/crypter/DDLMusicOrg.py b/module/plugins/crypter/DDLMusicOrg.py
index f7cc996d0..822addca1 100644
--- a/module/plugins/crypter/DDLMusicOrg.py
+++ b/module/plugins/crypter/DDLMusicOrg.py
@@ -6,6 +6,7 @@ from time import sleep
from module.plugins.Crypter import Crypter
+
class DDLMusicOrg(Crypter):
__name__ = "DDLMusicOrg"
__type__ = "container"
@@ -17,24 +18,26 @@ class DDLMusicOrg(Crypter):
def setup(self):
self.multiDL = False
-
+
def decrypt(self, pyfile):
html = self.req.load(self.pyfile.url, cookies=True)
-
+
if re.search(r"Wer dies nicht rechnen kann", html) is not None:
self.offline()
-
+
math = re.search(r"(\d+) ([\+-]) (\d+) =\s+<inp", self.html)
id = re.search(r"name=\"id\" value=\"(\d+)\"", self.html).group(1)
linknr = re.search(r"name=\"linknr\" value=\"(\d+)\"", self.html).group(1)
-
+
solve = ""
if math.group(2) == "+":
solve = int(math.group(1)) + int(math.group(3))
else:
solve = int(math.group(1)) - int(math.group(3))
sleep(3)
- htmlwithlink = self.req.load(self.pyfile.url, cookies=True, post={"calc%s" % linknr:solve, "send%s" % linknr:"Send", "id":id, "linknr":linknr})
+ htmlwithlink = self.req.load(self.pyfile.url, cookies=True,
+ post={"calc%s" % linknr: solve, "send%s" % linknr: "Send", "id": id,
+ "linknr": linknr})
m = re.search(r"<form id=\"ff\" action=\"(.*?)\" method=\"post\">", htmlwithlink)
if m:
self.packages.append((self.pyfile.package().name, [m.group(1)], self.pyfile.package().folder))