diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 13:23:52 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-07-29 13:23:52 +0200 |
commit | c7e2c7771fe6acd64f5ef461bf121fa77ad0c931 (patch) | |
tree | a4589bfe36822c1b9f9286342cffb88036f1b52f /module/plugins/accounts | |
parent | Fix https://github.com/pyload/pyload/issues/1594 (2) (diff) | |
download | pyload-c7e2c7771fe6acd64f5ef461bf121fa77ad0c931.tar.xz |
New plugins: AniStreamCom and CloudsixMe
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/AniStreamCom.py | 17 | ||||
-rw-r--r-- | module/plugins/accounts/CloudsixMe.py | 17 |
2 files changed, 34 insertions, 0 deletions
diff --git a/module/plugins/accounts/AniStreamCom.py b/module/plugins/accounts/AniStreamCom.py new file mode 100644 index 000000000..53ca1d5b8 --- /dev/null +++ b/module/plugins/accounts/AniStreamCom.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSAccount import XFSAccount + + +class AniStreamCom(XFSAccount): + __name__ = "AniStreamCom" + __type__ = "account" + __version__ = "0.01" + __status__ = "testing" + + __description__ = """Ani-Stream.com account plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + HOSTER_DOMAIN = "ani-stream.com" diff --git a/module/plugins/accounts/CloudsixMe.py b/module/plugins/accounts/CloudsixMe.py new file mode 100644 index 000000000..973e37044 --- /dev/null +++ b/module/plugins/accounts/CloudsixMe.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSAccount import XFSAccount + + +class CloudsixMe(XFSAccount): + __name__ = "CloudsixMe" + __type__ = "account" + __version__ = "0.01" + __status__ = "testing" + + __description__ = """Cloudsix.me account plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + HOSTER_DOMAIN = "cloudsix.me" |