diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-03 19:56:27 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-03 19:56:27 +0200 |
commit | cc105b7dbc363d9786594c1e884f1836eb22e999 (patch) | |
tree | a52491dc5d35c448b86b07d099a6aca62bf2ac3c /pyload/plugins/base/Hoster.py | |
parent | Fix previous merge commit (diff) | |
download | pyload-cc105b7dbc363d9786594c1e884f1836eb22e999.tar.xz |
New base plugins
Diffstat (limited to 'pyload/plugins/base/Hoster.py')
-rw-r--r-- | pyload/plugins/base/Hoster.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pyload/plugins/base/Hoster.py b/pyload/plugins/base/Hoster.py new file mode 100644 index 000000000..23369deec --- /dev/null +++ b/pyload/plugins/base/Hoster.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +from pyload.plugins.Plugin import Plugin + + +def getInfo(self): + #result = [ .. (name, size, status, url) .. ] + return + + +class Hoster(Plugin): + __name__ = "Hoster" + __type__ = "hoster" + __version__ = "0.1" + + __pattern__ = None + + __description__ = """Base hoster plugin""" + __author_name__ = "mkaay" + __author_mail__ = "mkaay@mkaay.de" |