Požadovaný soubor neexistuje.
' FILE_SIZE_REPLACEMENTS = [(' ', '')] def process(self, pyfile): if re.match(self.__pattern__, pyfile.url): self.html = self.load(pyfile.url, decode = True) self.getFileInfo() if self.premium: self.handlePremium() else: self.handleFree() else: self.handleOverriden() def handleFree(self): self.download("http://www.multishare.cz/html/download_free.php", get={ "ID": self.getFileID() }) def handlePremium(self): if not self.checkCredit(): self.logWarning("Not enough credit left to download file") self.resetAccount() self.download("http://www.multishare.cz/html/download_premium.php", get={ "ID": self.getFileID() }) def handleOverriden(self): if not self.premium: self.fail("Only premium users can download from other hosters") self.html = self.load('http://www.multishare.cz/html/mms_ajax.php', post = {"link": self.pyfile.url}, decode = True) self.getFileInfo() if not self.checkCredit(): self.fail("Not enough credit left to download file") url = "http://dl%d.mms.multishare.cz/html/mms_process.php" % round(random()*10000*random()) params = {"u_ID" : self.acc_info["u_ID"], "u_hash" : self.acc_info["u_hash"], "link" : self.pyfile.url} self.logDebug(url, params) self.download(url, get = params) def getFileID(self): found = re.search(self.FILE_ID_PATTERN, self.pyfile.url) if not found: self.fail("Parse error (ID)") return found.group('ID') def checkCredit(self): self.acc_info = self.account.getAccountInfo(self.user, True) self.logInfo("User %s has %i MB left" % (self.user, self.acc_info["trafficleft"]/1024)) return self.pyfile.size / 1024 <= self.acc_info["trafficleft"] getInfo = create_getInfo(MultishareCz)