import json def json_load(filename, *args, **kwargs): with open(filename, "r") as f: return json.load(f, *args, **kwargs)