Why can’t Python parse this JSON data? [closed]
Your data is not valid JSON format. You have [] when you should have {} for the “masks” and “parameters” elements: [] are for JSON arrays, which are called list in Python {} are for JSON objects, which are called dict in Python Here’s how your JSON file should look: { “maps”: [ { “id”: … Read more