import json as JS if __name__ == "__main__": file = open("data.json", "r") data = JS.load(file) file.close() print(data)