f652093 dfe3c39 f652093 ee83c82 f652093
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st def run(): st.set_page_config( page_title="Hello", page_icon="π", ) st.write("# Welcome to AppZoo! π") st.markdown( """ > εΊη¨ιε """ ) if __name__ == "__main__": run()