ali121300 commited on
Commit
2d3a987
1 Parent(s): d32b149

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -5
app.py CHANGED
@@ -101,6 +101,15 @@ def read_pdf_pr_en(pdf_file_path):
101
  print(full_text)
102
  return(full_text)
103
  #################################################################################################################
 
 
 
 
 
 
 
 
 
104
  def main():
105
  st.set_page_config(
106
  page_title="Chat Bot PDFs",
@@ -138,11 +147,8 @@ def main():
138
  )
139
  if pdf_docs:
140
  # مسیر فایل آپلود شده را بدست آورید
141
- file_path = pdf_docs[0].name
142
- st.write(f"Uploaded file path: {file_path}")
143
- full_text=read_pdf_pr_en(pdf_file_path=file_path)
144
- pdf_docs=full_text
145
- st.write(pdf_docs)
146
  if st.button("Process"):
147
  with st.spinner("Processing"):
148
  st.write(pdf_docs)
 
101
  print(full_text)
102
  return(full_text)
103
  #################################################################################################################
104
+ def get_pdf_text(pdf_docs):
105
+ text = ""
106
+ for pdf in pdf_docs:
107
+ pdf_reader = PdfReader(pdf)
108
+ for page in pdf_reader.pages:
109
+ text += page.extract_text()
110
+ return text
111
+
112
+ ################################
113
  def main():
114
  st.set_page_config(
115
  page_title="Chat Bot PDFs",
 
147
  )
148
  if pdf_docs:
149
  # مسیر فایل آپلود شده را بدست آورید
150
+ txt_raw=get_pdf_text(pdf_docs)
151
+ st.write(txt_raw)
 
 
 
152
  if st.button("Process"):
153
  with st.spinner("Processing"):
154
  st.write(pdf_docs)