WeasyPrint - Python 的 HTML 转 PDF 文档


BSD
跨平台
Python

软件简介

WeasyPrint 是一个 Python 的虚拟 HTML 和 CSS 渲染引擎,可以用来将网页转成 PDF 文档。旨在支持 Web 标准的打印。基于
WebKit 或者 Gecko 渲染引擎。CSS 布局引擎使用 Python 编写,支持分页。

一旦安装完毕就可以使用如下命令来转 PDF:

$ weasyprint http://weasyprint.org /tmp/weasyprint-website.pdf

示例代码:

from weasyprint import HTML, CSS
HTML('http://weasyprint.org/').write_pdf('/tmp/weasyprint-website.pdf',
    stylesheets=[CSS(string='body { font-family: serif !important }')])