diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-14 18:42:34 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-14 18:42:34 +0100 |
commit | e111c8c33f84415eca6f034ed85e882eb71a7a67 (patch) | |
tree | 3a62bebea658bad1ff17d347c622f7eaa5e40945 /module | |
parent | Merged in z00nx0/pyload/LetitbitNetFolder (pull request #48: Added LetitbitNe... (diff) | |
parent | Added BSecureUploadEu plugin (diff) | |
download | pyload-e111c8c33f84415eca6f034ed85e882eb71a7a67.tar.xz |
Merged in z00nx0/pyload/SecureUploadEu (pull request #47: Added SecureUploadEu plugin)
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/SecureUploadEu.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/hoster/SecureUploadEu.py b/module/plugins/hoster/SecureUploadEu.py new file mode 100644 index 000000000..b9a900d96 --- /dev/null +++ b/module/plugins/hoster/SecureUploadEu.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo + + +class SecureUploadEu(XFileSharingPro): + __name__ = "SecureUploadEu" + __type__ = "hoster" + __pattern__ = r"http://(www\.)?secureupload\.eu/(\w){12}(/\w+)" + __version__ = "0.01" + __description__ = """SecureUpload.eu hoster plugin""" + __author_name__ = ("z00nx") + __author_mail__ = ("z00nx0@gmail.com") + + HOSTER_NAME = "secureupload.eu" + FILE_INFO_PATTERN = '<h3>Downloading (?P<N>[^<]+) \((?P<S>[^<]+)\)</h3>' + FILE_OFFLINE_PATTERN = 'The file was removed|File Not Found' + +getInfo = create_getInfo(SecureUploadEu) |