Not a dumb question at all! `json.loads()` is the standard way python turns json string to json (or rather, a dict).
If you’re unsure about the JSON’s validity, paste it into [JSON Formatter](https://jsonformatter.curiousconcept.com/) first.
Also, pro tip: if your JSON has weird formatting (like single quotes instead of double), `ast.literal_eval()` can sometimes help, but `json.loads()` is still the safer bet.
If you’re unsure about the JSON’s validity, paste it into [JSON Formatter](https://jsonformatter.curiousconcept.com/) first.
Also, pro tip: if your JSON has weird formatting (like single quotes instead of double), `ast.literal_eval()` can sometimes help, but `json.loads()` is still the safer bet.
