This Python project automatically converts PDF files in a folder into plain text files using PyPDF2. Each PDF is processed page by page, and the extracted text is saved as a .txt file with the same name as the PDF.
- Automatically processes all PDFs in the folder.
- Skips PDFs with no extractable text.
- Handles errors gracefully and prints a summary.
- Creates
.txtfiles named after the original PDF.
- Python 3.7 or higher
- PyPDF2 library
Install PyPDF2 with pip:
pip install PyPDF2