📜  将 pdf 文件夹转换为 Excel 大熊猫 - Python 代码示例

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

代码示例2
# 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")