How do I serialize a Python dictionary into a string, and then back to a dictionary? The dictionary will have lists and other dictionaries inside it.
Use Python's json module, or simplejson if you don't have python 2.6 or higher.