python转html页面为pdf

2023-01-31 01:01:19 python html 页面

pythonhtml页面为pdf

安装wkhtmltopdf略

#!/usr/bin/Python

import pdfkit

pdfkit.from_url('Http://Google.com','baidu.pdf')

:wq

pdfkit.from_string('hello,python','baidu.pdf')

pdfkit.from_file('aa.html','baidu.pdf')

相关文章