How can i read pdf in python? -
this question has answer here:
- extracting text pdf file using python 3 answers
how can read pdf in python? i know 1 way of converting text, want read content directly pdf.
can explain module in python best pdf extraction
you can use textract module in python
textract
for install
pip install textract for read pdf
import textract text = textract.process('path/to/pdf/file', method='pdfminer') for detail textract
Comments
Post a Comment