AttributeError: module 'pdfminer' has no attribute 'extract_tables'
时间: 2023-06-12 15:05:22 浏览: 418
pdf提取表格的开源工具
5星 · 资源好评率100%
这个错误通常意味着您使用的pdfminer版本不支持`extract_tables()`方法。这个方法在新版本的pdfminer.six中被引入,如果您使用旧版本的pdfminer,可能不会有这个方法。
您可以尝试更新pdfminer.six版本,或者使用其他PDF解析库,比如PyPDF2或pdfplumber。
阅读全文