hfariborzi commited on
Commit
279fe6d
·
verified ·
1 Parent(s): 591ef9e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Streamlit App
4
+ st.title("Hello, Hugging Face!")
5
+ st.write("This is a simple Streamlit app deployed on Hugging Face Spaces.")
6
+
7
+ name = st.text_input("Enter your name:")
8
+ if name:
9
+ st.write(f"Hello, {name}!")