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

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