The request object I'm dealing with has the following meaning for the key "address":
u"{u'city': u'new-york', u'name': u'Home', u'display_value': u'2 Main Street'}"
I need to work with this unicode object as a dictionary. Unfortunately, json.loads () fails because it is not a json-compatible object.
Is there any way to handle this? Should I work with json.JSONDecoder object?
source share