Moibe commited on
Commit
be713a5
1 Parent(s): 96803aa

Print in console

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,13 +1,12 @@
1
  import gradio as gr
2
 
3
  def greet(input_video):
4
-
5
  return input_video
6
 
7
  def carga_consola():
8
  return "Hola Mundo"
9
 
10
-
11
  #iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
12
  #gr.show()
13
 
 
1
  import gradio as gr
2
 
3
  def greet(input_video):
4
+ print("Imprimiendo en Consola")
5
  return input_video
6
 
7
  def carga_consola():
8
  return "Hola Mundo"
9
 
 
10
  #iface = gr.Interface(greet, gr.Video(height=200, width=200), "video")
11
  #gr.show()
12