I have string in the format of:
'{comm:comm123,date: Aug 29, 2019 12:30:00 PM,value:qwert}'
I want to get something like this:
{
'comm': 'comm123',
'date': Aug 29, 2019 12:30:00 PM, (As a date)
'value': 'qwert'
}
I have tried using literal_eval and eval but they do not help. i also tried using json library but it does not seem to serve any purpose.