Spaces:
Paused
Paused
File size: 300 Bytes
0376edc af7a4f6 7b9ff74 af7a4f6 a54ef95 71d6b82 5d7d65b 71d6b82 1f36838 0376edc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
def pri(df):
print(len(df))
with gr.Blocks() as demo:
df = gr.Dataframe(
type="array"
headers=["name"],
datatype=["str"],
row_count=(4, "fixed"),
col_count=(1, "fixed"))
btn = gr.Button()
btn.click(pri, df)
demo.launch() |