I have a basic dict as follows:
sample = {} sample[\'title\'] = \"String\" sample[\'somedate\'] = somedatetimehere
Convert the date to a string
sample['somedate'] = str( datetime.utcnow() )