作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用“ipython --script”为每个 ipython 笔记本自动保存一个 .py 文件,这样我就可以使用它将类导入其他笔记本。但这最近停止工作,我收到以下错误消息:
`--script` is deprecated. You can trigger nbconvert via pre- or post-save hooks:
ContentsManager.pre_save_hook
FileContentsManager.post_save_hook
A post-save hook has been registered that calls:
ipython nbconvert --to script [notebook]
which behaves similarly to `--script`.
最佳答案
我刚刚遇到了一个问题,我无权重新启动我的 Jupyter 实例,因此无法应用我想要的保存后 Hook 。
因此,我提取了关键部分并可以使用 python manual_post_save_hook.py
运行它:
from io import open
from re import sub
from os.path import splitext
from nbconvert.exporters.script import ScriptExporter
for nb_path in ['notebook1.ipynb', 'notebook2.ipynb']:
base, ext = splitext(nb_path)
script, resources = ScriptExporter().from_filename(nb_path)
# mine happen to all be in Python so I needn't bother with the full flexibility
script_fname = base + '.py'
with open(script_fname, 'w', encoding='utf-8') as f:
# remove 'In [ ]' commented lines peppered about
f.write(sub(r'[\n]{2}# In\[[0-9 ]+\]:\s+[\n]{2}', '\n', script))
关于hook - ipython notebook --script 已弃用。如何用后保存 Hook 替换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29329667/
我是一名优秀的程序员,十分优秀!