Created
July 13, 2015 14:59
-
-
Save dietmarw/dc0cf089d8d6211136d5 to your computer and use it in GitHub Desktop.
Removes a cell if "skip" is present in the metadata
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 | |
"""strip outputs from an IPython Notebook | |
Opens a notebook, strips its output, and writes the outputless version to the original file. | |
Useful mainly as a git filter or pre-commit hook for users who don't want to track output in VCS. | |
This does mostly the same thing as the `Clear All Output` command in the notebook UI. | |
(based on: https://gist.github.com/minrk/6176788) | |
""" | |
import io | |
import sys | |
try: | |
# Jupyter >= 4 | |
from nbformat import read, write, NO_CONVERT | |
except ImportError: | |
# IPython 3 | |
try: | |
from IPython.nbformat import read, write, writes, NO_CONVERT | |
except ImportError: | |
# IPython < 3 | |
from IPython.nbformat import current | |
def read(f, as_version): | |
return current.read(f, 'json') | |
def write(nb, f): | |
return current.write(nb, f, 'json') | |
def _cells(nb): | |
"""Yield all cells in an nbformat-insensitive manner""" | |
if nb.nbformat < 4: | |
for ws in nb.worksheets: | |
for cell in ws.cells: | |
yield cell | |
else: | |
for cell in nb.cells: | |
yield cell | |
def strip_output(nb): | |
"""strip the outputs from a notebook object""" | |
# nb.metadata.pop('signature', None) | |
hit = False | |
index = 0 | |
strip_cells = [] | |
for cell in _cells(nb): | |
index += 1 | |
hit = False | |
try: | |
if 'skip' in cell.metadata.slideshow.slide_type: | |
hit = True | |
except AttributeError: | |
pass | |
if hit: | |
strip_cells.append(index - 1) | |
if strip_cells != []: | |
for i in reversed(strip_cells): | |
nb.cells.pop(i) | |
return nb | |
if __name__ == '__main__': | |
filename = sys.argv[1] | |
with io.open(filename, 'r', encoding='utf8') as f: | |
nb = read(f, as_version=NO_CONVERT) | |
nb = strip_output(nb) | |
print(writes(nb)) | |
# with io.open(filename, 'w', encoding='utf8') as f: | |
# write(nb, f) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment