A few additions were made here:
* **docs**: fix code example in README.md by cscheid in https://github.com/posit-dev/great-tables/pull/62
* **feat**: shiny output and renderer for GT by machow in https://github.com/posit-dev/great-tables/pull/59
* **refactor**: replace libsass code with webcolors by machow in https://github.com/posit-dev/great-tables/pull/61
- This enables us to use `great_tables` in https://shinylive.io!
Here is an example shiny app:
python
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)