Pdf_to_csv / app.py
garyd1's picture
Update app.py
890b9f7 verified
raw
history blame
270 Bytes
import streamlit as st
def main():
st.set_page_config(page_title="Bill App")
st.title("Bill Extractor")
files=st.file_uploader("Upload the files here..",type=["pdf"],accept_multiple_files=True)
submit=st.button("Extract")
if __name__="__main__":
main()