有没有办法让提取的 PDF 表格的 sdout 在终端中打印?例子:
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)
有没有办法让提取的 PDF 表格的 sdout 在终端中打印?例子:
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)