Created
July 21, 2016 13:09
-
-
Save takluyver/c7eacd6d52aad4d75cbd48e447f6ad20 to your computer and use it in GitHub Desktop.
Revisions
-
takluyver created this gist
Jul 21, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ """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')