This commit is contained in:
2025-09-10 09:47:18 +08:00
parent a4c736666b
commit 08f16be1a2
4 changed files with 234142 additions and 0 deletions

234137
Dict/ChinaCitys2025.json Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

5
Tools/T1_ReadAreaDict.py Normal file
View File

@@ -0,0 +1,5 @@
# 读取 Dict 目录下 ChinaCitys2025.json
import json
with open(r'D:\dsWork\YunNanProject\Dict\ChinaCitys2025.json', 'r', encoding='utf-8') as f:
data = json.load(f)
print(data)