1

我在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() 但没有奏效。

4

1 回答 1

0
with open('data.csv', 'r') as file:
    data = file.read().split('\n')[1:]
    for line in data:
        fields = line.split(',')
        path = fields[0]
        x1,y1,x2,y2 = int(fields[1]),int(fields[2]),int(fields[3]),int(fields[4])
于 2021-03-09T11:34:07.830 回答