|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
本帖最后由 幽谷醉翁 于 2024-1-21 04:57 编辑
《Python 自动化办公应用大全(ChatGPT版)》中的例子
import os
import tabula
import pandas as pd
src_fname = 'Demo-Table.pdf'
src_path = os.path.dirname(__file__)
src_file = os.path.join(src_path, src_fname)
dest_file = src_file.replace('.pdf', '.xlsx')
dfs = tabula.read_pdf(src_file, pages='all')
with pd.ExcelWriter(dest_file) as xl_writer:
for i, df in enumerate(dfs):
df.to_excel(xl_writer, index=False,
sheet_name=f'Table{i+1}')
代码调试
dfs = tabula.read_pdf(src_file, pages='all')
AttributeError: module 'tabula' has no attribute 'read_pdf'
我已经两次重新安装了tabula库,可是还是报错
不知道原因何在,请高手指点!
|
|