diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-09 20:14:46 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-11 18:42:31 +0200 |
commit | 55fd4d63b69b0f8c4087b4b4477e8004d35165d1 (patch) | |
tree | dc8cec61d6cea4bef01f3fd98363ca0452dacff7 /pyload | |
parent | Moved new plugins to pyload (diff) | |
download | pyload-55fd4d63b69b0f8c4087b4b4477e8004d35165d1.tar.xz |
GooIm: multiple downloads, resume and unlimited chunks are allowed even in free mode
(cherry picked from commit b1363d629fc18fa570295b3777e4f9ee1bed37e3)
Diffstat (limited to 'pyload')
-rw-r--r-- | pyload/plugins/hoster/GooIm.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/GooIm.py b/pyload/plugins/hoster/GooIm.py index 5a9d98396..f96e6e6cc 100644 --- a/pyload/plugins/hoster/GooIm.py +++ b/pyload/plugins/hoster/GooIm.py @@ -24,7 +24,7 @@ class GooIm(SimpleHoster): __name__ = "GooIm" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?goo\.im/.+" - __version__ = "0.01" + __version__ = "0.02" __description__ = """Goo.im hoster plugin""" __author_name__ = ("stickell") __author_mail__ = ("l.stickell@yahoo.it") @@ -32,6 +32,10 @@ class GooIm(SimpleHoster): FILE_NAME_PATTERN = r'<h3>Filename: (?P<N>.+)</h3>' FILE_OFFLINE_PATTERN = r'The file you requested was not found' + def setup(self): + self.chunkLimit = -1 + self.multiDL = self.resumeDownload = True + def handleFree(self): self.html = self.load(self.pyfile.url) m = re.search(r'MD5sum: (?P<MD5>[0-9a-z]{32})</h3>', self.html) |