Moha782 commited on
Commit
39f6f38
·
verified ·
1 Parent(s): b2d6cd4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from pdfplumber import open as open_pdf
5
  from typing import List
6
 
7
  # Load the PDF file
8
- pdf_path = Path("path/to/your/pdf/file.pdf")
9
  with open_pdf(pdf_path) as pdf:
10
  text = "\n".join(page.extract_text() for page in pdf.pages)
11
 
 
5
  from typing import List
6
 
7
  # Load the PDF file
8
+ pdf_path = Path("apexcustoms.pdf")
9
  with open_pdf(pdf_path) as pdf:
10
  text = "\n".join(page.extract_text() for page in pdf.pages)
11