summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/UploadhereCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-10 11:48:55 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-10 11:48:55 +0100
commitf646ac72cebffaaded19d552cc0c3e4f3c8409d1 (patch)
tree2dccf344e74207a87e120b74033048267681c6c5 /module/plugins/hoster/UploadhereCom.py
parent[Plugin] Fix typo (thx clinton-hall) (diff)
downloadpyload-f646ac72cebffaaded19d552cc0c3e4f3c8409d1.tar.xz
Re-add some dead hosters
Diffstat (limited to 'module/plugins/hoster/UploadhereCom.py')
-rw-r--r--module/plugins/hoster/UploadhereCom.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/hoster/UploadhereCom.py b/module/plugins/hoster/UploadhereCom.py
new file mode 100644
index 000000000..8da30be46
--- /dev/null
+++ b/module/plugins/hoster/UploadhereCom.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+
+from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
+
+
+class UploadhereCom(DeadHoster):
+ __name__ = "UploadhereCom"
+ __type__ = "hoster"
+ __version__ = "0.12"
+
+ __pattern__ = r'http://(?:www\.)?uploadhere\.com/\w{10}'
+
+ __description__ = """Uploadhere.com hoster plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
+
+
+getInfo = create_getInfo(UploadhereCom)