File size: 398 Bytes
acf42a8 515efe8 acf42a8 515efe8 acf42a8 515efe8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import streamlit as st
def main():
st.set_page_config(page_title="Reads your html",page_icon=":books:")
st.header("Get your best Element")
st.text_input("Pass your Element with its information")
with st.sidebar:
st.subheader("your html")
st.file_uploader("upload your html file and click process")
st.button("process")
if __name__ == '__main__':
main() |