Arslan17121 commited on
Commit
ae950e4
·
verified ·
1 Parent(s): f7b12cb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -5,10 +5,10 @@ from gtts import gTTS
5
 
6
  # Function to read the PDF and extract text
7
  def extract_text_from_pdf(pdf_file):
8
- pdf_reader = PyPDF2.PdfFileReader(pdf_file)
9
  text = ""
10
- for page_num in range(pdf_reader.numPages):
11
- text += pdf_reader.getPage(page_num).extract_text()
12
  return text
13
 
14
  # Function to generate discussion points
 
5
 
6
  # Function to read the PDF and extract text
7
  def extract_text_from_pdf(pdf_file):
8
+ pdf_reader = PyPDF2.PdfReader(pdf_file)
9
  text = ""
10
+ for page_num in range(len(pdf_reader.pages)):
11
+ text += pdf_reader.pages[page_num].extract_text()
12
  return text
13
 
14
  # Function to generate discussion points