我在excel的一列中有pdf图像以及它的camelot坐标,它们中的每一个都在各自的行中,下面是一个简短的外观:-
文件名 X1_Camelot Y1_Camelot x2_Camelot Y2_Camelot 路径/到/pdf_file/folder/1.pdf 16 77 80 540 路径/到/pdf_file/folder/2.pdf 20 300 40 260 路径/到/pdf_file/folder/3.pdf 40 90 200 340 路径/到/pdf_file/folder/4.pdf 20 50 100 440
我想编写一个 python 脚本,它会在每个 pdf 文件中获取它的每个 camelot 版本坐标,然后将值放入下面的函数中:-
表格 = camelot.read_pdf('table_regions.pdf', table_regions=['170,370,560,270']) 表格[0].df
我想要来自具有这些列的输入 csv 文件的每个 PDF 的结果。
我尝试使用 for 循环和 df.iterrows() 但没有奏效。