summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/WebshareCz.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-07-22 20:50:34 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-07-22 20:50:34 +0200
commit2edeee0532ec6d6b4b26fd045a5971f67ca455da (patch)
tree8d656afc9c18f7dba7c05d6635f898fdf58d66d6 /module/plugins/hoster/WebshareCz.py
parentFixed PEP 8 violations in Crypters (diff)
downloadpyload-2edeee0532ec6d6b4b26fd045a5971f67ca455da.tar.xz
Fixed PEP 8 violations in Hosters
Diffstat (limited to 'module/plugins/hoster/WebshareCz.py')
-rw-r--r--module/plugins/hoster/WebshareCz.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/module/plugins/hoster/WebshareCz.py b/module/plugins/hoster/WebshareCz.py
index 195e65a93..10a8078c5 100644
--- a/module/plugins/hoster/WebshareCz.py
+++ b/module/plugins/hoster/WebshareCz.py
@@ -18,7 +18,7 @@
import re
from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
-from module.network.HTTPRequest import BadHeader
+
class WebshareCz(SimpleHoster):
__name__ = "WebshareCz"
@@ -31,18 +31,19 @@ class WebshareCz(SimpleHoster):
FILE_NAME_PATTERN = r'<h3>Stahujete soubor: </h3>\s*<div class="textbox">(?P<N>[^<]+)</div>'
FILE_SIZE_PATTERN = r'<h3>Velikost souboru je: </h3>\s*<div class="textbox">(?P<S>[^<]+)</div>'
FILE_OFFLINE_PATTERN = r'<h3>Soubor ".*?" nebyl nalezen.</h3>'
-
+
DOWNLOAD_LINK_PATTERN = r'id="download_link" href="(?P<url>.*?)"'
-
+
def setup(self):
self.multiDL = True
def handleFree(self):
url_a = re.search(r"(var l.*)", self.html).group(1)
- url_b = re.search(r"(var keyStr.*)", self.html).group(1)
+ url_b = re.search(r"(var keyStr.*)", self.html).group(1)
url = self.js.eval("%s\n%s\ndec(l)" % (url_a, url_b))
-
+
self.logDebug('Download link: ' + url)
- self.download(url)
+ self.download(url)
+
-getInfo = create_getInfo(WebshareCz) \ No newline at end of file
+getInfo = create_getInfo(WebshareCz)