Open
Description
When I tried to create a pandas data-frame I got the exception. Here is my example code,
import pandas as pd
from addict import Dict
rows = []
for i in range(100):
row = Dict()
row.id = i
rows.append(row)
print(pd.DataFrame(rows))
And here is the exception,
TypeError: unhashable type: 'Dict'
What would it be like to add support for creating a pandas data-frame?
Metadata
Metadata
Assignees
Labels
No labels