jupyter_server
jupyter_server copied to clipboard
The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications.
@char101 opened an [issue on JupyterLab](https://github.com/jupyterlab/jupyterlab/issues/12917) that seems like it is likely to be addressable in `jupyter_server`. What do you think? ## Description It seems that jupyter uses `tornado.log` for...
Replaces [`jupyter_telemetry`](https://github.com/jupyter/telemetry) with [`jupyter_events`](https://github.com/jupyter/jupyter_events). Telemetry is a more specific use case of the Jupyter Event System mentioned in #780, and it brings some extra constraints that won't be addressed by...
This is an alternate pull request to #818, which added a resource_dir field to the response output. Instead, this PR replaces the template string of {resource_dir} with the provided resource_dir...
# File ID Manager design Right now, there is no universal way in Jupyter for developers to track a file as it is created, modified, and renamed. This is essential...
The secondary serverextension apps (enable/disable/list) should probably always complete even if an extension raises an error, so in those cases, default to just warning about exceptions, but still complete. Fixes...
# Overview Draft implementation of File ID service proposed [here](https://github.com/jupyterlab/jupyterlab/issues/12614). File ID Service maintains a bi-directional mapping between file IDs and file names. This service permits bi-directional lookup, and preserves...
- the event loop should be initialized as early as possible to allow access to the loop during init steps without relying on IOLoop.current() - always run bind_http_server inside event...
The `page.html` template using to include loading of `custom.css` from `.jupyter/custom` path with a line of the form: ```html ``` This meant custom styles could be used to support custom...
*This is a draft document, please feel free to comment and help.* We have (at least) two concurrent efforts that overlap but are not full implementations of a generic event...
### Problem I was tracing the `ContentsManager` implementation to find out how I can attach some logic to its copy/rename/move methods. According the dev docs, the default implementation of the...