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

Posted 挣扎的蓝藻

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 技术篇 - 使用pypandoc库实现html文档转word文档实例演示相关的知识,希望对你有一定的参考价值。

首先需要安装 pandoc 程序,pypandoc 是用来调用该程序来完成工作的。
工具获取:
小蓝枣的csdn资源仓库
在这里插入图片描述
转换代码如下:

# -*- 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)

在这里插入图片描述
原文档:
在这里插入图片描述
转化后效果图:
在这里插入图片描述
原文档:
在这里插入图片描述
转化后效果图:
在这里插入图片描述
喜欢的点个赞❤吧!

以上是关于Python 技术篇 - 使用pypandoc库实现html文档转word文档实例演示的主要内容,如果未能解决你的问题,请参考以下文章

无法使用 pypandoc 将图像从 docx 文件添加到 html 文件

神器 pypandoc —— 实现电子书自由

python怎么实现文件格式的转换

如何将库作为docker容器服务运行?

python爬虫入门

Python:在python编程中将扫描的pdf转换为excel