python生成pdf - Go语言中文社区

python生成pdf


使用python生成pdf

下载

  1)   pip install pdfkit                          https://pypi.org/project/pdfkit/

     2)  选择合适环境(比如我电脑是win64)   https://wkhtmltopdf.org/downloads.html

  3)配置环境变量 或者在代码中指定

使用

import pdfkit
content = '你好啊,世界~' + '<br>' + 'hello,python~'
html = '<html><head><meta charset="UTF-8"></head>' 
      '<body><div align="center"><p>%s</p></div></body></html>'%content

config=pdfkit.configuration(wkhtmltopdf=r"D:xxxxxxwkhtmltopdfbinwkhtmltopdf.exe")
pdfkit.from_url('http://www.baidu.com', 'url_test.pdf',configuration=config)
pdfkit.from_string(html,'string_test.pdf',configuration=config)
pdfkit.from_file('xxx.html','file_test.pdf',configuration=config)

 打开文件生成成功

 

转载于:https://www.cnblogs.com/RainBol/p/10881194.html

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/weixin_30726161/article/details/94993650
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-03-01 22:29:31
  • 阅读 ( 1068 )
  • 分类:

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢