This commit is contained in:
caiwx86 2023-08-07 00:23:55 +08:00
parent 312bdad626
commit d698634e49
2 changed files with 1 additions and 17 deletions

View File

@ -84,4 +84,4 @@ class ImgDownloadPipeline(ImagesPipeline):
dts_path= self.get_file_path(item, result_type="cbz"), dts_path= self.get_file_path(item, result_type="cbz"),
comic_info_images= comic_info['Pages'], remove=True): comic_info_images= comic_info['Pages'], remove=True):
self.pack_icon(item) self.pack_icon(item)
time.sleep(random.randint(25,60)) time.sleep(random.randint(5,60))

View File

@ -1,16 +0,0 @@
class OldUtils:
old_comic_name=None
old_chapter = None
@classmethod
def setOldComicName(cls,value): cls.old_comic_name = value
@classmethod
def setOldChapter(cls,value): cls.old_chapter=value
@classmethod
def getOldComicName(cls): return cls.old_comic_name
@classmethod
def getOldChapter(cls): return cls.old_chapter