python 爬虫,网页转PDF:OSError: No wkhtmltopdf executable found
Posted 秋华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 爬虫,网页转PDF:OSError: No wkhtmltopdf executable found相关的知识,希望对你有一定的参考价值。
解决办法:
代码中设置参数:
path_wk = r‘D:Program Fileswkhtmltopdfinwkhtmltopdf.exe‘ #wkhtmltopdf安装位置
config = pdfkit.configuration(wkhtmltopdf = path_wk)
最后执行转pdf操作
pdfkit.from_string("hello world","1.pdf",configuration=config)#字符转PDF
pdfkit.from_files("hello world","1.pdf",configuration=config)#网页转PDF
以上是关于python 爬虫,网页转PDF:OSError: No wkhtmltopdf executable found的主要内容,如果未能解决你的问题,请参考以下文章
如何在scrapy框架下,用python实现爬虫自动跳转页面来抓去网页内容??