2 Star 15 Fork 4

CunKai/ComfyUI-Manager

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
json-checker.py 705 Bytes
一键复制 编辑 原始数据 按行查看 历史
dr.lt.data 提交于 2023-12-28 21:37 . missing file
import json
import argparse
def check_json_syntax(file_path):
try:
with open(file_path, 'r') as file:
json_str = file.read()
json.loads(json_str)
print(f"[ OK ] {file_path}")
except json.JSONDecodeError as e:
print(f"[FAIL] {file_path}\n\n {e}\n")
except FileNotFoundError:
print(f"[FAIL] {file_path}\n\n File not found\n")
def main():
parser = argparse.ArgumentParser(description="JSON File Syntax Checker")
parser.add_argument("file_path", type=str, help="Path to the JSON file for syntax checking")
args = parser.parse_args()
check_json_syntax(args.file_path)
if __name__ == "__main__":
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cunkai/comfy-ui-manager.git
git@gitee.com:cunkai/comfy-ui-manager.git
cunkai
comfy-ui-manager
ComfyUI-Manager
main

搜索帮助