python代码怎么保存为pdf_在python中将html字符串保存为PDF

我有一个html字符串,我想在python中存储为PDF文件。我使用PDFkit来达到这个目的。下面是我尝试的代码。在下面的代码中,我还试图通过tornado服务器提供图像。在class MainHandler(RequestHandler):

def get(self):

self.write('hello!')

class ImageHandler(RequestHandler):

def get(self):

d={}

d["mov1"]=1

d["mov2"]=10

d["mov3"]=40

d["mov4"]=3

py.bar(range(len(d)),d.values(),align="center")

py.xticks(range(len(d)),d.keys())

io=StringIO()

py.savefig(io,format='svg')

self.set_header("Content-Type", "image/svg+xml")

print io.getvalue()

config = pdfkit.configuration(wkhtmltopdf='E:\\wkhtmltopdf\\bin')

pdfkit.from_string(io.getvalue(),"E:\\hello.pdf",configuration=config) #Error here

self.write(io.getvalue())

app = Application([

url(r"/", MainHandler),

url(r"/Image",ImageHandler)

])

if __name__=="__main__":

app.listen(8888)

tornado.ioloop.IOLoop.instance().start()

我已经在E盘安装了wkhtmltopdf。我有个例外

^{pr2}$

同时我也愿意使用其他软件包。我还想知道我犯了什么错误。在

你可能感兴趣的:(python代码怎么保存为pdf_在python中将html字符串保存为PDF)