I have the following code:
df = tabula.read_pdf(r'C:\Users\Max12\Desktop\xml\pdfminer\attachments\Factuur 78692661.PDF', area=[375,7,76,558], pages = 1)
df1 = pd.DataFrame.from_records(df)
print(df1)
Should find it according to attachments. How come I can't find this table?
See attachments for your reference.
The problem is in the area parameter mentioned in the code.
According to Tabula Documentation, area parameter has to be mentioned like below:
Let's say you need to extract data from the middle of the page, so with reference to above parameter:
So, the first value in the area parameter list, has to be less than third value. Similarly, the second value in the area parameter list has to be less than fourth value.
Only then, tabula can create a table through given coordinates.