SyntaxFix
Write A Post
Hire A Developer
Questions
After deserializing the JSON, you have a python object. Use the regular object methods.
In this case you have a list made of dictionaries:
json_object[0].items() json_object[0]["title"]
etc.