diff options
Diffstat (limited to 'module/plugins/hoster/PandaPlaNet.py')
-rw-r--r-- | module/plugins/hoster/PandaPlaNet.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/hoster/PandaPlaNet.py b/module/plugins/hoster/PandaPlaNet.py new file mode 100644 index 000000000..e464d6990 --- /dev/null +++ b/module/plugins/hoster/PandaPlaNet.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo + + +class PandaPlaNet(DeadHoster): + __name__ = "PandaPlaNet" + __type__ = "hoster" + __version__ = "0.02" + + __pattern__ = r'http://(?:www\.)?pandapla\.net/\w{12}' + + __description__ = """Pandapla.net hoster plugin""" + __author_name__ = "t4skforce" + __author_mail__ = "t4skforce1337[AT]gmail[DOT]com" + + +getInfo = create_getInfo(PandaPlaNet) |