Ziofil
Ziofil

Reputation: 2005

Can a jupyter notebook find its own filename?

Is it possible for a jupyter notebook to get the name of its own file, similarly to what we would do from a python script?

os.path.basename(__file__) doesn't seem to work, at least for me on jupyterlab

sys.argv[0] returns my_home/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py

Upvotes: 10

Views: 9041

Answers (1)

AlbHam
AlbHam

Reputation: 102

The only way I've found is through JavaScritp as in this answer.

The compact form is a cell like this:

%%javascript
IPython.notebook.kernel.execute(`notebookName = '${window.document.getElementById("notebook_name").innerHTML}'`);

after that you'll have the variable notebookName with the name that appears at the top of the page.

A better solution may be using IPython.notebook.notebook_name:

%%javascript
IPython.notebook.kernel.execute(`notebookName = '${IPython.notebook.notebook_name}'`);

it gives you the name with the extension .ipynb

Upvotes: 7

Related Questions