You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
338 B

1 month ago
"""
conda activate rag
pip install PyPDF2
1 month ago
https://www.jianshu.com/p/d893d3dfd65a
1 month ago
"""
from Util.PdfUtil import read_pdf_file
# 使用示例
if __name__ == "__main__":
1 month ago
pdf_file = r"d:/办公/16.小学语文.pdf"
1 month ago
content = read_pdf_file(pdf_file)
if content:
print("\nPDF内容:")
print(content)