更新包子漫画-测试更新下载

This commit is contained in:
Yutou 2024-01-11 15:30:41 +08:00 committed by Yutousama
parent ff24492cc5
commit 1a7c1c4b5b
4 changed files with 17 additions and 4 deletions

Binary file not shown.

View File

@ -28826,10 +28826,10 @@
{
"name": "Tachiyomi: Baozi Manhua",
"pkg": "eu.kanade.tachiyomi.extension.zh.baozimanhua",
"apk": "tachiyomi-zh.baozimanhua-v1.4.22.apk",
"apk": "tachiyomi-zh.baozimanhua-v1.4.23.apk",
"lang": "zh",
"code": 22,
"version": "1.4.22",
"code": 23,
"version": "1.4.23",
"nsfw": 0,
"hasReadme": 0,
"hasChangelog": 1,

File diff suppressed because one or more lines are too long

13
test.py Normal file
View File

@ -0,0 +1,13 @@
import os
import sys
import fileinput
file = open(sys.argv[1],'r',encoding='utf-8')
content=file.read()
content=content.replace("\n","").replace(" ","")
file.close
file=open('index.min.json','w',encoding='utf-8')
file.write(content)
file.close