summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/SendmywayCom.py
diff options
context:
space:
mode:
authorGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-11-14 22:22:04 +0100
committerGravatar zoidberg10 <zoidberg@mujmail.cz> 2012-11-14 22:22:04 +0100
commit6b5130641a7b4272956fa69ca5517884300ddb0c (patch)
treea5aaf799d74c3d54ba8855cdb9720a01feb68395 /module/plugins/hoster/SendmywayCom.py
parentUpdate the error codes (diff)
parentyoutube config options, resume - closed #717, ul.to - closed #716, (diff)
downloadpyload-6b5130641a7b4272956fa69ca5517884300ddb0c.tar.xz
Merged in irrenhaus/pyload (pull request #41)
Diffstat (limited to 'module/plugins/hoster/SendmywayCom.py')
-rw-r--r--module/plugins/hoster/SendmywayCom.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/hoster/SendmywayCom.py b/module/plugins/hoster/SendmywayCom.py
new file mode 100644
index 000000000..fcbac850a
--- /dev/null
+++ b/module/plugins/hoster/SendmywayCom.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo
+
+
+class SendmywayCom(XFileSharingPro):
+ __name__ = "SendmywayCom"
+ __type__ = "hoster"
+ __pattern__ = r"http://(?:\w*\.)*?sendmyway.com/\w{12}"
+ __version__ = "0.01"
+ __description__ = """SendMyWay hoster plugin"""
+ __author_name__ = ("zoidberg")
+ __author_mail__ = ("zoidberg@mujmail.cz")
+
+ FILE_NAME_PATTERN = r'<p class="file-name" ><.*?>\s*(?P<N>.+)'
+ FILE_SIZE_PATTERN = r'<small>\((?P<S>\d+) bytes\)</small>'
+ HOSTER_NAME = "sendmyway.com"
+
+getInfo = create_getInfo(SendmywayCom)