Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DanLeBossDeESGI
/
Musica
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
DanLeBossDeESGI
commited on
Sep 19, 2023
Commit
d74f527
·
1 Parent(s):
88b5b7e
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-1
app.py
CHANGED
Viewed
@@ -1 +1,7 @@
1
-
print("Hello
World!");
1
+
import
streamlit as st
2
+
3
+
def greet(name):
4
+
return "Saluuuuuuuut " + name + "! Monstre !"
5
+
6
+
iface = st.Interface(fn=greet, inputs="text", outputs="text")
7
+
iface.launch()