From 8e7d14bae4d3c836f029a1235eb227380acc3f75 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 16 Feb 2015 21:59:10 +0100 Subject: Fix plugins to work on 0.4.10 --- module/plugins/hoster/ExashareCom.py | 38 ------------------------------------ 1 file changed, 38 deletions(-) delete mode 100644 module/plugins/hoster/ExashareCom.py (limited to 'module/plugins/hoster/ExashareCom.py') diff --git a/module/plugins/hoster/ExashareCom.py b/module/plugins/hoster/ExashareCom.py deleted file mode 100644 index 536c09b6d..000000000 --- a/module/plugins/hoster/ExashareCom.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- 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.+?)\( (?P[\d.,]+) (?P[\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) -- cgit v1.2.3