我想在 python 3 中使用 camelot 从 pdf 中提取所有表格。
import camelot
# PDF file to extract tables from
file = "./pdf_file/ooo.pdf"
tables = camelot.read_pdf(file)
# number of tables extracted
print("Total tables extracted:", tables.n)
# print the first table as Pandas DataFrame
print(tables[0].df)
# export individually
tables[0].to_csv("./pdf_file/ooo.csv")
然后我从pdf的第一页只得到一张桌子。如何从pdf文件中提取整个表格?