Python pdfkit

序言

python使用pdfkit中,如果使用pdfkit.fromurl 或者pdfkit.fromstring等,就会出现上述错误。而且如果你使用pip安装了 wkhtmltopdf,还是会出现这个问题:

If this file exists please check that this process can read it. Otherwise please install wkhtmltopdf - https://github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdf

因此需要去安装windows版本的wkhtmltopdf

此处进入下载网址

安装完成之后按照如下代码即可:

pip3 install pdfkit

# -*- coding:utf-8 -*-

import pdfkit

path_wk = r'C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe' #安装位置
config = pdfkit.configuration(wkhtmltopdf = path_wk)
pdfkit.from_string("123123211",'out.pdf', configuration=config)

资料

 http://blog.sina.com.cn/s/blog_12dfdf2800102wfgi.html

猜你喜欢

转载自www.cnblogs.com/cnki/p/10883531.html