0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Jupyter カーネル上で実行されたら .ipynb を .py でエクスポートするようにしておく

Last updated at Posted at 2023-02-19

.ipynb上で試作・研究したものを .py で実装することがしばしばあります。

バグフィックスは .ipynb で試すのですが、最後に pyをエクスポートし忘れると
.ipynb と .py の内容がずれたままになってします。

意識的に.pyでエクスポートするのが面倒なので .ipynb で実行したら自らを.py で出力するようにしました。

import sys
import subprocess

if 'ipykernel' in sys.modules:
	subprocess.run(['jupyter', 'nbconvert', '--to', 'python', '*.ipynb']).check_returncode()

メイン関数の中に入れておくのがいいかもしれません

if __name__ == '__main__':
    # ↑ のコードを書いておく
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?