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.

13 lines
315 B

4 weeks ago
from Util.DocxUtil import *
4 weeks ago
if __name__ == '__main__':
4 weeks ago
# docx文件路径
docx_file = 'D:\dsWork\dsProject\dsRag\static\Txt\化学方程式_CHEMISTRY_1.docx'
4 weeks ago
4 weeks ago
# 整合最终的拼接完的文本
sb = get_docx_content_by_pandoc(docx_file)
4 weeks ago
4 weeks ago
# 输出
4 weeks ago
for x in sb:
4 weeks ago
print(x)