Given this data model
images = {
"auto-init-container/auto-init-container": [
{
"tag": "c",
"creation_date": "2020-01-09T21:04:12.351550522Z"
},
{
"tag": "a",
"creation_date": "2019-05-20T19:52:55.761775039Z"
},
{
"tag": "b",
"creation_date": "2019-06-20T21:32:44.427162163Z"
}
]
}
How do I sort this in python so that it would sort by latest and get the results below
images = {
"auto-init-container/auto-init-container": [
{
"tag": "c",
"creation_date": "2020-01-09T21:04:12.351550522Z"
},
{
"tag": "b",
"creation_date": "2019-06-20T21:32:44.427162163Z"
},
{
"tag": "a",
"creation_date": "2019-05-20T19:52:55.761775039Z"
}
]
}