Python noob so bear with me please. I have this set of data:
[
{
"Created": "2022-07-04 13:27:35 UTC",
"Text": "Text"
},
{
"Created": "2022-07-04 13:37:35 UTC",
"Text": "Random"
},
{
"Created": "2022-07-04 13:40:35 UTC",
"Text": "People"
},
{
"Created": "2022-08-06 13:27:35 UTC",
"Text": "Test"
},
{
"Created": "2022-09-04 23:29:05 UTC",
"Text": "Test"
},
]
In my code I'm looping over them and creating a separate array of objects but with human readable time string. Since there are multiple created at that are the same time, is there way I can concatenate them into one object while looping? like so
[
{
"Created": "July 4th 2022",
"Text": "Text Random People"
},
{
"Created": "August 8th 2022",
"Text": "Test"
},
{
"Created": "September 4th 2022",
"Text": "Test"
},
]