diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-07 13:32:40 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-07 13:32:40 +0200 |
commit | b9445297f5ce02f4ecbec775c5eb1710493ab823 (patch) | |
tree | 34b24523ce7d0a85a6e2ab4f6d1bee325e580b28 /module/plugins/accounts/SecureUploadEu.py | |
parent | Code cosmetics on some account plugins (diff) | |
download | pyload-b9445297f5ce02f4ecbec775c5eb1710493ab823.tar.xz |
Bunch of account plugins XFSPAccount based
Diffstat (limited to 'module/plugins/accounts/SecureUploadEu.py')
-rw-r--r-- | module/plugins/accounts/SecureUploadEu.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/module/plugins/accounts/SecureUploadEu.py b/module/plugins/accounts/SecureUploadEu.py new file mode 100644 index 000000000..fe5af23ec --- /dev/null +++ b/module/plugins/accounts/SecureUploadEu.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPAccount import XFSPAccount + + +class SecureUploadEu(XFSPAccount): + __name__ = "SecureUploadEu" + __type__ = "account" + __version__ = "0.01" + + __description__ = """SecureUpload.eu account plugin""" + __author_name__ = "Walter Purcaro" + __author_mail__ = "vuolter@gmail.com" + + + HOSTER_URL = "http://www.secureupload.eu/" |