diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-02-28 21:44:22 +0100 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-02-28 21:44:22 +0100 |
commit | b03d3c3fb87a7d95489bd35391287488bfdc4011 (patch) | |
tree | 915f0ca7870231df94e7e085a72c005af4eb9c59 | |
parent | [misc] parse_html_form(): ignore comments (2) (diff) | |
download | pyload-b03d3c3fb87a7d95489bd35391287488bfdc4011.tar.xz |
[FilejokerNet] Update
-rw-r--r-- | module/plugins/hoster/FilejokerNet.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/FilejokerNet.py b/module/plugins/hoster/FilejokerNet.py index 2d851c59f..e58ecfabf 100644 --- a/module/plugins/hoster/FilejokerNet.py +++ b/module/plugins/hoster/FilejokerNet.py @@ -8,7 +8,7 @@ from module.plugins.internal.XFSHoster import XFSHoster class FilejokerNet(XFSHoster): __name__ = "FilejokerNet" __type__ = "hoster" - __version__ = "0.01" + __version__ = "0.02" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?filejoker\.net/\w{12}' @@ -27,6 +27,7 @@ class FilejokerNet(XFSHoster): WAIT_PATTERN = r'Please [Ww]ait (?:<span id="count" class="alert-success">)?([\w ]+?)(?:</span> seconds</p>| until the next download)' RECAPTCHA_PATTERN = r'<div id="recaptcha_image" class="pic"></div>' + ERROR_PATTERN = r'Wrong Captcha' INFO_PATTERN = r'<div class="name-size">(?P<N>.+?) <small>\((?P<S>[\d.,]+) (?P<U>[\w^_]+)\)</small></div>' SIZE_REPLACEMENTS = [('Kb','KB'), ('Mb','MB'), ('Gb','GB')] |