Skip to content

v0.1.2

Compare
Choose a tag to compare
@machow machow released this 07 Dec 17:40
· 1907 commits to main since this release
b30c60b

A few additions were made here:

Here is an example shiny app:

from shiny import App, ui

from great_tables import GT, exibble
import great_tables.shiny as gts

app_ui = ui.page_fluid(gts.output_gt("table"))

def server(input, output, session):
    @output
    @gts.render_gt
    def table():
        return GT(exibble)

app = App(app_ui, server)