deephaven.ui Plugin
Plugin prototype for programmatic layouts and callbacks. Currently calling it deephaven.ui but that's not set in stone.
Build
To create your build / development environment (skip the first two lines if you already have a venv):
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip setuptools
pip install build deephaven-plugin plotly
To build:
python -m build --wheel
The wheel is stored in dist/.
To test within deephaven-core, note where this wheel is stored (using pwd, for example).
Then, follow the directions in the top-level README.md to install the wheel into your Deephaven environment.
To unit test, run the following command from the root of the repo:
tox -e py
Usage
Once you have the JS and python plugins installed and the server started, you can use deephaven.ui. See examples for examples.
Logging
The Python library uses the logging module to log messages. The default log level is WARNING. To change the log level for debugging, set the log level to DEBUG:
import logging
import sys
# Have the root logger output to stdout instead of stderr
logging.basicConfig(stream=sys.stdout, level=logging.WARNING)
# Set the log level for the deephaven.ui logger to DEBUG
logging.getLogger("deephaven.ui").setLevel(level=logging.DEBUG)
You can also set the log level for specific modules if you want to see specific modules' debug messages or filter out other ones, e.g.
# Only log warnings from deephaven.ui.hooks
logging.getLogger("deephaven.ui.hooks").setLevel(level=logging.WARNING)
# Log all debug messages from the render module specifically
logging.getLogger("deephaven.ui.render").setLevel(level=logging.DEBUG)
Docs
Docs can be built locally
Install the necessary dependencies:
pip install -r ../../sphinx_ext/sphinx-requirements.txt
pip install dist/deephaven_plugin_ui-*.whl
then run the docs make script:
python make_docs.py
The files will be built into docs/build/markdown.
Note that these built files should not be committed to the repository.
Update Icon Types
Available IconTypes can be generated automatically using icon TypeScript definitions in node_modules.
Writes to icon_types.py.
npm install
cd plugins/ui
python make_icon_types.py
Release files for deephaven-plugin-ui 0.42.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| deephaven_plugin_ui-0.42.1.tar.gz | 1.1 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| deephaven_plugin_ui-0.42.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 2.3 MB
Release files / deephaven_plugin_ui-0.42.1.tar.gz
| Download URL | deephaven_plugin_ui-0.42.1.tar.gz |
|---|---|
| Size | 1.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2a06920fc4017f353be660edb17254d1fb3c79d8e97ac88dd2886a1ef1b3a920
|
|
BLAKE2b-256 checksum How to use checksums |
736f0595c85b4bbf9df894f7ce4b87947e939eeda9afa4f81ab97a7faf162f4e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / deephaven_plugin_ui-0.42.1-py3-none-any.whl
| Download URL | deephaven_plugin_ui-0.42.1-py3-none-any.whl |
|---|---|
| Size | 1.2 MB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8701d478a17773ddd0f390ebab91ae57e6a7e5cdacd5609e93e4f461165ac10f
|
|
BLAKE2b-256 checksum How to use checksums |
9f2664d92d1d008c5537998464e81f49fae144c3475a6b164e9f99e3a7c712ab
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|