This commit is contained in:
caiwx86 2023-03-31 22:43:43 +08:00
parent 2ea4ac4041
commit 058bc23b1a
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ class comicCommon:
@classmethod @classmethod
def comicChapterDownload(cls,chapter_url): def comicChapterDownload(cls,chapter_url):
x = cls.baseComicData(chapter_url,update=True) x = cls.baseComicData(chapter_url)
book_name = x.get("bookName") book_name = x.get("bookName")
chapter_name = x.get("chapterName") chapter_name = x.get("chapterName")
#fileUtils.saveConfComicChapterInfo(chapterName,x,bookName) #fileUtils.saveConfComicChapterInfo(chapterName,x,bookName)
@ -34,7 +34,7 @@ class comicCommon:
base_url = comicInfo.getBaseUrl(chapter_url) base_url = comicInfo.getBaseUrl(chapter_url)
chapter_api_url = base_url+chapter_api_path chapter_api_url = base_url+chapter_api_path
ntfy.sendMsg(f"chapterApiUrl= {chapter_api_url}",alert=False) ntfy.sendMsg(f"chapterApiUrl= {chapter_api_url}",alert=False)
data = htmlUtils.getJSON(chapter_api_url,update=True) data = htmlUtils.getJSON(chapter_api_url)
if data != None: if data != None:
data = data.get("chapter") data = data.get("chapter")
(chapter_name,images) = [data.get("name"),data.get("images")] (chapter_name,images) = [data.get("name"),data.get("images")]

View File

@ -70,7 +70,7 @@ class htmlUtils:
res = s.get(curl,stream=True, headers=cls.headers, timeout=10,allow_redirects=True) res = s.get(curl,stream=True, headers=cls.headers, timeout=10,allow_redirects=True)
if res.status_code != 200: if res.status_code != 200:
cls.remove_HtmlCache(curl) cls.remove_HtmlCache(curl)
return None continue
if type == "bytes": if type == "bytes":
url_text = res url_text = res
if type == "json": if type == "json":