当前位置:网站首页 > 网站建设教程 > HTML教程 > 正文

Python 技术篇 - 使用pypandoc库实现html文档转word文档实例演示

教程管理员 发布于2023-10-02 14:05 HTML教程 173

简介: Python 技术篇 - 使用pypandoc库实现html文档转word文档实例演示

首先需要安装 pandoc 程序,pypandoc 是用来调用该程序来完成工作的。

工具获取:

小蓝枣的csdn资源仓库

image.png

转换代码如下:

# -*- coding:utf-8 -*-
import pypandoc

# html文档的位置
html_path = r"C:\Users\Administrator\Desktop\html_to_word\sonar.html"
# 转换生成word文档的位置
word_path = r"C:\Users\Administrator\Desktop\html_to_word\sonar.docx"

pypandoc.convert_file(html_path, 'docx', outputfile=word_path)

image.png

原文档:

image.png

转化后效果图:

image.png

原文档:

image.png

转化后效果图:

image.png

喜欢的点个赞❤吧!


琼ICP备09004296号-12