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

gradio-tabulalite

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gradio-tabulalite

a lightweight, feature-rich Gradio custom component for displaying interactive data tables with built-in sorting, pagination, search, row selection, and CSV export — all wrapped in a beautiful light-orange theme

0.6.22
pipPyPI
Maintainers
1

tags: [ gradio-custom-component, custom-component-track, gradio, gradio-component, gradio-ui, data-visualization, data-table, sortable, filterable, searchable, paginated, csv-export, row-selection, interactive-table, frontend, svelte, python, lightweight, ui-component, open-source,
] title: gradio_tabulalite short_description: a lightweight Gradio custom component for displaying data tables with built-in sorting, pagination, search, row selection, and CSV export colorFrom: blue colorTo: yellow sdk: gradio pinned: false app_file: space.py

gradio_tabulalite

Static Badge

a lightweight, feature-rich Gradio custom component for displaying interactive data tables with built-in sorting, pagination, search, row selection, and CSV export — all wrapped in a beautiful light-orange theme

Installation

pip install gradio_tabulalite

Usage


import gradio as gr
from gradio_tabulalite import TabulaLite
import pandas as pd

df = pd.read_csv("demo/large_data.csv")

with gr.Blocks() as demo:
    gr.Markdown("## Paginated Table Demo")
    table = TabulaLite(value=df.to_dict(orient="records"), rows_per_page=5)

if __name__ == "__main__":
    demo.launch()

TabulaLite

Initialization

nametypedefaultdescription

Keywords

custom-component

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