diff options
author | spoob <spoob@gmx.de> | 2009-06-20 16:30:01 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-06-20 16:30:01 +0200 |
commit | 41f78f21c779e940861fb8f4e2c4436fff2c1f45 (patch) | |
tree | 8cc17f6b77f9621922e983c1bd31d53a5ed5a427 /Plugins/GigasizeCom.py | |
parent | some new cli stuff (no interactive functions yet) (diff) | |
download | pyload-41f78f21c779e940861fb8f4e2c4436fff2c1f45.tar.xz |
Added Netload.in Download Plugin
Diffstat (limited to 'Plugins/GigasizeCom.py')
-rw-r--r-- | Plugins/GigasizeCom.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Plugins/GigasizeCom.py b/Plugins/GigasizeCom.py index edc92b2ba..2f9e26f5d 100644 --- a/Plugins/GigasizeCom.py +++ b/Plugins/GigasizeCom.py @@ -41,6 +41,7 @@ class GigasizeCom(Plugin): if re.search(r"Package features", self.html[1]) != None: if re.search(r"YOU HAVE REACHED YOUR HOURLY LIMIT", self.html[1]) != None: self.time_plus_wait = time() + 3600 #one hour + #self.time_plus_wait = time() + 60 break os.remove(captcha_image) @@ -79,5 +80,5 @@ class GigasizeCom(Plugin): return True def proceed(self, url, location): - - self.req.download(url, location, cookies=True) + print url + print self.req.load(url, cookies=True) |