diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-03-02 15:08:53 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-03-02 15:08:53 +0100 |
commit | fe1badfa03fa253f9ecb2a5a9d0048aa298ed3eb (patch) | |
tree | ce217fd613164c10b0e638ace1ca1fe3e6ea924f /module | |
parent | Merge branch 'stable' of github.com:pyload/pyload into stable (diff) | |
parent | New SpeedLoadOrg account plugin (diff) | |
download | pyload-fe1badfa03fa253f9ecb2a5a9d0048aa298ed3eb.tar.xz |
Merge pull request #28 from stickell/patch-1
New SpeedLoadOrg account plugin
Diffstat (limited to 'module')
-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/" |