Some tables are missing while extracting from PDF using Camelot

386 Views Asked by At

I tried to extract table data from a Multi page Multi Table PDF using following code

import camelot
tables = camelot.read_pdf('InputPDF.pdf',flavor='stream',multiple_tables=True,pages='all')
tables.export('foo1.csv', f='csv', compress=True)  # json, excel, html

enter image description here

But the 4,5 tables in Page 2 not extracted. same type of tables extracted in other pages properly

Attached the PDF file image which I tried as an example

There is no ERROR shown

0

There are 0 best solutions below