dear sir
I am attempting to utilize Itable with the code included in this post; however, the line “from itables.streamlit import interactive_table” is generating an error. I would appreciate your guidance on how to resolve this issue and successfully run my application with Itable.
see me
import itables
from itables import to_html_datatable
from itables.streamlit import interactive_table
from streamlit.components.v1 import html
import streamlit as st
import pandas as pd
df = pd.read_csv( “https://raw.githubusercontent.com/mwaskom/seaborn-data/master/iris.csv”)
html(
to_html_datatable(
df,
layout={“top1”: “searchPanes”},
searchPanes={“layout”: “columns-3”, “cascadePanes”: True},
),
height=960, # adjust manually
)