TarunEnma commited on
Commit
515efe8
·
verified ·
1 Parent(s): 367a911

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -1,13 +1,13 @@
1
  import streamlit as st
2
- # def main():
3
- st.set_page_config(page_title="Reads your html",page_icon=":books:")
4
- st.header("Get your best Element")
5
- st.text_input("Pass your Element with its information")
6
 
7
- with st.sidebar:
8
- st.subheader("your html")
9
- st.file_uploader("upload your html file and click process")
10
- st.button("process")
11
 
12
- # if __name__=="__main__":?
13
- # main()
 
1
  import streamlit as st
2
+ def main():
3
+ st.set_page_config(page_title="Reads your html",page_icon=":books:")
4
+ st.header("Get your best Element")
5
+ st.text_input("Pass your Element with its information")
6
 
7
+ with st.sidebar:
8
+ st.subheader("your html")
9
+ st.file_uploader("upload your html file and click process")
10
+ st.button("process")
11
 
12
+ if __name__ == '__main__':
13
+ main()