Skip to main content

Jupyterlab extension to receive and display notifications in the main panel. Those can be from the jupyterjub administrator or from other places.

Project description

jupyterlab_notifications_extension

GitHub Actions npm version PyPI version Total PyPI downloads JupyterLab 4

JupyterLab extension for sending notifications using the native JupyterLab notification system. External systems and extensions send alerts and status updates that appear in JupyterLab's notification center.

Five notification types with distinct visual styling provide clear status communication:

Notification Types

Access via command palette for quick manual notification sending:

Command Palette

Interactive dialog with message input, type selection, auto-close timing, and action button options:

Send Dialog

Key Features:

  • REST API for external systems to POST notifications with authentication
  • Command palette integration with interactive dialog
  • Programmatic command API for extensions and automation
  • Five notification types (info, success, warning, error, in-progress)
  • Configurable auto-close with millisecond precision or manual dismiss
  • Optional action buttons (currently dismiss only)
  • Broadcast delivery via 30-second polling
  • In-memory queue cleared after delivery

Installation

pip install jupyterlab_notifications_extension

Requirements: JupyterLab >= 4.0.0

API Reference

POST /jupyterlab-notifications-extension/ingest

Send notifications to JupyterLab. Requires authentication via Authorization: token <TOKEN> header or ?token=<TOKEN> query parameter.

Endpoint: POST /jupyterlab-notifications-extension/ingest

Request Body (application/json):

{
  "message": "Your notification message",
  "type": "info",
  "autoClose": 5000,
  "actions": [
    {
      "label": "Click here",
      "caption": "Additional info",
      "displayType": "accent"
    }
  ]
}

Request Parameters:

Field Type Required Default Description
message string Yes - Notification text (max 140 characters)
type string No "info" Visual style: default, info, success, warning, error, in-progress
autoClose number/boolean No 5000 Milliseconds before auto-dismiss. false = manual dismiss only. 0 = silent mode (notification center only, no toast)
actions array No [] Action buttons (see below)

Action Button Schema:

Field Type Required Default Description
label string Yes - Button text
caption string No "" Tooltip text
displayType string No "default" Visual style: default, accent, warn, link

Note: Action buttons are purely visual. Clicking any button dismisses the notification using JupyterLab's native behavior. Buttons do not trigger custom callbacks or actions.

Response (200 OK):

{
  "success": true,
  "notification_id": "notif_1762549476180_0"
}

Error Responses:

  • 400 Bad Request - Missing message field or invalid JSON
  • 401 Unauthorized - Missing or invalid authentication token
  • 500 Internal Server Error - Server-side processing error

Usage Examples

From JupyterLab Extensions

Send notifications programmatically from other extensions:

// Basic notification
await app.commands.execute('jupyterlab-notifications:send', {
  message: 'Operation complete'
});

// Custom type and auto-close
await app.commands.execute('jupyterlab-notifications:send', {
  message: 'Build finished successfully',
  type: 'success',
  autoClose: 3000
});

// With action button
await app.commands.execute('jupyterlab-notifications:send', {
  message: 'Error processing data',
  type: 'error',
  autoClose: false,
  actions: [{ label: 'View Details', displayType: 'accent' }]
});

Python Script

The included script auto-detects tokens from JUPYTERHUB_API_TOKEN, JPY_API_TOKEN, or JUPYTER_TOKEN environment variables:

# Basic notification
./scripts/send_notification.py --message "Deployment complete" --type success

# Persistent warning (no auto-close)
./scripts/send_notification.py --message "System maintenance in 1 hour" --type warning --no-auto-close

# Silent mode (notification center only)
./scripts/send_notification.py --message "Background task finished" --auto-close 0

cURL

# Basic info notification
curl -X POST http://localhost:8888/jupyterlab-notifications-extension/ingest \
  -H "Content-Type: application/json" \
  -H "Authorization: token YOUR_TOKEN" \
  -d '{"message": "Build completed", "type": "info"}'

# Error notification with action button
curl -X POST http://localhost:8888/jupyterlab-notifications-extension/ingest \
  -H "Content-Type: application/json" \
  -H "Authorization: token YOUR_TOKEN" \
  -d '{
    "message": "Build failed on main branch",
    "type": "error",
    "autoClose": false,
    "actions": [{
      "label": "View Logs",
      "caption": "Open build logs",
      "displayType": "accent"
    }]
  }'

Architecture

Broadcast-only model - all notifications delivered to the JupyterLab server.

Flow: External system POSTs to /jupyterlab-notifications-extension/ingest -> Server queues in memory -> Frontend polls /jupyterlab-notifications-extension/notifications every 30 seconds -> Displays via JupyterLab notification manager -> Clears queue after fetch.

Troubleshooting

Frontend installed but not working:

jupyter server extension list  # Verify server extension enabled

Server extension enabled but frontend missing:

jupyter labextension list  # Verify frontend extension installed

Notifications not appearing: Check browser console for polling errors or verify JupyterLab was restarted after installation.

Uninstall

pip uninstall jupyterlab_notifications_extension

Development

Setup

Requires NodeJS to build the extension. Uses jlpm (JupyterLab's pinned yarn) for package management.

# Install in development mode
python -m venv .venv
source .venv/bin/activate
pip install --editable ".[dev,test]"

# Link extension with JupyterLab
jupyter labextension develop . --overwrite
jupyter server extension enable jupyterlab_notifications_extension

# Build TypeScript
jlpm build

Development workflow

Run jlpm watch in one terminal to auto-rebuild on changes, and jupyter lab in another. Refresh browser after rebuilds to load changes.

jlpm watch           # Auto-rebuild on file changes
jupyter lab          # Run JupyterLab

Cleanup

jupyter server extension disable jupyterlab_notifications_extension
pip uninstall jupyterlab_notifications_extension
# Remove symlink: find via `jupyter labextension list`

Testing

Python tests (Pytest):

pip install -e ".[test]"
pytest -vv -r ap --cov jupyterlab_notifications_extension

Frontend tests (Jest):

jlpm test

Integration tests (Playwright/Galata): See ui-tests/README.md

Packaging

See RELEASE.md for release procedures.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupyterlab_notifications_extension-1.1.10.tar.gz (482.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file jupyterlab_notifications_extension-1.1.10.tar.gz.

File metadata

File hashes

Hashes for jupyterlab_notifications_extension-1.1.10.tar.gz
Algorithm Hash digest
SHA256 7c2a7d67ca47cc900d8c13c399f2b56de7bacfe0f33a7be416fefd843d951865
MD5 ca9ed8b63b96647c60d8129a93500dd8
BLAKE2b-256 5ccd73c50f6010d21e596c6c0c1fa5428c2da46015d58124255553ebeb6f512a

See more details on using hashes here.

File details

Details for the file jupyterlab_notifications_extension-1.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for jupyterlab_notifications_extension-1.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 58f7365466ee96d764e5e65d19d9be9c3f64b4efcfc36da59d8f55bc8f5b8b52
MD5 9175d60f863d2fd7978b5cdae96fc016
BLAKE2b-256 29d73b7af38dd255373ffdd7e83cd4c83fbd5e00ab9c01c087e7c0a088ae99b4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page