Including a notebook in another notebook in IPython?
jupyter-notebook
Solution
googling for `notebook import hook` yield some examples. This is still experimental, but you are welcomed to improved it. I would suggest also using the `--script` flag that save an importable `.py` file every time you save the notebook.
Problem
I have a notebook which I intend to use as a library for other notebooks. It has some functions that can ready certain types of files etc. How can I include that notebook in a new notebook that should be able to use the functions in the library notebook?