-1

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.

Denish
  • 983
  • 1
  • 13
  • 20
  • *It is failing* isn't enough to go on. Show the Python code you are calling to do the conversion and the error message you get, with full stock trace. – BoarGules Dec 07 '20 at 10:59
  • You should give more details: which library, which kind of pdf ; pure text or a scan/picture ? and of cours your code. – Malo Jan 01 '21 at 09:44

1 Answers1

0

Did you try pyPDF2?

import PyPDF2 
pdfFileObj = open('example.pdf', 'rb') 
Blaat
  • 1
  • 4