使用python-docx模块将HTML转换为Word文档

时间:2020-02-29 13:12:02

标签: python html python-docx

我的文本使用HTML代码存储在数据库中,因为当我将PyQt5添加到数据库时,它会将文本转换为HTML。我的文字在这里:

我应如何将html格式转换为文本并添加具有文本格式(例如,粗体,斜体)的Word文档

enter image description here

1 个答案:

答案 0 :(得分:1)

你也可以在python3.x中使用html文档:

from htmldocx import HtmlToDocx

new_parser = HtmlToDocx()
new_parser.parse_html_file("html_filename", "docx_filename")
#Files extensions not needed, but tolerated