I have some data I get from a SQLite3 Query, I want do display in a st.dataframe().
The query returns a list of tuples. The st.dataframe can handle this no problem, but I wanted to add column names to the dataframe.
I have already tried to add a column config like this:
@sahirmaharaj Thank you, but I will go with the dictionary approach from @ferdy since this is the only place I would need pandas in the entire app. And since I can use something from the standard library I just go with this to keep the app as leightweight as possible.