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
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