# deephaven_ui_datetimeinput
This is a Python plugin for Deephaven generated from a [deephaven-plugin](https://github.com/deephaven/deephaven-plugins) 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_datetimeinput directory contains the Python code, and the `js` directory contains the JavaScript code.
The Python files have the following structure:
`deephaven_ui_datetimeinput_object.py` defines a simple Python class that can send messages to the client.
`deephaven_ui_datetimeinput_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:
`DeephavenUiDateTimeInputPlugin.ts` registers the plugin with Deephaven.
`DeephavenUiDateTimeInputView.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:
```sh
cd deephaven_ui_datetimeinput
python -m venv .venv
source .venv/bin/activate
pip install --upgrade -r requirements.txt
```
Build the JavaScript plugin from the `src/js` directory:
```sh
cd src/js
nvm install
npm install
npm run build
```
Then, build the Python plugin from the top-level directory:
```sh
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:
```sh
pip install deephaven-server
pip install dist/deephaven_ui_datetimeinput-0.0.1.dev0-py3-none-any.whl --force-reinstall
deephaven server
```
See the [plug-in documentation](https://deephaven.io/core/docs/how-to-guides/use-plugins/) for more information.
## Using the Plugin
Once the Deephaven server is running, the plugin should be available to use.
```python
from deephaven_ui_datetimeinput import DateTimeInput
obj = DateTimeInput()
```
A panel should appear. You can now use the object to send messages to the client.
```python
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](https://pypi.org/).
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](https://test.pypi.org/account/register/).
Then, get an API token from [account management](https://test.pypi.org/manage/account/#api-tokens), setting the “Scope” to “Entire account”.
To upload to the test instance, use the following commands:
```sh
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:
```sh
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ deephaven_ui_datetimeinput
```
For a production release, create an account at [PyPI](https://pypi.org/account/register/).
Then, get an API token from [account management](https://pypi.org/manage/account/#api-tokens), 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:
```sh
python -m pip install --upgrade twine
python -m twine upload dist/*
```
Now, you can install the plugin from the production instance:
```sh
pip install deephaven_ui_datetimeinput
```
See the [Python packaging documentation](https://packaging.python.org/en/latest/tutorials/packaging-projects/#uploading-the-distribution-archives) for more information.
Raw data
{
"_id": null,
"home_page": null,
"name": "deephaven-ui-datetimeinput",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "deephaven, plugin, graph",
"author": "Deephaven Data Labs",
"author_email": "mikebender@deephaven.io",
"download_url": null,
"platform": "any",
"description": "# deephaven_ui_datetimeinput\n\nThis is a Python plugin for Deephaven generated from a [deephaven-plugin](https://github.com/deephaven/deephaven-plugins) template.\n\nSpecifically, this plugin is a bidirectional widget plugin, which can send and receive messages on both the client and server.\nThe plugin works out of the box, demonstrates basic plugin structure, and can be used as a starting point for building more complex plugins.\n\n## Plugin Structure\n\nThe `src` directory contains the Python and JavaScript code for the plugin.\nWithin the `src` directory, the deephaven_ui_datetimeinput directory contains the Python code, and the `js` directory contains the JavaScript code.\n\nThe Python files have the following structure:\n`deephaven_ui_datetimeinput_object.py` defines a simple Python class that can send messages to the client.\n`deephaven_ui_datetimeinput_type.py` defines the Python type for the plugin (which is used for registration) and a simple message stream.\n`js_plugin.py` defines the Python class that will be used to setup the JavaScript side of the plugin.\n`register.py` registers the plugin with Deephaven.\n\nThe JavaScript files have the following structure:\n`DeephavenUiDateTimeInputPlugin.ts` registers the plugin with Deephaven.\n`DeephavenUiDateTimeInputView.tsx` defines the plugin panel and message handling.\n\nAdditionally, the `test` directory contains Python tests for the plugin. This demonstrates how the embedded Deephaven server can be used in tests.\nIt's recommended to use `tox` to run the tests, and the `tox.ini` file is included in the project.\n\n## Building the Plugin\n\nTo build the plugin, you will need `npm` and `python` installed, as well as the `build` package for Python.\n`nvm` is also strongly recommended, and an `.nvmrc` file is included in the project.\nThe python venv can be created and the recommended packages installed with the following commands:\n\n```sh\ncd deephaven_ui_datetimeinput\npython -m venv .venv\nsource .venv/bin/activate\npip install --upgrade -r requirements.txt\n```\n\nBuild the JavaScript plugin from the `src/js` directory:\n\n```sh\ncd src/js\nnvm install\nnpm install\nnpm run build\n```\n\nThen, build the Python plugin from the top-level directory:\n\n```sh\ncd ../..\npython -m build --wheel\n```\n\nThe built wheel file will be located in the `dist` directory.\n\n## Installing the Plugin\n\nThe plugin can be installed into a Deephaven instance with `pip install <wheel file>`.\nThe wheel file is stored in the `dist` directory after building the plugin.\nExactly how this is done will depend on how you are running Deephaven.\nIf using the venv created above, the plugin and server can be created with the following commands:\n\n```sh\npip install deephaven-server\npip install dist/deephaven_ui_datetimeinput-0.0.1.dev0-py3-none-any.whl --force-reinstall\ndeephaven server\n```\n\nSee the [plug-in documentation](https://deephaven.io/core/docs/how-to-guides/use-plugins/) for more information.\n\n## Using the Plugin\n\nOnce the Deephaven server is running, the plugin should be available to use.\n\n```python\nfrom deephaven_ui_datetimeinput import DateTimeInput\n\nobj = DateTimeInput()\n```\n\nA panel should appear. You can now use the object to send messages to the client.\n\n```python\nobj.send_message(\"Hello, world!\")\n```\n\nThe panel can also send messages back to the Python client by using the input field.\n\n## Distributing the Plugin\n\nTo distribute the plugin, you can upload the wheel file to a package repository, such as [PyPI](https://pypi.org/).\nThe version of the plugin can be updated in the `setup.cfg` file.\n\nThere is a separate instance of PyPI for testing purposes.\nStart by creating an account at [TestPyPI](https://test.pypi.org/account/register/).\nThen, get an API token from [account management](https://test.pypi.org/manage/account/#api-tokens), setting the \u201cScope\u201d to \u201cEntire account\u201d.\n\nTo upload to the test instance, use the following commands:\n\n```sh\npython -m pip install --upgrade twine\npython -m twine upload --repository testpypi dist/*\n```\n\nNow, you can install the plugin from the test instance. The extra index is needed to find dependencies:\n\n```sh\npip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ deephaven_ui_datetimeinput\n```\n\nFor a production release, create an account at [PyPI](https://pypi.org/account/register/).\nThen, get an API token from [account management](https://pypi.org/manage/account/#api-tokens), setting the \u201cScope\u201d to \u201cEntire account\u201d.\n\nTo upload to the production instance, use the following commands.\nNote that `--repository` is the production instance by default, so it can be omitted:\n\n```sh\npython -m pip install --upgrade twine\npython -m twine upload dist/*\n```\n\nNow, you can install the plugin from the production instance:\n\n```sh\npip install deephaven_ui_datetimeinput\n```\n\nSee the [Python packaging documentation](https://packaging.python.org/en/latest/tutorials/packaging-projects/#uploading-the-distribution-archives) for more information.\n",
"bugtrack_url": null,
"license": null,
"summary": "DateTime input plugin for Deephaven",
"version": "0.0.1.dev0",
"project_urls": null,
"split_keywords": [
"deephaven",
" plugin",
" graph"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "30a127bd984a828e15d9fa992155cdc1de5652cdba09c4e6d6788e855316af71",
"md5": "60e27e1a28627c6eb029dceff8cc3bd2",
"sha256": "dc537fa967f05870f459b4cc43d74ee1593a9cfd22f0b2b8fa163795fddf990f"
},
"downloads": -1,
"filename": "deephaven_ui_datetimeinput-0.0.1.dev0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "60e27e1a28627c6eb029dceff8cc3bd2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 14145,
"upload_time": "2024-06-02T22:20:51",
"upload_time_iso_8601": "2024-06-02T22:20:51.214644Z",
"url": "https://files.pythonhosted.org/packages/30/a1/27bd984a828e15d9fa992155cdc1de5652cdba09c4e6d6788e855316af71/deephaven_ui_datetimeinput-0.0.1.dev0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-02 22:20:51",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "deephaven-ui-datetimeinput"
}