I have a Jupyter notebook that is more or a less a \'template\' of how things are done. For example the notebook is a template of say each country\'s economic data. All of the
You may have to jump to %%javascript
to interact with Jupyter
, which is different to the ipython
kernel that the python
code is sent to, e.g.:
%%javascript
Jupyter.notebook.copy_notebook()
Not sure you can copy with a specific name.
You can programmaticly rename the current notebook with:
Jupyter.notebook.rename(<new_name>)