File size: 535 Bytes
ef24b69
 
 
 
 
 
 
 
 
 
 
 
 
 
b9eeb44
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# from backend import ResultPipeline
import streamlit as st
def main():
    # Just for setting up the title & head bar
    st.set_page_config(page_title = "Bill App")
    st.title("Bill Extractor")

    # This section will handle uploadation of files
    files = st.file_uploader("Upload the files here..", type = ["pdf"], accept_multiple_files = True)
    submit = st.button("Extract")

    # If a user has submitted the fieles, we need to call our pipeline
    
    

# Calling the main function
if __name__ == "__main__":
    main()