jaumaras commited on
Commit
dbfecad
1 Parent(s): e601bf5

Create App.py

Browse files
Files changed (1) hide show
  1. App.py +9 -0
App.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ ! pip install gradio
2
+
3
+ import gradio as gr
4
+
5
+ def hello_world(name):
6
+ return "HEllo..." + name +"!!!!"
7
+
8
+ interface = gr.Interface(fn = hello_world, inputs='text',outputs="text")
9
+ interface.launch()