This is a third party party package for the framework Flet.
It enables Flet users to serialize
- Pandas DataFrame
- SQL
- CSV
- JSON
- Excel
Into Flet's DataTable.
For documentation and other details, please visit the project repository
- Added **kwargs to every shortcut function
import flet as ft
from simpledt import CSVDataTable
def main(page: ft.Page):
csv = CSVDataTable("MOCK_DATA2.csv", delimiter=";")
datatable = csv.datatable
page.add(datatable)
ft.app(target=main)