Converting dictionary to JSON
json.dumps() converts a dictionary to str object, not a json(dict) object! So you have to load your str into a dict to use it by using json.loads() method See json.dumps() as a save method and json.loads() as a retrieve method. This is the code sample which might help you understand it more: