How do I take a python dictionary where the keys and values are Strings and convert it into a JSON String.
This is what I have right now:
import json de
You are trying to serialise the type object, dict, instead of info. Dump the right variable:
dict
info
print(json.dumps(info))