We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I use camelot to get the address values out of a PDF file from certain coordinates. Therefor I use the 'tableArea' argument:
area = '50,500,200,300' tables = cam.read_pdf(pdfFile, pages='1', flavor='stream', table_areas=area)
area = '50,500,200,300'
tables = cam.read_pdf(pdfFile, pages='1', flavor='stream', table_areas=area)
The area is detected correctly (cam.plot(...) shows it very well) and the address data are returned as expected. Even though I get a warning?!?:
UserWarning: No tables found in table area 1 warnings.warn(f"No tables found in table area {table_idx + 1}")
Why please do I get this warning?
Thanks a lot!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I use camelot to get the address values out of a PDF file from certain coordinates. Therefor I use the 'tableArea' argument:
area = '50,500,200,300'
tables = cam.read_pdf(pdfFile, pages='1', flavor='stream', table_areas=area)
The area is detected correctly (cam.plot(...) shows it very well) and the address data are returned as expected.
Even though I get a warning?!?:
UserWarning: No tables found in table area 1 warnings.warn(f"No tables found in table area {table_idx + 1}")
Why please do I get this warning?
Thanks a lot!
The text was updated successfully, but these errors were encountered: