Is there a way to get the sdout of the extracted tables of the PDFs to print in the terminal? Example:
import camelot
tables = camelot.read_pdf('List.pdf')
tables.export('newpdf.json', f='json')
for row in tables[0] #trying to print table...
print (row)