ImportError: cannot import name PDFDocument
明明已经安装了pdfminer3k,通过
pip install pdfminer3k
但是出现了如下错误:
这种问题的解决办法是:
换一种引入的方式,如下所示:
from pdfminer.pdfparser import PDFParser from pdfminer.pdfdocument import PDFDocument from pdfminer.pdfpage import PDFPage from pdfminer.pdfpage import PDFTextExtractionNotAllowed
问题可以解决,亲身体验。