json_1.py

#!/usr/bin/python3
# ==================================================================
# From: www.youtube.com/watch?v=pTT7HMqDnJw
# ==================================================================

import json

## encoding is no needed because no non-ascii are in the file
## json_file = open("json_1.jsn","r",encoding="utf-8")

json_file = open("json_1.json")

movie = json.load(json_file)

json_file.close()

print(movie)