PagerMaid_Plugins_Pyro/update_des.py

22 lines
697 B
Python
Raw Normal View History

2023-02-01 14:29:17 +00:00
import json
import os
def update_des():
2023-07-01 12:07:18 +00:00
list_json_start = ["", "alpha/"]
for start in list_json_start:
with open(f"{start}list.json", "r", encoding="utf8") as f:
list_json = json.load(f)
for plugin in list_json["list"]:
if os.path.exists(f"{start}{plugin['name']}{os.sep}DES.md"):
2023-07-01 12:18:58 +00:00
with open(
f"{start}{plugin['name']}{os.sep}DES.md", "r", encoding="utf8"
) as f:
2023-07-01 12:07:18 +00:00
plugin["des"] = f.read().strip()
with open(f"{start}list.json", "w", encoding="utf8") as f:
json.dump(list_json, f, ensure_ascii=False, indent=4)
2023-02-01 14:29:17 +00:00
if __name__ == "__main__":
update_des()