Is there a way to parse a Python command line into a json value and execute it back on python. Json example:
{
"identifier": {
"command":"print(\"Things to print\")",
}
}
Example in python and how would be able to execute it?
print = data['identifier']['command']