This repository has been archived on 2024-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mathdeptv2/工具v2/移除关联题号.py

10 lines
265 B
Python

metadatafilepath = "文本文件/metadata.txt"
from database_tools import *
pro_dict = load_dict("../题库0.3/problems.json")
metadata = ReadTextFile(metadatafilepath).strip()
RemoveMutualLink(metadata,pro_dict)
save_dict(pro_dict,"../题库0.3/problems.json")