validate json file python code example
Example: validate json file programmatically in python
import json
def parse(filename):
try:
with open(filename) as f:
return json.load(f)
except ValueError as e:
print('invalid json: ' + filename)
return None # or: raise