Skip to content

What would it be like to add support for Pandas? #153

Open
@egemenzeytinci

Description

@egemenzeytinci

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions