python 爬虫,网页转PDF:OSError: No wkhtmltopdf executable found

Posted 秋华

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 爬虫,网页转PDF:OSError: No wkhtmltopdf executable found相关的知识,希望对你有一定的参考价值。

解决办法:

代码中设置参数:

path_wk = rD: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的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python 将基于 pdf 的网页下载为 pdf

转 Python爬虫入门一之综述

如何在scrapy框架下,用python实现爬虫自动跳转页面来抓去网页内容??

如何在scrapy框架下,用python实现爬虫自动跳转页面来抓去网页内容??

转 Python爬虫入门二之爬虫基础了解

Python 爬虫:把廖雪峰教程转换成 PDF 电子书