v0.1.2
A few additions were made here:
- docs: fix code example in README.md by @cscheid in #62
- feat: shiny output and renderer for GT by @machow in #59
- refactor: replace libsass code with webcolors by @machow in #61
- This enables us to use
great_tables
in https://shinylive.io!
- This enables us to use
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)