I am getting data in the following JSON format:
{
address:[
"test1"
],
city:"test2",
country:"test3",
postal_code:"test4",
state:"test5"
}
While I am trying to parse it via:
json.loads(data)
I am receiving an error: Expecting property name enclosed in double quotes
Is there a way to parse it in python ?
Thanks in advance,