Pdf_to_csv / app.py
garyd1's picture
Update app.py
1e0482b verified
raw
history blame contribute delete
275 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()