File size: 803 Bytes
4450790
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import json
import argparse

def check_json_syntax(file_path):
    try:
        with open(file_path, 'r', encoding='utf-8') as file:
            json_str = file.read()
            json.loads(json_str)
            print(f"[ OK ] {file_path}")
    except UnicodeDecodeError as e:
        print(f"Unicode decode error: {e}")
    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()