|
import streamlit as st |
|
from dotenv import load_dotenv |
|
from utils import * |
|
|
|
|
|
|
|
def main(): |
|
load_dotenv() |
|
|
|
st.set_page_config(page_title="Invoice Extraction Bot") |
|
st.title("Audio_to_text & Invoice Extraction Bot...💁 ") |
|
st.subheader("I can help you in extracting text and invoice data and Aduio2text") |
|
|
|
|
|
|
|
pdf = st.file_uploader("Upload invoices here for now, only PDF files allowed and will accept other formate as well", type=["pdf"],accept_multiple_files=True) |
|
|
|
submit=st.button("Extract Data") |
|
|
|
if submit: |
|
with st.spinner('Wait for it...'): |
|
df=create_docs(pdf) |
|
st.write(df) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
st.success("Hope I was able to save your time❤️") |
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
main() |
|
|