I want to put the output of this print(d) function into a pandas dataframe

I am working with the bioservices package in python and I want to take the output of this function and put it into a dataframe using pandas from bioservices import UniProt u = UniProt(verbose=False) d = u.search("yourlist:M20211203F248CABF64506F29A91F8037F07B67D133A278O", frmt="tab", limit=5, columns="id, entry name") print(d) this is the result I am getting, almost like a neat little… Read More I want to put the output of this print(d) function into a pandas dataframe