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文档实例演示的主要内容,如果未能解决你的问题,请参考以下文章