Searched refs:json_file (Results 1 – 3 of 3) sorted by relevance
44 with open('json_base.txt', 'r') as json_file:45 all_json_base = json_file.read()46 with open('json_target.txt', 'r') as json_file:47 all_json_target = json_file.read()
34 with open('json.txt', 'r') as json_file:35 all_json = json_file.read()
26 def read_json_file(self, json_file): argument27 with open(os.path.join(json_file), 'r') as fp: