summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/PandaPlaNet.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-07 20:15:39 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-07 20:15:39 +0200
commit51e279d9414a2e69133bbd5c51ac228e758f3cd9 (patch)
tree034a381dc1fa2f5dffe6b22ad24a8aeace23c726 /pyload/plugins/hoster/PandaPlaNet.py
parentMerge branch 'stable' into 0.4.10 (diff)
downloadpyload-51e279d9414a2e69133bbd5c51ac228e758f3cd9.tar.xz
Fix previous merging
Diffstat (limited to 'pyload/plugins/hoster/PandaPlaNet.py')
-rw-r--r--pyload/plugins/hoster/PandaPlaNet.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/pyload/plugins/hoster/PandaPlaNet.py b/pyload/plugins/hoster/PandaPlaNet.py
new file mode 100644
index 000000000..fed55d278
--- /dev/null
+++ b/pyload/plugins/hoster/PandaPlaNet.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+
+from pyload.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"""
+ __authors__ = [("t4skforce", "t4skforce1337[AT]gmail[DOT]com")]
+
+
+getInfo = create_getInfo(PandaPlaNet)