jupyter_server
jupyter_server copied to clipboard
The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.
Instead of the html for the JupyterLab page, I'm seeing the following: Replication: - Install `jupyterlab` from a git checkout - Run `pip install -e .` - Make sure you...
We should push restarting status in case of Kernel Restart, see description in https://github.com/jupyterlab/jupyterlab/pull/8562#issuecomment-646958719
With the work @echarles started on Virtual Notebook (lazy loading on cells on open) for JLab, having to deal with very large files, notebooks for this example opens the opportunity...
Hi, I'm currently packaging jupyter_server for Debian, and prepared a manual page for the command line utility. It was done using help2man and elbow grease. [jupyter-server.1.txt](https://github.com/jupyter/jupyter_server/files/5397149/jupyter-server.1.txt)
We have an [API file](https://github.com/jupyter/jupyter_server/blob/master/jupyter_server/services/api/api.yaml) following the [OpenAPI spec](https://swagger.io/specification/), but it does not cover all of the URLs. We should have another top level doc for the other endpoints, such...
Fixes: https://github.com/jupyter-server/jupyter_server/issues/1439 Pass HTTP query param session_id during Websocket channel connection. Example: ``` GET /api/kernels/342eba8f-aa8c-47a9-8fee-8541cee8ddfe/channels ``` vs ``` GET /api/kernels/342eba8f-aa8c-47a9-8fee-8541cee8ddfe/channels?session_id=4feb3f46-4e83-4fba-bebd-3aba95e96fc0 ```
## Description Connecting JupyterLab 4.2.2 or Vscode (Jupyter extension) to Google Colab Enterprise fails. Scenario: - JupyterLab 4.2.2 with Gateway enabled. (`c.GatewayClient.url`) - Colab Enterprise (Using Proxy URL) In Colab...
## References This work is in progress as JEP [jupyter/enhancement-proposals#87](https://github.com/jupyter/enhancement-proposals/pull/87). This PR should be reviewed when the JEP has been accepted ## Code changes This PR includes support of `custom_kernel_specs`...
Fixes #1436 This is mostly to guard users posting debug logs online from exposing secrets which they may have in their environment
## Description In the `--debug` mode the server logs environment variables which may be sensitive. These should not be included IMO: https://github.com/jupyter-server/jupyter_server/blob/b85c15b5678cd6ea9de28e4f547bc0dfef0a69c7/jupyter_server/services/kernels/kernelmanager.py#L246 Maybe something like `self.log.debug("Kernel args: %r", {k: v...