I'm trying to find a parser for python that can parse the data structure (to a python dictionary) that is written below (this data structure was taken from var
variable in javascript).
{
a: "a",
b: 54,
c: [
{
d: "d",
e: false
},
{
f: "f"
}
]
};