I have a string below :-
d = '"{""Source"":""Test Flow Action""}"'
I need to convert it into a dict as :
d = {"Source":"Test Flow Action"}
I tried ast.literal_eval, json.loads, but was not able to succeed.
When I used ast.literal_eval, I am getting the O/P as below:
{Source:Test Flow Action}
But this is not in python.
Can anyone help me with this?
Thanks