import json

with open('dump_file.txt', 'r') as file:
    game_set = json.load(file)


print(game_set)
print(type(game_set))