You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

simpledatatable

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simpledatatable

This package allows flet developers to easily import SQL, CSV, Excel or Json tables into flet's DataTable.

0.3.4
pipPyPI
Maintainers
1

simpledt

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

Release notes:

Version 0.3.4

  • Added **kwargs to every shortcut function

Example usage:

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)

Keywords

table

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts