can you give an exemple of hello world app to test you ?
Drop files here
or click to upload
import streamlit as st
st.title("Hello World App")
st.write("👋 Welcome to my first Streamlit app!")
name = st.text_input("What's your name?")
if name:
st.write(f"Hello {name}! Nice to meet you!")
st.balloons()
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?