Update app.py
Browse files
app.py
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
import streamlit as st
|
2 |
-
|
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 |
-
|
9 |
-
|
10 |
-
|
11 |
|
12 |
-
|
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()
|