gpt4 book ai didi

pdf - 如何使用 nbconvert 和 PDFExporter() 将 jupyter notebook 导出为 pdf 的最小示例

转载 作者:行者123 更新时间:2023-12-05 08:56:31 25 4
gpt4 key购买 nike

我正在尝试使用笔记本单元格中的 nbconvert 导出 jupyter 笔记本的 pdf 副本。我读过 documentation ,但我就是找不到一些基本代码来实际执行 nbconvert 命令并导出为 pdf。

我能走到这一步,但我希望有人能填补最后的空白。

from nbconvert import PDFExporter
notebook_pdf = PDFExporter()
notebook_pdf.template_file = '../print_script/pdf_nocode.tplx'

请注意如何从此处开始实际创建 pdf。

如有任何帮助,我们将不胜感激。

最佳答案

我不是专家,但设法让它发挥作用。关键是您需要预处理笔记本,这将允许您使用 PDFExporter.from_notebook_node() 函数。这将为您提供字节格式的 pdf_data,然后可以将其写入文件:

import nbformat
from nbconvert.preprocessors import ExecutePreprocessor
from nbconvert import PDFExporter

notebook_filename = "notebook.ipynb"

with open(notebook_filename) as f:
nb = nbformat.read(f, as_version=4)

ep = ExecutePreprocessor(timeout=600, kernel_name='python3')

ep.preprocess(nb, {'metadata': {'path': 'notebooks/'}})

pdf_exporter = PDFExporter()

pdf_data, resources = pdf_exporter.from_notebook_node(nb)

with open("notebook.pdf", "wb") as f:
f.write(pdf_data)
f.close()

值得注意的是,ExecutePreprocessor 需要 resources dict,但我们在此示例中不使用它。

关于pdf - 如何使用 nbconvert 和 PDFExporter() 将 jupyter notebook 导出为 pdf 的最小示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39732784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com