Spaces:
No application file
No application file
Create app.py
#21
by
jrochleau
- opened
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
git clone https://huggingface.co/spaces/mylesai/dropshipt_test
|
2 |
+
|
3 |
+
|
4 |
+
import gradio as gr
|
5 |
+
|
6 |
+
def greet(name):
|
7 |
+
return "Hello " + name + "!!"
|
8 |
+
|
9 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
10 |
+
iface.launch()
|
11 |
+
|
12 |
+
git add app.py
|
13 |
+
git commit -m "Add application file"
|
14 |
+
git push
|