hysts's picture
hysts HF Staff
Update
df754be
raw
history blame contribute delete
230 Bytes
#!/usr/bin/env python
import gradio as gr
import pandas as pd
df_orig = pd.DataFrame([['aaa', 12345]], columns=['a', 'b'])
with gr.Blocks() as demo:
df = gr.Dataframe(value=df_orig, interactive=False)
demo.queue().launch()