Coder Social home page Coder Social logo

deephaven_ui_experimental's Introduction

deephaven_ui_experimental

This is a Python plugin for Deephaven generated from a deephaven-plugin template.

Specifically, this plugin is a bidirectional widget plugin, which can send and receive messages on both the client and server. The plugin works out of the box, demonstrates basic plugin structure, and can be used as a starting point for building more complex plugins.

Plugin Structure

The src directory contains the Python and JavaScript code for the plugin. Within the src directory, the deephaven_ui_experimental directory contains the Python code, and the js directory contains the JavaScript code.

The Python files have the following structure: deephaven_ui_experimental_object.py defines a simple Python class that can send messages to the client. deephaven_ui_experimental_type.py defines the Python type for the plugin (which is used for registration) and a simple message stream. js_plugin.py defines the Python class that will be used to setup the JavaScript side of the plugin. register.py registers the plugin with Deephaven.

The JavaScript files have the following structure: DeephavenUiExperimentalPlugin.ts registers the plugin with Deephaven. DeephavenUiExperimentalView.tsx defines the plugin panel and message handling.

Additionally, the test directory contains Python tests for the plugin. This demonstrates how the embedded Deephaven server can be used in tests. It's recommended to use tox to run the tests, and the tox.ini file is included in the project.

Building the Plugin

To build the plugin, you will need npm and python installed, as well as the build package for Python. nvm is also strongly recommended, and an .nvmrc file is included in the project. The python venv can be created and the recommended packages installed with the following commands:

cd deephaven_ui_experimental
python -m venv .venv
source .venv/bin/activate
pip install --upgrade -r requirements.txt

Build the JavaScript plugin from the src/js directory:

cd src/js
nvm install
npm install
npm run build

Then, build the Python plugin from the top-level directory:

cd ../..
python -m build --wheel

The built wheel file will be located in the dist directory.

Installing the Plugin

The plugin can be installed into a Deephaven instance with pip install <wheel file>. The wheel file is stored in the dist directory after building the plugin. Exactly how this is done will depend on how you are running Deephaven. If using the venv created above, the plugin and server can be created with the following commands:

pip install deephaven-server
pip install dist/deephaven_ui_experimental-0.0.1.dev0-py3-none-any.whl --force-reinstall
deephaven server

See the plug-in documentation for more information.

Using the Plugin

Once the Deephaven server is running, the plugin should be available to use.

from deephaven_ui_experimental import DeephavenUiExperimentalObject

obj = DeephavenUiExperimentalObject()

A panel should appear. You can now use the object to send messages to the client.

obj.send_message("Hello, world!")

The panel can also send messages back to the Python client by using the input field.

Distributing the Plugin

To distribute the plugin, you can upload the wheel file to a package repository, such as PyPI. The version of the plugin can be updated in the setup.cfg file.

There is a separate instance of PyPI for testing purposes. Start by creating an account at TestPyPI. Then, get an API token from account management, setting the “Scope” to “Entire account”.

To upload to the test instance, use the following commands:

python -m pip install --upgrade twine
python -m twine upload --repository testpypi dist/*

Now, you can install the plugin from the test instance. The extra index is needed to find dependencies:

pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ deephaven_ui_experimental

For a production release, create an account at PyPI. Then, get an API token from account management, setting the “Scope” to “Entire account”.

To upload to the production instance, use the following commands. Note that --repository is the production instance by default, so it can be omitted:

python -m pip install --upgrade twine
python -m twine upload dist/*

Now, you can install the plugin from the production instance:

pip install deephaven_ui_experimental

See the Python packaging documentation for more information.

deephaven_ui_experimental's People

Contributors

mofojed avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.