📜  pdf 到 csv 的转换 - Python 代码示例

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

代码示例1
# Run this command on command prompt in your python folder 'pip install tabula-py', it will install Tabula Library
# Run this code to convert PDF to CSV

import tabula
tabula.convert_into("yourpdf.pdf", "output.csv", output_format="csv", pages='all')