def _read_json_file(path):
  try:
    with open(path) as f:
      return json.load(f)
  except:
    print ('Warning: Unable to read or parse json file: '+path)
    return None