Camelot仅阅读pdf的第一页

时间:2019-06-26 16:21:33

标签: python python-camelot

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

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

1 个答案:

答案 0 :(得分:0)

默认情况下,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 )