I want to convert a dictionary like this:
{
"name": "Paul",
"age": "20",
"gender": "male"
}
to this :
{
name: "Paul",
age: "20",
gender: "male"
}
Basically the same as a JSON, but the object properties cannot be wrapped around quotes. Is it possible to do that in Python?