代码拉取完成,页面将自动刷新
from collections import defaultdict
import json,os,shutil
import opencc
converter=opencc.OpenCC('t2s')
charset=defaultdict(list)
total=9
for i in range(total):
with open("%d.json"%i) as f:
image_files=json.load(f)
with open("%d.txt"%i,"r",encoding="utf-8") as f:
chars="".join(f.read().splitlines())
try:assert len(image_files)==len(chars)
except AssertionError:
print("Data doesn't match at %d"%i)
continue
for j in range(len(chars)):
char=converter.convert(chars[j])
charset[char].append(image_files[j])
os.makedirs("整理_简体",exist_ok=True)
os.chdir("整理_简体")
path=os.getcwd()
for char in charset:
os.makedirs(char,exist_ok=True)
print("处理 %s: "%char,end="")
for i in range(len(charset[char])):
print("%d.png "%i,end="")
shutil.copy2(charset[char][i],os.path.join(path,char,"%d.png"%i))
print()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。