I have a pandas column which has data like this :
**Title **: New_ind
**Body **: Detection_error
*respo_URL **: www.github.com
**respo_status **: {color}
data = {'sl no': [661, 662],
'key': ['3484', '3483'],
'id': [13592349, 13592490],
'Sum': ['[E-1]', '[E-1]'],
'Desc': [
"**Title **: New_ind\n\n**Body **: Detection_error\n\n*respo_URL **: www.github.com\n\n**respo_status **: {yellow}","**Title **: New_ind2\n\n**Body **: import_error\n\n*respo_URL **: \n\n**respo_status **: {green}"]}
df = pd.DataFrame(data)
I need to generate new columns where Title, Body, response_URL, etc would be column names and everything after : should be the value contained in those column cells. Just to mention the items in the column are not dictionaries