我似乎找不到这个模块的工作教程或文档。一个人存在吗?
此处的“待完成”部分: https://github.com/chrisglass/xhtml2pdf/blob/master/doc/usage.rst
是错误的,似乎不包含工作代码。更正后,此代码序列:
from xhtml2pdf import pisa as pisa
filename = u'test.pdf'
pdf = pisa.CreatePDF("Hello <strong>World</strong>",file(filename, "wb"))
pisa.startViewer(filename)
生成一个空的test.pdf文件(好吧,不完全是空的,这是一个没有内容的pdf文件)