📜  将 pdf 文件夹转换为 Excell Pandas - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:02.784000             🧑  作者: Mango

代码示例1
# import packages needed
import glob
import tabula

# transform the pdfs into excel files
for filepath in glob.iglob('C:/Users/myfolderwithpdfs/*.pdf'):
    tabula.convert_into(filepath, output_format="xlsx")