Shiny

Shiny#

You can use ITables in Web applications generated with Shiny for Python with e.g.

from shiny import ui

from itables.sample_dfs import get_countries
from itables.shiny import DT

df = get_countries(html=False)
ui.HTML(DT(df))

See also our tested examples.