##// END OF EJS Templates
Full versioning added to nbformat.
Full versioning added to nbformat.

File last commit:

r4406:0251893c
r4406:0251893c
Show More
nbexamples.py
73 lines | 1.3 KiB | text/x-python | PythonLexer
from ..nbbase import (
NotebookNode,
new_code_cell, new_text_cell, new_worksheet, new_notebook, new_output
)
ws = new_worksheet(name='worksheet1')
ws.cells.append(new_text_cell(
text='Some NumPy Examples'
))
ws.cells.append(new_code_cell(
input='import numpy',
prompt_number=1
))
ws.cells.append(new_code_cell(
input='a = numpy.random.rand(100)',
prompt_number=2
))
ws.cells.append(new_code_cell(
input='print a',
prompt_number=3,
outputs=[new_output(
output_type=u'pyout',
output_text=u'<array a>',
output_html=u'The HTML rep',
output_latex=u'$a$',
output_png=b'data',
output_svg=u'<svg>',
output_json=u'json data',
output_javascript=u'var i=0;'
),new_output(
output_type=u'display_data',
output_text=u'<array a>',
output_html=u'The HTML rep',
output_latex=u'$a$',
output_png=b'data',
output_svg=u'<svg>',
output_json=u'json data',
output_javascript=u'var i=0;'
)]
))
nb0 = new_notebook(
name='nb0',
worksheets=[ws, new_worksheet(name='worksheet2')]
)
nb0_py = """# <nbformat>2</nbformat>
# <codecell>
import numpy
# </codecell>
# <codecell>
a = numpy.random.rand(100)
# </codecell>
# <codecell>
print a
# </codecell>
"""