Challanges with Pdf/a file for extraction using Python

308 Views Asked by At

We have some PDF/A files for extraction and when we try to use standard pdf extraction libraries, nothing is returned from program for entire page. same program is working perfectly fine for standard pdfs and retuning values.

Can anyone help how to convert them using python libraries.

1

There are 1 best solutions below

0
On

Did you try pyPDF2?

import PyPDF2 
pdfFileObj = open('example.pdf', 'rb')