mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-02 13:50:07 +01:00
14 lines
No EOL
255 B
Python
14 lines
No EOL
255 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
import json
|
|
|
|
path = "./../web/atlas.json"
|
|
|
|
# path override as 1st param: validate_json.py path_to_file.json
|
|
if (len(sys.argv) > 1):
|
|
path = sys.argv[1]
|
|
|
|
json.load(open(path, "r", encoding='utf-8'))
|
|
|
|
print("JSON is valid") |