Last active
June 9, 2016 11:30
-
-
Save hensing/7037955 to your computer and use it in GitHub Desktop.
simple script for clearing all cells of an ipython notebookUsage: `clear_notebook fname_in.ipynb [fname_out.ipynb]`
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
clears all cells of an ipython notebook | |
given via stdin or filename | |
by H.Dickten 2014 | |
""" | |
import sys | |
try: | |
import nbformat | |
except ImportError: | |
sys.exit(1) | |
NBVERSION = 4 | |
def clear_outputs(notebook, clear_prompt_numbers=True): | |
""" | |
clears the output of all cells in an ipython notebook | |
Parameters: | |
=========== | |
clear_promt_numbers: bool, optional | |
clears the prompt numbers of all cells | |
(default: True) | |
""" | |
for cell in notebook.cells: | |
if cell.get('cell_type', None) == 'code': | |
cell.outputs = [] | |
if clear_prompt_numbers is True: | |
cell.execution_count = None | |
cell.pop('prompt_number', None) | |
return notebook | |
if __name__ == '__main__': | |
if len(sys.argv) > 1: | |
INFILE = sys.argv[1] | |
else: | |
INFILE = sys.stdin | |
if len(sys.argv) > 2: | |
OUTFILE = open(sys.argv[2], 'w') | |
else: | |
OUTFILE = sys.stdout | |
NB = nbformat.read(fp=INFILE, as_version=NBVERSION) | |
NB = clear_outputs(NB) | |
NBS = nbformat.writes(NB, version=NBVERSION).encode('utf-8') | |
OUTFILE.write(NBS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment