diff options
Diffstat (limited to 'pyload/plugins/account/Ftp.py')
-rw-r--r-- | pyload/plugins/account/Ftp.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pyload/plugins/account/Ftp.py b/pyload/plugins/account/Ftp.py new file mode 100644 index 000000000..d439512ce --- /dev/null +++ b/pyload/plugins/account/Ftp.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from pyload.plugins.internal.Account import Account + + +class Ftp(Account): + __name__ = "Ftp" + __type__ = "account" + __version__ = "0.01" + + __description__ = """Ftp dummy account plugin""" + __license__ = "GPLv3" + __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] + + + login_timeout = -1 #: Unlimited + info_threshold = -1 #: Unlimited |