import json import requests # File to read filename = "1754304649015-toys.json" # Read JSON file with open(filename, "r", encoding="utf-8") as f: data = json.load(f) print(data)