i have a dictionary in python with one string variable like below (Of Course there are many other string fields there in the json, but only few are json escaped strings)
obj_dict = dict(details="{\"name\":\"Vyshakh\",\"martial_status\" : \"Single\"}")
how can I convert such an object to normal json as below:
{
details : {
name : "Vyshakh",
martial_status : "Single"
}
}
In Java using Jackson I can annotate a field using @JsonRawValue, what is the best way in Python to achieve the same