Is there a function to obtain a Notebook\'s path?
I\'ve Googled a little on the subject but didn\'t find a simple way to do it... I want to obtain the Notebook\'s p
use this in cell
%%javascript IPython.notebook.kernel.execute('nb_name = "' + IPython.notebook.notebook_name + '"') print(nb_name)