Skip to content

Commit 672724a

Browse files
Create README.md
1 parent 9188957 commit 672724a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Python/PDf2Txt/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# PDF to Text Converter
2+
3+
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.
4+
5+
---
6+
7+
## Features
8+
9+
- Automatically processes **all PDFs in the folder**.
10+
- Skips PDFs with **no extractable text**.
11+
- Handles errors gracefully and prints a **summary**.
12+
- Creates `.txt` files named after the original PDF.
13+
14+
---
15+
16+
## Requirements
17+
18+
- Python 3.7 or higher
19+
- PyPDF2 library
20+
21+
Install PyPDF2 with pip:
22+
23+
```bash
24+
pip install PyPDF2

0 commit comments

Comments
 (0)