diff options
author | Stefano <l.stickell@yahoo.it> | 2013-03-02 14:49:25 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-03-02 14:49:25 +0100 |
commit | bae36574ec65a744fbd2f567361a452eb629ab20 (patch) | |
tree | ce217fd613164c10b0e638ace1ca1fe3e6ea924f /module/plugins/accounts | |
parent | Merge branch 'stable' of github.com:pyload/pyload into stable (diff) | |
download | pyload-bae36574ec65a744fbd2f567361a452eb629ab20.tar.xz |
New SpeedLoadOrg account plugin
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/SpeedLoadOrg.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/module/plugins/accounts/SpeedLoadOrg.py b/module/plugins/accounts/SpeedLoadOrg.py new file mode 100644 index 000000000..4eb2b52de --- /dev/null +++ b/module/plugins/accounts/SpeedLoadOrg.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +from module.plugins.internal.XFSPAccount import XFSPAccount + +class SpeedLoadOrg(XFSPAccount): + __name__ = "SpeedLoadOrg" + __version__ = "0.01" + __type__ = "account" + __description__ = """SpeedLoadOrg account plugin""" + __author_name__ = ("stickell") + __author_mail__ = ("l.stickell@yahoo.it") + + MAIN_PAGE = "http://speedload.org/" |