jupyter_live_content
A JupyterLab extension that keeps open documents in sync with their file on disk. When a file changes on disk while you have it open — for example, an AI agent or another process rewrites it — this extension reloads the document in the browser so what you see stays current, without requiring real-time collaboration (RTC).
This extension is composed of a Python package named jupyter_live_content
for the server extension and a NPM package named @jupyter-ai-contrib/live-content
for the frontend extension.
How it works
The server extension watches the content directory for filesystem changes and
notifies the browser over a WebSocket when a file you have open changes. The
frontend then reloads that document from disk (context.revert()), but only for
documents where a whole-file reload is safe.
Reloading is deliberately conservative. It is applied only to documents whose view is a pure function of the file's bytes, so a reload cannot destroy in-memory state. This is an allowlist: any document type not listed below is left untouched rather than reloaded.
What gets updated
| Document | Updated live? | Notes |
|---|---|---|
Text / code / Markdown in a file editor (FileEditor) |
Yes | Reloads the text buffer. Includes a notebook opened via Open With → Editor. |
Markdown preview (MarkdownViewer) |
Yes | Re-renders from the reloaded text. |
Images (ImageViewer) |
Yes | Re-renders the image. |
| A document with unsaved changes (dirty) | No | Your edits are never clobbered; JupyterLab's save-conflict dialog resolves the divergence when you next save. |
| Notebooks (the notebook view) | No | Reverting would discard outputs, execution counts, cell IDs, and the running-kernel association. This holds even for a read-only notebook, since read-only blocks saving but not running cells. |
| Collaborative / RTC-backed documents (JupyterGIS, JupyterCAD, chat files, …) | No | The document's own provider owns synchronization. |
| Any other / third-party document type | No | Excluded by default (allowlist). |
Real-time collaboration (RTC)
If an RTC provider (jupyter_server_ydoc / Jupyter Collaboration, or
jupyter_server_documents) is installed and enabled, RTC already keeps open
documents in sync, so this extension disables itself entirely: the server does
not watch the filesystem or open a WebSocket, and the frontend does not connect.
If a provider is installed but disabled (via jupyter server extension disable
or the disable_rtc trait), this extension stays active.
Future work
- Notebooks. Reliably reconciling an out-of-band notebook edit with live in-memory state (so a benign change to one cell doesn't blow away work in another) is unsolved. See the discussion in #2 and #5.
- More viewer types. Other read-only viewers (CSV/TSV, etc.) could be added to the allowlist as their reload behavior is validated.
- PDFs. JupyterLab 4 ships no built-in PDF document-widget viewer, so there is currently no PDF surface to update; a custom viewer would need to opt in.
Requirements
- JupyterLab >= 4.0.0
Install
To install the extension, execute:
pip install jupyter_live_content
Uninstall
To remove the extension, execute:
pip uninstall jupyter_live_content
Troubleshoot
If you are seeing the frontend extension, but it is not working, check that the server extension is enabled:
jupyter server extension list
If the server extension is installed and enabled, but you are not seeing the frontend extension, check the frontend extension is installed:
jupyter labextension list
Contributing
If you would like to contribute to this extension, please refer to the Contributing Guide.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jupyter_live_content-0.1.1.tar.gz.
File metadata
- Download URL: jupyter_live_content-0.1.1.tar.gz
- Upload date:
- Size: 211.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.12.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0acc3dd881bf9ffd765fc321c21cda06414bca3733af9780612a134ce3db96e0
|
|
| MD5 |
7a975588256fea8703c256dbd7fb8b77
|
|
| BLAKE2b-256 |
1f04048295f00a16af1c3351b4677bdd1fe065ad8841ebeddbd8a672ebc0ed32
|
File details
Details for the file jupyter_live_content-0.1.1-py3-none-any.whl.
File metadata
- Download URL: jupyter_live_content-0.1.1-py3-none-any.whl
- Upload date:
- Size: 30.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.12.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f35f366dd040e9303de6c03a992e35d531726c151bf1cbfb645dd89d8ee0f283
|
|
| MD5 |
ab58cacc332d00b0be3c690578b996a0
|
|
| BLAKE2b-256 |
86f16e4a809a0d11df5e964ca18999eb0f0c20d8ab88901060e01379d96430bb
|