Krebzonide commited on
Commit
af7a4f6
·
verified ·
1 Parent(s): 71d6b82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -1,5 +1,12 @@
1
  import gradio as gr
2
 
 
 
 
 
 
 
 
3
  with gr.Blocks() as demo:
4
  df = gr.Dataframe(
5
  headers=["name"],
 
1
  import gradio as gr
2
 
3
+ def pri(df):
4
+ print(df)
5
+ print("-----")
6
+ for item in df:
7
+ print(item)
8
+
9
+
10
  with gr.Blocks() as demo:
11
  df = gr.Dataframe(
12
  headers=["name"],