| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This project facilitates the extraction of text from PDF files using various Python libraries. It is designed to be flexible, allowing the choice among different text extraction libraries and supporting both single PDF file and directory containing multiple PDF files.
- main.py
- extractors/
- __init__.py
- pypdf2_extractor.py
- pdfminer_extractor.py
- pymupdf_extractor.py
- pdfplumber_extractor.py
- helpers/
- __init__.py
- utils.py
- json/
- params.jsonUse the requirements.txt file to install all libraries at once
Example params.json:
{
"input_path": "/path/to/pdf/or/directory",
"output_path": "/path/to/output/directory",
"libraries": ["pypdf2", "pdfminer"],
"log_level": "INFO"
}python main.py| Back | FazBrowse Home | New Git URL |