I have a pandas dataframe that I created from a response of an API request.One of the fields in my dataframe contains a list containing a unique dictionary like this : my dataframe
I would like to create a new dataframe from this dictionary I have tried several methods but I have not succeeded, an example of what I tried extracting the dictionary to put them in a list and create a dataframe from it:
traking = df['traking'].tolist()
temp_list = []
for li in traking:
temp_list.append(li[0])
I receive IndexError: list index out of range
but if I print(li[0]) I have my dictionary that appears, I'm a bit lost