pdfkit生成pdf,可用于notebook

1.安装pdfkit库

在命令行中输入如下命令

pip install pdfkit

8c124097f346af1212c187848c38db02.png
出现上面的Successfully installed pdfkit-0.6.1提示,说明安装成功了

2.安装wkhtmltopdf.exe文件

pdfkit是基于wkhtmltopdf的python封装,所以需要安装wkhtmltopdf.exe。wkhtmltopdf是轻量级软件,非常很容易安装
下载地址:
https://wkhtmltopdf.org/downloads.html
7b296745ae79085ad61432dcea013829.png

2.1 选择windows 64位

2.2下载完成后,一路next,将wkhtmltopdf安装好。

务必要记住安装地址,找到wkhtmltopdf.exe文件所在的绝对路径,后面要用到。我这里是默认路径""P:\Program Files\wkhtmltohdf\wkhtmltopdf\bin\wkhtmltopdf.exe""

3.使用pdfkit库生成pdf文件

pdfkit可以将网页、html文件、字符串生成pdf文件

  • 网页url生成pdf【pdfkit.from_url()函数】
# 导入库
import pdfkit

'''将网页url生成pdf文件'''
def url_to_pdf(url, to_file):
   # 将wkhtmltopdf.exe程序绝对路径传入config对象
   path_wkthmltopdf = r'P:\\Program Files\\wkhtmltohdf\\wkhtmltopdf\\bin\\wkhtmltopdf.exe'
   config = pdfkit.configuration(wkhtmltopdf=path_wkthmltopdf)
   # 生成pdf文件,to_file为文件路径
   pdfkit.from_url(url, to_file, configuration=config)
   print('完成')

# 这里传入我jupyter的url,转换为pdf
url_to_pdf(r'http://localhost:8888/notebooks/%E4%BD%9C%E4%B8%9A/2022-3-18%20%E6%95%B0%E6%8D%AE%E6%8C%96%E6%8E%98.ipynb', '潘传志+2019212185+数据挖掘作业.pdf')
  • html文件生成pdf【pdfkit.from_file()函数】
# 导入库
import pdfkit

'''将html文件生成pdf文件'''
def html_to_pdf(html, to_file):
    # 将wkhtmltopdf.exe程序绝对路径传入config对象
    path_wkthmltopdf = r'P:\\Program Files\\wkhtmltohdf\\wkhtmltopdf\\bin\\wkhtmltopdf.exe'
    config = pdfkit.configuration(wkhtmltopdf=path_wkthmltopdf)
    # 生成pdf文件,to_file为文件路径
    pdfkit.from_file(html,to_file , configuration=config)
    print('完成')

html_to_pdf('2022-3-18 数据挖掘.html','潘传志+2019212185+数据挖掘作业.pdf')
  • 字符串生成pdf【pdfkit.from_string()函数】
# 导入库
import pdfkit

'''将字符串生成pdf文件'''
def str_to_pdf(string, to_file):
    # 将wkhtmltopdf.exe程序绝对路径传入config对象
    path_wkthmltopdf = r'C:\\Program Files\\wkhtmltopdf\\bin\\wkhtmltopdf.exe'
    config = pdfkit.configuration(wkhtmltopdf=path_wkthmltopdf)
    # 生成pdf文件,to_file为文件路径
    pdfkit.from_string(string, to_file, configuration=config)
    print('完成')

str_to_pdf('This is test!','out_3.pdf')
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

TryBest_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值