Jupyter Notebook (.ipynb) Format
Jupyter file format
Description
Examples
The Jupyter Notebook format (formerly IPython Notebook) is a file format used by the Jupyter web-based interactive computational environment (jupyter.org). It is based on the JSON format.
It encodes the features of a Jupyter notebook, including an ordered list of input/output cells which can contain code, text), mathematics, plots, and other media.
The Maple Kernel for Jupyter enables Maple to be used as the computational engine within a Jupyter session. Saved notebooks from such sessions will be in the Jupyter Notebook format.
The Jupyter[CreateNotebook] command can be used to create a Jupyter notebook from a Maple expression, worksheet, or help page.
The Worksheet[WorksheetToJupyter] command can be used to export a Maple worksheet or parsed worksheet object to a Jupyter notebook.
The Export command can be used to export Maple expressions or parsed worksheet objects to a Jupyter notebook.
Export a simple mathematical expression to a notebook
The following example illustrates three methods of exporting worksheet content to Jupyter.
CreateNotebook generates a notebook from a worksheet file.
Worksheet:-WorksheetToJupyter exports a worksheet to a notebook.
With Import you can parse a worksheet and then export the parsed worksheet object to a Jupyter notebook.
See Also
Exporting Worksheets to Other Formats
file
Formats
Overview of the Maple Kernel for Jupyter
worksheet
Download Help Document