You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
705 B
23 lines
705 B
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()
|
|
|