일단 정리..

This commit is contained in:
2025-07-15 11:14:05 +09:00
parent 5d5c0ff675
commit f1345e2770
4 changed files with 101 additions and 48 deletions

View File

@@ -60,8 +60,18 @@ def GetListSearchResult(list_ID):
strContent = driver.page_source
listRet = parseMangaInfos(strContent)
for Idx in range(len(listRet)):
print(f"{Idx} : {listRet[Idx]}")
#for Idx in range(len(listRet)):
# print(f"{Idx} : {listRet[Idx]}")
try:
for Idx in range(len(listRet)):
print(f"{Idx} : {listRet[Idx]}")
with open( f"{id}.txt", 'w') as file:
for item in listRet[Idx]:
file.write( + "\n")
file.close()
except IOError:
util.DbgOut(f"Error: Could not write to the file at {id}.txt.", True)
except Exception as e:
util.DbgOut("Hitomi Loading Error : ", e)