mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Add documentation for updating notebook
imports (#7244)
* Add documentation for updating `notebook` imports * fix typos
This commit is contained in:
parent
5909ff9655
commit
aef8e95fc5
@ -52,6 +52,12 @@ front-end Notebook client (i.e. the familiar notebook interface).
|
||||
> - Related: [Configuring a language kernel](https://ipython.readthedocs.io/en/latest/install/kernel_install.html)
|
||||
> to run in the Jupyter Server enables your server to run other languages, like R or Julia.
|
||||
|
||||
```{warning}
|
||||
Jupyter Notebook 7 is now based on Jupyter Server. This may break some previous `notebook` imports you may have been using, such as `notebook.auth` or `notebook.notebookapp`.
|
||||
|
||||
Check out the [migration guide](../migrating/server-imports.md) to learn more on how to update these server imports.
|
||||
```
|
||||
|
||||
(configure-nbextensions)=
|
||||
|
||||
## Notebook extensions
|
||||
|
@ -73,6 +73,7 @@ notebook_7_features.md
|
||||
|
||||
migrating/frontend-extensions.md
|
||||
migrating/server-extensions.md
|
||||
migrating/server-imports.md
|
||||
migrating/custom-themes.md
|
||||
migrating/multiple-interfaces.md
|
||||
```
|
||||
|
33
docs/source/migrating/server-imports.md
Normal file
33
docs/source/migrating/server-imports.md
Normal file
@ -0,0 +1,33 @@
|
||||
# Server Imports in Notebook 7
|
||||
|
||||
Notebook 7 is now based on Jupyter Server, which lets users run multiple Jupyter frontends (e.g. Notebook, JupyterLab, NBClassic, etc.) on the same server.
|
||||
|
||||
Prior to Notebook 7, the Classic Notebook server included the server modules in the `notebook` package. This means it was possible to import the server modules from the `notebook` package, for example:
|
||||
|
||||
```python
|
||||
from notebook.auth import passwd
|
||||
passwd("foo")
|
||||
```
|
||||
|
||||
Or:
|
||||
|
||||
```python
|
||||
from notebook import notebookapp
|
||||
notebookapp.list_running_servers()
|
||||
```
|
||||
|
||||
In Notebook 7, these server modules are now exposed by the `jupyter_server` package. The code snippets above should be updated to:
|
||||
|
||||
```python
|
||||
from jupyter_server.auth import passwd
|
||||
passwd("foo")
|
||||
```
|
||||
|
||||
And:
|
||||
|
||||
```python
|
||||
from jupyter_server import serverapp
|
||||
serverapp.list_running_servers()
|
||||
```
|
||||
|
||||
These are just examples, so you may have to adjust your use of `notebook` imports based on the specific server modules you were using.
|
Loading…
x
Reference in New Issue
Block a user