summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/BoltsharingCom.py
diff options
context:
space:
mode:
authorGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-11-19 21:05:07 +0100
committerGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-11-19 21:05:07 +0100
commitb374213e3fe9b6573a4fc4146480724ac2c56f2e (patch)
treeb35a3358f18bf1673545693c3d92c52b0b47efa3 /module/plugins/hoster/BoltsharingCom.py
parentDereferer plugin (diff)
downloadpyload-b374213e3fe9b6573a4fc4146480724ac2c56f2e.tar.xz
Update hellshare.cz, add boltsharing.com
Diffstat (limited to 'module/plugins/hoster/BoltsharingCom.py')
-rw-r--r--module/plugins/hoster/BoltsharingCom.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/module/plugins/hoster/BoltsharingCom.py b/module/plugins/hoster/BoltsharingCom.py
new file mode 100644
index 000000000..2f42c8b23
--- /dev/null
+++ b/module/plugins/hoster/BoltsharingCom.py
@@ -0,0 +1,15 @@
+# -*- coding: utf-8 -*-
+from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo
+
+class BoltsharingCom(XFileSharingPro):
+ __name__ = "BoltsharingCom"
+ __type__ = "hoster"
+ __pattern__ = r"http://(?:\w*\.)*?boltsharing.com/\w{12}"
+ __version__ = "0.01"
+ __description__ = """Boltsharing.com hoster plugin"""
+ __author_name__ = ("zoidberg")
+ __author_mail__ = ("zoidberg@mujmail.cz")
+
+ HOSTER_NAME = "boltsharing.com"
+
+getInfo = create_getInfo(BoltsharingCom)