Camelot Table Extraction Error (PdfReadWarning: incorrect startxref pointer(0) [_reader.py:938])

3.3k views Asked by At

I am trying to extract some tables from a .pdf doc but I got an error:

"PdfReadWarning: incorrect startxref pointer(0) [_reader.py:938]"

The code is pretty simple because I am just testing:

import camelot

file = r"myPCPath\myFile.pdf"

tables = camelot.read_pdf(file)
print(tables)

All the dependencies was installed and I didnt found any information about this issue :(

0

There are 0 answers