##// END OF EJS Templates
Updating notebook configuration....
Updating notebook configuration. * ipython_notebook_config.py is now created and staged. * New certfile/keyfile config=True attributes for enabling SSL/TLS. * Examples of usage added. * New handling for --ip=* * Aliases added.

File last commit:

r4511:a85c3e74
r4519:53df0ac7
Show More
__init__.py
21 lines | 673 B | text/x-python | PythonLexer
from .nbbase import (
NotebookNode,
new_code_cell, new_text_cell, new_notebook, new_output, new_worksheet
)
from .nbjson import reads as reads_json, writes as writes_json
from .nbjson import reads as read_json, writes as write_json
from .nbjson import to_notebook as to_notebook_json
from .nbxml import reads as reads_xml, writes as writes_xml
from .nbxml import reads as read_xml, writes as write_xml
from .nbxml import to_notebook as to_notebook_xml
from .nbpy import reads as reads_py, writes as writes_py
from .nbpy import reads as read_py, writes as write_py
from .nbpy import to_notebook as to_notebook_py
from .convert import convert_to_this_nbformat