0
0
forked from flt/tools

First commit

Former-commit-id: 424079609133edcc501ae185509836ee1181a02c
This commit is contained in:
2022-06-12 19:47:20 +08:00
commit f6658f3d52
51 changed files with 82841 additions and 0 deletions

16
name_code/web/gen.py Normal file
View File

@ -0,0 +1,16 @@
from pickle import dump
opt={}
base=0xa0a0
for i in range(1,87+1):
for j in range(1,94+1):
t=base+(i<<8)+j
t=t.to_bytes(2,'big')
# print(t)
try:
opt[t.decode("gb2312")]='%02d%02d'%(i,j)
except UnicodeDecodeError:
pass
print(opt[""])
with open("File.data","wb") as f:
dump(opt,f)