-
-
Save AngelBerihuete/48dfbeb497fcab8a1651d672091af790 to your computer and use it in GitHub Desktop.
Make a notebook from a script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Create a notebook containing code from a script. | |
Run as: python make_nb.py my_script.py | |
""" | |
import sys | |
import nbformat | |
from nbformat.v4 import new_notebook, new_code_cell | |
nb = new_notebook() | |
with open(sys.argv[1]) as f: | |
code = f.read() | |
nb.cells.append(new_code_cell(code)) | |
nbformat.write(nb, sys.argv[1]+'.ipynb') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment