diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-13 23:25:45 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-13 23:25:45 +0100 |
commit | 8144d3c78df968ae00e35c327730af981220ac89 (patch) | |
tree | 9499fb887aea2e1d8c77f27e7dc8863bda8b0851 /module/plugins/hoster/ExashareCom.py | |
parent | [XFileSharingPro] Update BUILTIN lists (diff) | |
download | pyload-8144d3c78df968ae00e35c327730af981220ac89.tar.xz |
New plugin: ExashareCom
Diffstat (limited to 'module/plugins/hoster/ExashareCom.py')
-rw-r--r-- | module/plugins/hoster/ExashareCom.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/module/plugins/hoster/ExashareCom.py b/module/plugins/hoster/ExashareCom.py new file mode 100644 index 000000000..536c09b6d --- /dev/null +++ b/module/plugins/hoster/ExashareCom.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- + +import re + +from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo + + +class ExashareCom(XFSHoster): + __name__ = "ExashareCom" + __type__ = "hoster" + __version__ = "0.01" + + __pattern__ = r'http://(?:www\.)?exashare\.com/\w{12}' + + __description__ = """Exashare.com hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + INFO_PATTERN = r'>(?P<NAME>.+?)<small>\( (?P<S>[\d.,]+) (?P<U>[\w^_]+)' + LINK_FREE_PATTERN = r'file: "(.+?)"' + + + def setup(self): + self.multiDL = True + self.chunkLimit = 1 + self.resumeDownload = self.premium + + + def handleFree(self, pyfile): + m = re.search(self.LINK_FREE_PATTERN, self.html) + if m is None: + self.error(_("Free download link not found")) + else: + self.link = m.group(1) + + +getInfo = create_getInfo(ExashareCom) |