首页 > 编程语言 > 详细

python批量把文件html转为pdf或者word文件

时间:2021-05-04 14:02:43      阅读:23      评论:0      收藏:0      [点我收藏+]

import pdfkit
import os
import easygui
import pypandoc

filepath = easygui.diropenbox()

config = pdfkit.configuration(wkhtmltopdf=r‘wkhtmltopdf.exe‘)


#判断文件大小
for curDir, dirs, files in os.walk(filepath):
for file in files:
# print(os.path.join(curDir, file))
if os.path.getsize(os.path.join(curDir, file)) == 0 :
os.remove(os.path.join(curDir, file))
else:
prefix = os.path.splitext(os.path.join(curDir, file))
os.rename(os.path.join(curDir, file),os.path.join(curDir, prefix[0]+".html"))
#转为PDF
pdfkit.from_file(os.path.join(curDir, file), os.path.join(curDir, prefix[0]+".pdf"), configuration=config)
#转为doc
pypandoc.convert_file(os.path.join(curDir, file), ‘docx‘, outputfile=os.path.join(curDir, prefix[0]+".doc"))

python批量把文件html转为pdf或者word文件

原文:https://www.cnblogs.com/tianzi01/p/14729158.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!