import json
from games import collect_data, add_new_game

game = {
    "name": "CS",
    "creation_dt": 2012,
    "type": "strzelanka",
    "PEGI": 16
}

# games = add_new_game()

with open('dump_file.txt', 'w') as file:
    json.dump(game, file, indent=4)