python转html页面为pdf
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python转html页面为pdf相关的知识,希望对你有一定的参考价值。
python转html页面为pdf:
安装wkhtmltopdf略
apt-get install python-pip
pip install pdfkit
vi aa.py
#!/usr/bin/python
import pdfkit
pdfkit.from_url(‘http://google.com‘,‘baidu.pdf‘)
:wq
python aa.py
pdfkit.from_string(‘hello,python‘,‘baidu.pdf‘)
pdfkit.from_file(‘aa.html‘,‘baidu.pdf‘)
以上是关于python转html页面为pdf的主要内容,如果未能解决你的问题,请参考以下文章
wkhtmltopdf:html转pdfhtml转image以及cannot connect to X server问题解决