I have a string that looks like this:
s="Name1:Value1,Name2:Value2,Name3:Value3"
And I need to convert it to a dictionary like this:
dict = {
"Name1": "Value1",
"Name2": "Value2",
"Name3": "Value3"
}
Which module or filter I should use?