将docx文件转换为html python3

时间:2019-07-04 11:43:22

标签: python-3.x mammoth

我尝试将docx文件转换为html文件。 但是无法转换为提取设计,表格,图像等。

我的代码:

 import mammoth

 doc_file = open('source_file.docx', "rb")
 html_file = open(output_file.html,'wb')
 result = mammoth.convert_to_html(doc_file)
 html_file.write(result.value.encode('utf8'))
 doc_file.close()
 html_file.close()

0 个答案:

没有答案