This is the json object:
{
"aaa": "111",
"bbb": "222",
"ccc": [{
"ddd ": "333",
"eee": "444"
}]
}
Currently this is working when I run the program in windows cmd:
MyProgram.py --myJSON "{ \"aaa\": \"111\", \"bbb\": \"222\", \"ccc\": [{ \"ddd\": \"333\", \"eee\": \"444\" }] }"
Is it possible to give in a JSON object as a string without '\' character?