TarunEnma commited on
Commit
acf42a8
·
verified ·
1 Parent(s): 3b50969

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -1
app.py CHANGED
@@ -1 +1,13 @@
1
- import streamlit as st
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ def main():
3
+ st.set_page_content(page_title="Reads your html",page_icon=":file:")
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()