##// END OF EJS Templates
log, don’t raise on validation failure in v4.convert
log, don’t raise on validation failure in v4.convert

File last commit:

r18578:ff402444
r18578:ff402444
Show More
convert.py
208 lines | 6.8 KiB | text/x-python | PythonLexer
MinRK
first complete pass on v4...
r18573 """Code for converting notebooks to and from v3."""
MinRK
copy nbformat.v3 to v4
r18568
MinRK
first complete pass on v4...
r18573 # Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
MinRK
copy nbformat.v3 to v4
r18568
MinRK
test and update conversion between v3 <-> v4
r18577 import json
MinRK
copy nbformat.v3 to v4
r18568 from .nbbase import (
MinRK
first complete pass on v4...
r18573 nbformat, nbformat_minor,
MinRK
test and update conversion between v3 <-> v4
r18577 NotebookNode,
MinRK
copy nbformat.v3 to v4
r18568 )
MinRK
first complete pass on v4...
r18573 from IPython.nbformat import v3
MinRK
log, don’t raise on validation failure in v4.convert
r18578 from IPython.utils.log import get_logger
MinRK
copy nbformat.v3 to v4
r18568
MinRK
first complete pass on v4...
r18573 def upgrade(nb, from_version=3, from_minor=0):
"""Convert a notebook to v4.
MinRK
copy nbformat.v3 to v4
r18568
Parameters
----------
nb : NotebookNode
The Python representation of the notebook to convert.
from_version : int
The original version of the notebook to convert.
from_minor : int
The original minor version of the notebook to convert (only relevant for v >= 3).
"""
MinRK
log, don’t raise on validation failure in v4.convert
r18578 from IPython.nbformat.current import validate, ValidationError
MinRK
first complete pass on v4...
r18573 if from_version == 3:
MinRK
test and update conversion between v3 <-> v4
r18577 # Validate the notebook before conversion
MinRK
log, don’t raise on validation failure in v4.convert
r18578 try:
validate(nb, version=from_version)
except ValidationError as e:
get_logger().error("Notebook JSON is not valid v%i: %s", from_version, e)
MinRK
test and update conversion between v3 <-> v4
r18577
MinRK
copy nbformat.v3 to v4
r18568 # Mark the original nbformat so consumers know it has been converted.
MinRK
log, don’t raise on validation failure in v4.convert
r18578 nb.pop('orig_nbformat', None)
MinRK
test and update conversion between v3 <-> v4
r18577 nb.metadata.orig_nbformat = 3
# Mark the new format
MinRK
copy nbformat.v3 to v4
r18568 nb.nbformat = nbformat
nb.nbformat_minor = nbformat_minor
MinRK
first complete pass on v4...
r18573 # remove worksheet(s)
nb['cells'] = cells = []
# In the unlikely event of multiple worksheets,
# they will be flattened
for ws in nb.pop('worksheets', []):
# upgrade each cell
for cell in ws['cells']:
cells.append(upgrade_cell(cell))
MinRK
test and update conversion between v3 <-> v4
r18577 # upgrade metadata
MinRK
first complete pass on v4...
r18573 nb.metadata.pop('name', '')
MinRK
test and update conversion between v3 <-> v4
r18577 # Validate the converted notebook before returning it
MinRK
log, don’t raise on validation failure in v4.convert
r18578 try:
validate(nb, version=nbformat)
except ValidationError as e:
get_logger().error("Notebook JSON is not valid v%i: %s", nbformat, e)
MinRK
copy nbformat.v3 to v4
r18568 return nb
MinRK
first complete pass on v4...
r18573 elif from_version == 4:
# nothing to do
MinRK
copy nbformat.v3 to v4
r18568 if from_minor != nbformat_minor:
MinRK
test and update conversion between v3 <-> v4
r18577 nb.metadata.orig_nbformat_minor = from_minor
MinRK
copy nbformat.v3 to v4
r18568 nb.nbformat_minor = nbformat_minor
MinRK
test and update conversion between v3 <-> v4
r18577
MinRK
copy nbformat.v3 to v4
r18568 return nb
else:
MinRK
first complete pass on v4...
r18573 raise ValueError('Cannot convert a notebook directly from v%s to v4. ' \
MinRK
copy nbformat.v3 to v4
r18568 'Try using the IPython.nbformat.convert module.' % from_version)
MinRK
first complete pass on v4...
r18573 def upgrade_cell(cell):
"""upgrade a cell from v3 to v4
MinRK
copy nbformat.v3 to v4
r18568
MinRK
first complete pass on v4...
r18573 code cell:
- remove language metadata
- cell.input -> cell.source
- update outputs
"""
MinRK
test and update conversion between v3 <-> v4
r18577 cell.setdefault('metadata', NotebookNode())
MinRK
first complete pass on v4...
r18573 if cell.cell_type == 'code':
MinRK
test and update conversion between v3 <-> v4
r18577 cell.pop('language', '')
cell.metadata.collapsed = cell.pop('collapsed')
MinRK
first complete pass on v4...
r18573 cell.source = cell.pop('input')
MinRK
test and update conversion between v3 <-> v4
r18577 cell.setdefault('prompt_number', None)
cell.outputs = upgrade_outputs(cell.outputs)
elif cell.cell_type == 'html':
# Technically, this exists. It will never happen in practice.
cell.cell_type = 'markdown'
MinRK
first complete pass on v4...
r18573 return cell
def downgrade_cell(cell):
if cell.cell_type == 'code':
MinRK
test and update conversion between v3 <-> v4
r18577 cell.language = 'python'
cell.input = cell.pop('source', '')
cell.collapsed = cell.metadata.pop('collapsed', False)
cell.outputs = downgrade_outputs(cell.outputs)
MinRK
first complete pass on v4...
r18573 return cell
_mime_map = {
"text" : "text/plain",
"html" : "text/html",
"svg" : "image/svg+xml",
"png" : "image/png",
"jpeg" : "image/jpeg",
"latex" : "text/latex",
"json" : "application/json",
"javascript" : "application/javascript",
};
def to_mime_key(d):
"""convert dict with v3 aliases to plain mime-type keys"""
for alias, mime in _mime_map.items():
if alias in d:
d[mime] = d.pop(alias)
return d
def from_mime_key(d):
"""convert dict with mime-type keys to v3 aliases"""
for alias, mime in _mime_map.items():
if mime in d:
d[alias] = d.pop(mime)
return d
def upgrade_output(output):
"""upgrade a single code cell output from v3 to v4
- pyout -> execute_result
- pyerr -> error
- mime-type keys
MinRK
test and update conversion between v3 <-> v4
r18577 - stream.stream -> stream.name
MinRK
first complete pass on v4...
r18573 """
MinRK
test and update conversion between v3 <-> v4
r18577 output.setdefault('metadata', NotebookNode())
if output['output_type'] in {'pyout', 'display_data'}:
if output['output_type'] == 'pyout':
output['output_type'] = 'execute_result'
MinRK
first complete pass on v4...
r18573 to_mime_key(output)
MinRK
test and update conversion between v3 <-> v4
r18577 to_mime_key(output.metadata)
if 'application/json' in output:
output['application/json'] = json.loads(output['application/json'])
# promote ascii bytes (from v2) to unicode
for key in ('image/png', 'image/jpeg'):
if key in output and isinstance(output[key], bytes):
output[key] = output[key].decode('ascii')
MinRK
first complete pass on v4...
r18573 elif output['output_type'] == 'pyerr':
output['output_type'] = 'error'
MinRK
test and update conversion between v3 <-> v4
r18577 elif output['output_type'] == 'stream':
output['name'] = output.pop('stream')
MinRK
first complete pass on v4...
r18573 return output
def downgrade_output(output):
"""downgrade a single code cell output to v3 from v4
- pyout <- execute_result
- pyerr <- error
- un-mime-type keys
MinRK
test and update conversion between v3 <-> v4
r18577 - stream.stream <- stream.name
MinRK
first complete pass on v4...
r18573 """
if output['output_type'] == 'execute_result':
output['output_type'] = 'pyout'
MinRK
test and update conversion between v3 <-> v4
r18577 if 'application/json' in output:
output['application/json'] = json.dumps(output['application/json'])
MinRK
first complete pass on v4...
r18573 from_mime_key(output)
from_mime_key(output.get('metadata', {}))
elif output['output_type'] == 'error':
output['output_type'] = 'pyerr'
elif output['output_type'] == 'display_data':
MinRK
test and update conversion between v3 <-> v4
r18577 if 'application/json' in output:
output['application/json'] = json.dumps(output['application/json'])
MinRK
first complete pass on v4...
r18573 from_mime_key(output)
from_mime_key(output.get('metadata', {}))
MinRK
test and update conversion between v3 <-> v4
r18577 elif output['output_type'] == 'stream':
output['stream'] = output.pop('name')
output.pop('metadata')
MinRK
first complete pass on v4...
r18573 return output
def upgrade_outputs(outputs):
"""upgrade outputs of a code cell from v3 to v4"""
return [upgrade_output(op) for op in outputs]
def downgrade_outputs(outputs):
"""downgrade outputs of a code cell to v3 from v4"""
return [downgrade_output(op) for op in outputs]
MinRK
copy nbformat.v3 to v4
r18568
def downgrade(nb):
MinRK
first complete pass on v4...
r18573 """Convert a v4 notebook to v3.
MinRK
copy nbformat.v3 to v4
r18568
Parameters
----------
nb : NotebookNode
The Python representation of the notebook to convert.
"""
MinRK
test and update conversion between v3 <-> v4
r18577 from IPython.nbformat.current import validate
# Validate the notebook before conversion
validate(nb, version=nbformat)
MinRK
first complete pass on v4...
r18573 if nb.nbformat != 4:
MinRK
copy nbformat.v3 to v4
r18568 return nb
MinRK
first complete pass on v4...
r18573 nb.nbformat = v3.nbformat
nb.nbformat_minor = v3.nbformat_minor
MinRK
test and update conversion between v3 <-> v4
r18577 cells = [ downgrade_cell(cell) for cell in nb.pop('cells') ]
MinRK
first complete pass on v4...
r18573 nb.worksheets = [v3.new_worksheet(cells=cells)]
nb.metadata.setdefault('name', '')
MinRK
test and update conversion between v3 <-> v4
r18577 nb.metadata.pop('orig_nbformat', None)
nb.metadata.pop('orig_nbformat_minor', None)
# Validate the converted notebook before returning it
validate(nb, version=v3.nbformat)
return nb