face_detection / src /streamlit_app.py
th3mushtaq's picture
Update src/streamlit_app.py
a3c21a5 verified
Raw
History Blame Contribute Delete
278 Bytes
import streamlit as st
st.title("πŸš€ My First Streamlit App on Hugging Face")
st.write("This is a test app running inside Docker on Spaces!")
name = st.text_input("Enter your name:")
if name:
st.success(f"Hello, {name}! πŸŽ‰")
st.bar_chart({"data": [1, 5, 2, 6, 3, 7]})