Forum Archive

Display of tabular data

Kenbo01

My applications need to display a lot of tabular data (metrics, financial info etc.). I currently use bottle and webbrowser to achieve this with HTML and CSS (Python/Pythonista backend).

If I wanted to display using the new ui, what would be considered "best practice" for cleanly displaying Multi-columnar data in Pythonista?

I note that TableView is for single columns and that there is no CollectionView yet. Would a WebView be the logical approach?

omz

Displaying it as HTML in a WebView will probably work best.

Kenbo01

Thanks Ole. Will go down this path.