diff options
author | Stefano <l.stickell@yahoo.it> | 2014-05-03 22:24:38 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-05-03 22:24:58 +0200 |
commit | bd4ead18e025c6aff3d37b74cacae2731e738aa2 (patch) | |
tree | 3b1bf1dc667c226ae20f4186ebbd26863efa0784 /module/plugins/accounts | |
parent | 1Fichier: premium support (diff) | |
download | pyload-bd4ead18e025c6aff3d37b74cacae2731e738aa2.tar.xz |
File4safe premium
+ XFSPAccount improved
Resolves #431
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/File4safeCom.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/module/plugins/accounts/File4safeCom.py b/module/plugins/accounts/File4safeCom.py new file mode 100644 index 000000000..6a11493d2 --- /dev/null +++ b/module/plugins/accounts/File4safeCom.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPAccount import XFSPAccount + + +class File4safeCom(XFSPAccount): + __name__ = "File4safeCom" + __version__ = "0.01" + __type__ = "account" + __description__ = """File4safe.com account plugin""" + __author_name__ = "stickell" + __author_mail__ = "l.stickell@yahoo.it" + + MAIN_PAGE = "http://file4safe.com/" + + LOGIN_FAIL_PATTERN = r'input_login' + PREMIUM_PATTERN = r'Extend Premium' |