This is my original dataframe. Every row has an email and a list of addresses (There is just street to exemplify).
email addresses
somename@gmail.com [{'street': 'a'}, {'street': 'b'}]
anothername@gmail.com [{'street': 'c'}]
And I expect this result:
email street
somename@gmail.com 'a'
somename@gmail.com 'b'
anothername@gmail.com 'c'
Is there a better way in pandas than iterate over the array to create this last dataframe?