summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/SizedriveCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/SizedriveCom.py')
-rw-r--r--module/plugins/hoster/SizedriveCom.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/module/plugins/hoster/SizedriveCom.py b/module/plugins/hoster/SizedriveCom.py
deleted file mode 100644
index 3b9748fb6..000000000
--- a/module/plugins/hoster/SizedriveCom.py
+++ /dev/null
@@ -1,41 +0,0 @@
-# -*- coding: utf-8 -*-
-
-import re
-
-from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
-
-
-class SizedriveCom(SimpleHoster):
- __name__ = "SizedriveCom"
- __type__ = "hoster"
- __version__ = "0.01"
-
- __pattern__ = r'http://(?:www\.)?sizedrive\.com/[rd]/(?P<ID>\w+)'
-
- __description__ = """Sizedrive.com hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("GammaC0de", None)]
-
-
- NAME_PATTERN = r'>Nome:</b> (?P<N>.+?)<'
- SIZE_PATTERN = r'>Tamanho:</b>(?P<S>[\d.,]+) (?P<U>[\w^_]+)'
- OFFLINE_PATTERN = r'ARQUIVO DELATADO POR'
-
-
- def setup(self):
- self.resumeDownload = False
- self.multiDL = False
- self.chunkLimit = 1
-
-
- def handleFree(self, pyfile):
- self.wait(5)
- self.html = self.load("http://www.sizedrive.com/getdownload.php",
- post={'id': self.info['pattern']['ID']})
-
- m = re.search(r'<span id="boton_download" ><a href="(.+?)"', self.html)
- if m:
- self.link = m.group(1)
-
-
-getInfo = create_getInfo(SizedriveCom)