diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-01 17:48:52 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-07-01 17:48:52 +0200 |
commit | c0d3b2d6dd9f34dcf53db7047defdcc2c214eb79 (patch) | |
tree | 44a552faaa4d119e1a547a1e74fef54e853a110e /module/plugins/Account.py | |
parent | new api class + documentation (diff) | |
download | pyload-c0d3b2d6dd9f34dcf53db7047defdcc2c214eb79.tar.xz |
sphinx documentation
Diffstat (limited to 'module/plugins/Account.py')
-rw-r--r-- | module/plugins/Account.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/module/plugins/Account.py b/module/plugins/Account.py index 732133d3a..adee39559 100644 --- a/module/plugins/Account.py +++ b/module/plugins/Account.py @@ -28,6 +28,11 @@ class WrongPassword(Exception): class Account(): + """ + Base class for every Account plugin. + Just overwrite `login` and cookies will be stored and account becomes accessible in\ + associated hoster plugin. Plugin should also provide `loadAccountInfo` + """ __name__ = "Account" __version__ = "0.2" __type__ = "account" |