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‘)
原文地址:http://blog.51cto.com/yangzhiming/2306665
时间: 2024-10-13 02:11:26