Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
XPMaster
/
data_automation
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
XPMaster
commited on
Jul 12, 2023
Commit
a2d4254
·
1 Parent(s):
8a34a0b
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def greet(file):
4
+
return file.name
5
+
6
+
iface = gr.Interface(fn=greet, inputs=gr.File(), outputs="text")
7
+
iface.launch()