# importing all the required modules
import PyPDF2
# creating a pdf reader object
reader = PyPDF2.PdfReader('example.pdf')
# print the number of pages in pdf file
print(len(reader.pages))
# print the text of the first page
print(reader.pages[0].extract_text())
2条答案
按热度按时间cnh2zyt31#
您可以使用PyPDF2软件包
安装后:
沿着the documentation走。
e3bfsja22#
可以在python中使用textract模块
T提取
用于安装
阅读pdf
详情**Textract**