Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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.
|
9 |
text = ""
|
10 |
-
for page_num in range(pdf_reader.
|
11 |
-
text += pdf_reader.
|
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
|