my-python-app / app.py
Gohil001's picture
Create app.py
64bbab3 verified
raw
history blame contribute delete
771 Bytes
import streamlit as st
# App Title
st.title("मेरा पहला ऐप")
# Subtitle
st.subheader("हेलो वर्ल्ड!")
# Description
st.write("यह मेरा पहला Streamlit ऐप है। यह Hugging Face पर होस्ट किया गया है।")
# Input from user
name = st.text_input("Vishal:", "")
# Display user input
if name:
st.write(f"नमस्ते, {name}! यह ऐप आपके लिए है।")
# Button
if st.button("क्लिक करें"):
st.success("आपने बटन क्लिक किया!")
# Footer
st.write("यह एक डेमो ऐप है। Streamlit और Hugging Face का उपयोग करके बनाया गया।")