sofi icon indicating copy to clipboard operation
sofi copied to clipboard

data table example

Open giodegas opened this issue 6 years ago • 0 comments

I would like to see how this library works with data tables, represented by a list of dictionaries, like:

data = [{'name':'John', 'last name':'Doe, 'DOB':'01/01/1990'},
        {'name':'Mike', 'last name':'Smith, 'DOB':'02/02/1992'}]

then I would like have:

my_table = DataTable(columns=['name','last name','DOB'], data=data)

I did not find any example like it.

Could it be possible? Any roadmap to cover this need?

giodegas avatar Jul 23 '19 15:07 giodegas