import json
import pprint

with open('spis_gier.json') as file:
    spis_gier = json.load(file)

pprint.pprint(spis_gier['spis_gier'])

with open('l1_2.json', 'w') as file:
    json.dump(spis_gier, file, indent=4, sort_keys=True)