JupyterLab Sidepanel for Apache Beam
Project description
apache-beam-jupyterlab-sidepanel
Includes two different side panels:
- The Inspector side panel provides information and controls to run Apache Beam notebooks interactively.
- The Clusters side panel displays all Dataproc clusters managed by Interactive Beam and provides controls to configure cluster usage.
Requirements
| JupyterLab version | Extension version |
|---|---|
| v4 | >=v4.0.0 |
| v3 | v2.0.0-v3.0.0 |
| v2 | v1.0.0 |
Installation
There are two ways to install the extension:
1. Via pip (recommended)
The extension is now available as a Python package on PyPI.
Install it with:
pip install apache-beam-jupyterlab-sidepanel
After installation, rebuild JupyterLab to activate the extension:
jupyter lab clean
jupyter lab build
Then restart JupyterLab. The side panels will be available automatically.
2. Via JupyterLab Extension Manager (legacy, will be deprecated soon)
jupyter labextension install apache-beam-jupyterlab-sidepanel
This installs the extension using JupyterLab's legacy extension system.
Notes
- Pip installation is now the preferred method as it handles Python packaging and JupyterLab extension registration seamlessly.
- After any upgrade or reinstallation, always rebuild JupyterLab to ensure the extension is activated.
- For detailed usage and development, refer to the source code and issues on GitHub.
Contributing
Note: When creating a Python package, the module name (i.e., the folder name and import path) must use underscores (
_) instead of dashes (-). Dashes are not allowed in Python identifiers.
However, the distribution name (the name used inpip install ...) can include dashes, and this is a common convention in the Python ecosystem.
For example:
pip install apache-beam-jupyterlab-sidepanel✅import apache_beam_jupyterlab_sidepanel✅import apache-beam-jupyterlab-sidepanel❌ (invalid syntax)
Install
The jlpm command is JupyterLab's pinned version of
yarn that is installed with JupyterLab. You may use
yarn or npm in lieu of jlpm below.
# Clone the repo to your local environment
# Move to apache-beam-jupyterlab-sidepanel directory
# Install dependencies
jlpm
# Build Typescript source
jlpm build
# Link your development version of the extension with JupyterLab
jupyter labextension link .
# Rebuild Typescript source after making changes
jlpm build
# Rebuild JupyterLab after making any changes
jupyter lab build
You can watch the source directory and run JupyterLab in watch mode to watch for changes in the extension's source and automatically rebuild the extension and application.
# Watch the source directory in another terminal tab
jlpm watch
# Run jupyterlab in watch mode in one terminal tab
jupyter lab --watch
Now every change will be built locally and bundled into JupyterLab. Be sure to refresh your browser page after saving file changes to reload the extension (note: you'll need to wait for webpack to finish, which can take 10s+ at times).
Test
To run all tests, under apache-beam-jupyterlab-sidepanel directory, simply do:
# Make sure all dependencies are installed.
jlpm
# Run all tests.
jlpm jest
This project uses ts-jest to test all ts/tsx files under src/__tests__ directory.
To run a single test, find out the name of a test in the source code that looks like:
it('does ABC', () => {...})
Then run:
jlpm jest -t 'does ABC'
Format and lint
The project uses prettier for formatting and eslint for lint. Prettier is configured as a plugin used by eslint. There are pre-configured yarn scripts to execute them.
# Under apache-beam-jupyterlab-sidepanel directory.
# Make sure dependencies are installed.
# Prettier and eslint are both installed as dev dependencies.
jlpm
# Check format and lint issues.
jlpm eslint:check
# Check then fix in place format and lint issues.
jlpm eslint
Packaging
This JupyterLab extension is distributed as a prebuilt Python package, and includes all necessary frontend assets (TypeScript-compiled JavaScript, styles, and metadata).
Build from source
To build the extension locally and package it into a wheel:
# Ensure build dependencies are available
pip install build jupyterlab jupyter_packaging hatch
# Build the wheel and source tarball
hatch build
This will generate dist/*.whl and dist/*.tar.gz files.
Install locally via pip
pip install .
After installation, JupyterLab will automatically discover and enable the extension. You can verify it was installed via:
jupyter labextension list
If properly installed, your extension should appear under the prebuilt extensions section.
File layout expectations
A typical prebuilt extension should include the following structure under your Python package:
apache_beam_jupyterlab_sidepanel/
├── __init__.py
├── _version.py
└── labextension/
├── package.json
├── install.json
└── static/
└── ...
These will be copied to:
$PREFIX/share/jupyter/labextensions/apache-beam-jupyterlab-sidepanel/
Uninstall
jupyter labextension uninstall apache-beam-jupyterlab-sidepanel
or
pip uninstall apache-beam-jupyterlab-sidepanel
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 apache_beam_jupyterlab_sidepanel-4.0.0-py3-none-any.whl.
File metadata
- Download URL: apache_beam_jupyterlab_sidepanel-4.0.0-py3-none-any.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae231f924632bb33881c3e1794bb7a74b8632a42fa6989fbc0c3d868fc134eb0
|
|
| MD5 |
90733f3041435e0c11eb08efa46df523
|
|
| BLAKE2b-256 |
9b9e4ed87c03c7f37c2139126f5a4e7a412b37681606d3a6738fcd634213358f
|