Jupyter client
A Jupyter Server Contents Manager implementation that provides seamless integration with CS3 (Cloud Storage Synchronization and Sharing) storage systems. This allows Jupyter environments to directly interact with distributed storage backends that implement the CS3 API, such as CERNBox.
The package also includes a JupyterLab extension that adds CERNBox sidebar panels (Spaces, Shares) and a storage quota indicator to the file browser.
Overview
The CS3 Contents Manager extends Jupyter Server's file management capabilities to work with CS3-compatible storage systems. It provides a complete replacement for the default file-based contents manager, enabling users to open, edit, save, and manage notebooks and files stored in remote CS3 storage.
Architecture
The CS3 Contents Manager consists of several key components:
Core Components
-
CS3FileContentsManager (
cs3_contents_manager/filemanager.py)- Implements Jupyter's AsyncContentsManager interface
- Handles file and directory operations
- Contains methods that are significantly different then its upstream countpart.
-
UpstreamFileContentsManager (
cs3_contents_manager/upstreamlargefilemanager.py)- Main contents manager class
- Implements Jupyter's AsyncContentsManager interface
- Handles file and directory operations
- Contains methods where only the OS functionality is replaced and can be pushed upstream.
-
CS3FileSystem (
cs3_contents_manager/cs3fs/cs3fs.py)- CS3 storage abstraction layer
- Provides filesystem-like interface over CS3 APIs
- Handles low-level CS3 client operations
-
CS3FileManagerMixin (
cs3_contents_manager/fileio.py)- Base mixin providing common file operations
- Authentication and configuration management
- File I/O utilities
-
CS3FileCheckpoints (
cs3_contents_manager/filecheckpoints.py)- Checkpoint management for notebooks
- Backup and restore functionality
-
UpstreamLargeFileManager (
cs3_contents_manager/largefilemanager.py)- Specialized handling for large file uploads
- Chunked transfer support
JupyterLab Extension
The bundled labextension (@cs3org/cs3-jupyter) provides three plugins:
- Spaces - sidebar panel listing CERNBox Spaces (projects) the user has access to
- Shares - sidebar panel showing incoming and outgoing CERNBox shared folders
- Storage Quota - progress bar at the bottom of the file browser showing storage usage
Installation
Install from Source
git clone <repository-url>
cd jupyter-client
pip install -e .
Labextension Development
# Create fake EOS directories for testing
./setup-fake-eos.sh ./fake-eos
# Install the extension (pip install -e . also builds the labextension)
pip install -e .
# Alternative manual install
# jlpm install
# jlpm build
# jupyter labextension develop . --overwrite
# Verify the extension is loaded
jupyter labextension list
# Start JupyterLab
jupyter lab \
--ServerApp.root_dir='./fake-eos' \
--FileContentsManager.preferred_dir='user/<u>/<user>' \
--ServerApp.token=''
Configuration
Jupyter Server Configuration
Add the following to your jupyter_server_config.py:
from cs3_jupyter.cs3largefilemanager import CS3LargeFileManager
c.ServerApp.contents_manager_class = CS3LargeFileManager
c.CS3FileManagerMixin.host = '<host>'
c.CS3FileManagerMixin.tus_enabled = False
c.CS3FileManagerMixin.ssl_enabled = False
c.CS3FileManagerMixin.token_path = '/path/to/oauth.token'
c.CS3FileManagerMixin.auth_login_type = 'bearer'
c.CS3FileManagerMixin.authtokenvalidity = 3600
c.CS3FileManagerMixin.lock_not_impl = False
c.CS3FileManagerMixin.lock_as_attr = False
c.CS3FileManagerMixin.root_path = '/eos/user/r/rwelande'
c.CS3FileManagerMixin.client_id = 'rwelande'
c.CS3LargeFileManager.max_copy_folder_size_mb = 500
Authentication
The CS3 Contents Manager supports OAuth token-based authentication. Set up your authentication:
- Token File: Place your OAuth token in a file (default:
/tmp/cernbox_oauth.token) - Configure Token Path: Set
token_pathin your configuration - Refresh: If authentication fails at some point the client will attempt to read in case of an update.
Release files for cs3-jupyter 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| cs3_jupyter-0.1.0.tar.gz | 125.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| cs3_jupyter-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 187.8 kB
Release files / cs3_jupyter-0.1.0.tar.gz
| Download URL | cs3_jupyter-0.1.0.tar.gz |
|---|---|
| Size | 125.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a65a129ea68523c4aec0493f293fed9d1c8af9bdc8e36377ce069eec75db4b55
|
|
BLAKE2b-256 checksum How to use checksums |
44a540980e3ac87f6372b3a1ccbf7af366925e2f1de3e15a2305af1b426c4a27
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.
Transparency logRelease files / cs3_jupyter-0.1.0-py3-none-any.whl
| Download URL | cs3_jupyter-0.1.0-py3-none-any.whl |
|---|---|
| Size | 62.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
1d582a1cd6c45d120a9f178bb6765a39f480059d6f565426396fc7b9bb66544e
|
|
BLAKE2b-256 checksum How to use checksums |
d5eeb57f089216a2b5bfe599c61dc526c6a075a35d868da44be0e54b1e0cd04f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 15, 2026.
Transparency log