tables = camelot.read_pdf(r"C:\Users\Ayush ShaZz\Desktop\Code_Python\FoodCaloriesList.pdf")
for table in tables:
    print(table.df)


它只读取第一页。有人请帮帮我

最佳答案

默认情况下,Camelot仅使用第一页,请参见此处:https://camelot-py.readthedocs.io/en/master/user/quickstart.html

通过链接,您可以执行多个页面:

camelot.read_pdf('your.pdf', pages='1,2,3')


或者,如果您想全部使用它们:

camelot.read_pdf('your.pdf',pages=1,4-10,20-end )

10-08 10:53