deephaven-ipywidgets


Namedeephaven-ipywidgets JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://github.com/deephaven/deephaven-ipywidgets
SummaryA Custom Jupyter Widget Library
upload_time2024-02-28 22:25:15
maintainer
docs_urlNone
authorDeephaven Data Labs LLC
requires_python>=3.6
licenseBSD
keywords jupyter widgets ipython
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # deephaven-ipywidgets

Deephaven Community IPython Widget Library

## Installation

You can install using `pip`:

```bash
pip install deephaven-ipywidgets
```

If you are using Jupyter Notebook 5.2 or earlier, you may also need to enable
the nbextension:

```bash
jupyter nbextension enable --py [--sys-prefix|--user|--system] deephaven-ipywidgets
```

## Usage

### Starting the server

First you'll need to start the [Deephaven server](https://github.com/deephaven/deephaven-core/blob/d73ef01cdf6fda43f7d03110995add26d16d4eae/py/embedded-server/README.md).

```python
# Start up the Deephaven Server on port 8080 with token `iris`
from deephaven_server import Server
s = Server(port=8080, jvm_args=["-Dauthentication.psk=iris"])
s.start()
```

### Display Tables

Pass the table into a `DeephavenWidget` to display a table:

```python
# Create a table and display it
from deephaven import empty_table
from deephaven_ipywidgets import DeephavenWidget
t = empty_table(1000).update("x=i")
display(DeephavenWidget(t))
```

You can also pass in the size you would like the widget to be:

```python
# Specify a size for the table
display(DeephavenWidget(t, width=100, height=250))
```

### Alternate Deephaven Server URL

By default, the Deephaven server is located at `http://localhost:{port}`, where `{port}` is the port set in the Deephaven server creation call. If the server is not there, such as when running a Jupyter notebook in a Docker container, modify the `DEEPHAVEN_IPY_URL` environmental variable to the correct URL before creating a `DeephavenWidget`.

```python
import os
os.environ["DEEPHAVEN_IPY_URL"] = "http://localhost:1234"
```

## Development Installation

Before starting, you will need [python3](https://www.python.org/downloads/), [node](https://nodejs.org/en/download/), and [yarn](https://classic.yarnpkg.com/lang/en/docs/install/) installed.

Create and source a dev python venv environment:

```bash
export JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home
python3 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip setuptools
pip install deephaven-server jupyter jupyterlab jupyter-packaging
```

After initial installation/creation, you can just do

```bash
source .venv/bin/activate
```

Install the python. This will also build the TS package.

```bash
pip install -e ".[test, examples]"
```

When developing your extensions, you need to manually enable your extensions with the
notebook / lab frontend. For lab, this is done by the command:

```
jupyter labextension develop --overwrite .
yarn run build
```

For classic notebook, you need to run:

```
jupyter nbextension install --sys-prefix --symlink --overwrite --py deephaven_ipywidgets
jupyter nbextension enable --sys-prefix --py deephaven_ipywidgets
```

Note that the `--symlink` flag doesn't work on Windows, so you will here have to run
the `install` command every time that you rebuild your extension. For certain installations
you might also need another flag instead of `--sys-prefix`, but we won't cover the meaning
of those flags here.

For running in VS Code, you need to run the classic notebook steps, as well as set up the VS Code environment:

1. Create a `.env` file with your `JAVA_HOME` variable set, e.g.

```bash
JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home
```

2. Create a new notebook (.ipynb) or open an existing notebook file (such as [example.ipynb](./example.ipynb))
3. In the notebook, make sure your `.venv` Python environment is selected - either use the dropdown menu in the top right, or hit `Ctrl + P` then type `> Select Kernel` and select the `Notebook: Select Notebook Kernel` option and choose `.venv`.

### How to see your changes

#### Typescript:

If you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different
terminals to watch for changes in the extension's source and automatically rebuild the widget.

```bash
# Watch the source directory in one terminal, automatically rebuilding when needed
yarn run watch
# Run JupyterLab in another terminal
jupyter lab
```

After a change wait for the build to finish and then refresh your browser and the changes should take effect.

#### Python:

If you make a change to the python code then you will need to restart the notebook kernel to have it take effect.

### Testing your changes

There are separate test suites for the python and TypeScript code.

- **Python:** To run the python tests, run `pytest` in the root directory of the repository.
- **TypeScript:** To run the TypeScript tests, run `yarn run lint:check` in the root directory of the repository to run the `eslint` tests. Then run `yarn run test` to run the rest of the unit tests.

## Releasing your initial packages:

- Add tests
- Ensure tests pass locally and on CI. Check that the coverage is reasonable.
- Make a release commit, where you remove the `, 'dev'` entry in `_version.py`.
- Update the version in `package.json`
- Relase the npm packages:
  ```bash
  npm login
  npm publish
  ```
- Install publish dependencies:

```bash
pip install build twine
```

- Build the assets and publish
  ```bash
  python -m build .
  twine check dist/*
  twine upload dist/*
  ```
- Tag the release commit (`git tag <python package version identifier>`)
- Update the version in `_version.py`, and put it back to dev (e.g. 0.1.0 -> 0.2.0.dev).
  Update the versions of the npm packages (without publishing).
- Commit the changes.
- `git push` and `git push --tags`.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/deephaven/deephaven-ipywidgets",
    "name": "deephaven-ipywidgets",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "Jupyter,Widgets,IPython",
    "author": "Deephaven Data Labs LLC",
    "author_email": "operations@deephaven.io",
    "download_url": "https://files.pythonhosted.org/packages/b6/b9/a83f3a908fbc44eff81559336bb6a62f6f2502d634fb6fb00c4ce28520ee/deephaven_ipywidgets-0.6.0.tar.gz",
    "platform": "Linux",
    "description": "# deephaven-ipywidgets\n\nDeephaven Community IPython Widget Library\n\n## Installation\n\nYou can install using `pip`:\n\n```bash\npip install deephaven-ipywidgets\n```\n\nIf you are using Jupyter Notebook 5.2 or earlier, you may also need to enable\nthe nbextension:\n\n```bash\njupyter nbextension enable --py [--sys-prefix|--user|--system] deephaven-ipywidgets\n```\n\n## Usage\n\n### Starting the server\n\nFirst you'll need to start the [Deephaven server](https://github.com/deephaven/deephaven-core/blob/d73ef01cdf6fda43f7d03110995add26d16d4eae/py/embedded-server/README.md).\n\n```python\n# Start up the Deephaven Server on port 8080 with token `iris`\nfrom deephaven_server import Server\ns = Server(port=8080, jvm_args=[\"-Dauthentication.psk=iris\"])\ns.start()\n```\n\n### Display Tables\n\nPass the table into a `DeephavenWidget` to display a table:\n\n```python\n# Create a table and display it\nfrom deephaven import empty_table\nfrom deephaven_ipywidgets import DeephavenWidget\nt = empty_table(1000).update(\"x=i\")\ndisplay(DeephavenWidget(t))\n```\n\nYou can also pass in the size you would like the widget to be:\n\n```python\n# Specify a size for the table\ndisplay(DeephavenWidget(t, width=100, height=250))\n```\n\n### Alternate Deephaven Server URL\n\nBy default, the Deephaven server is located at `http://localhost:{port}`, where `{port}` is the port set in the Deephaven server creation call. If the server is not there, such as when running a Jupyter notebook in a Docker container, modify the `DEEPHAVEN_IPY_URL` environmental variable to the correct URL before creating a `DeephavenWidget`.\n\n```python\nimport os\nos.environ[\"DEEPHAVEN_IPY_URL\"] = \"http://localhost:1234\"\n```\n\n## Development Installation\n\nBefore starting, you will need [python3](https://www.python.org/downloads/), [node](https://nodejs.org/en/download/), and [yarn](https://classic.yarnpkg.com/lang/en/docs/install/) installed.\n\nCreate and source a dev python venv environment:\n\n```bash\nexport JAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home\npython3 -m venv .venv\nsource .venv/bin/activate\npip install --upgrade pip setuptools\npip install deephaven-server jupyter jupyterlab jupyter-packaging\n```\n\nAfter initial installation/creation, you can just do\n\n```bash\nsource .venv/bin/activate\n```\n\nInstall the python. This will also build the TS package.\n\n```bash\npip install -e \".[test, examples]\"\n```\n\nWhen developing your extensions, you need to manually enable your extensions with the\nnotebook / lab frontend. For lab, this is done by the command:\n\n```\njupyter labextension develop --overwrite .\nyarn run build\n```\n\nFor classic notebook, you need to run:\n\n```\njupyter nbextension install --sys-prefix --symlink --overwrite --py deephaven_ipywidgets\njupyter nbextension enable --sys-prefix --py deephaven_ipywidgets\n```\n\nNote that the `--symlink` flag doesn't work on Windows, so you will here have to run\nthe `install` command every time that you rebuild your extension. For certain installations\nyou might also need another flag instead of `--sys-prefix`, but we won't cover the meaning\nof those flags here.\n\nFor running in VS Code, you need to run the classic notebook steps, as well as set up the VS Code environment:\n\n1. Create a `.env` file with your `JAVA_HOME` variable set, e.g.\n\n```bash\nJAVA_HOME=/Library/Java/JavaVirtualMachines/openjdk-11.jdk/Contents/Home\n```\n\n2. Create a new notebook (.ipynb) or open an existing notebook file (such as [example.ipynb](./example.ipynb))\n3. In the notebook, make sure your `.venv` Python environment is selected - either use the dropdown menu in the top right, or hit `Ctrl + P` then type `> Select Kernel` and select the `Notebook: Select Notebook Kernel` option and choose `.venv`.\n\n### How to see your changes\n\n#### Typescript:\n\nIf you use JupyterLab to develop then you can watch the source directory and run JupyterLab at the same time in different\nterminals to watch for changes in the extension's source and automatically rebuild the widget.\n\n```bash\n# Watch the source directory in one terminal, automatically rebuilding when needed\nyarn run watch\n# Run JupyterLab in another terminal\njupyter lab\n```\n\nAfter a change wait for the build to finish and then refresh your browser and the changes should take effect.\n\n#### Python:\n\nIf you make a change to the python code then you will need to restart the notebook kernel to have it take effect.\n\n### Testing your changes\n\nThere are separate test suites for the python and TypeScript code.\n\n- **Python:** To run the python tests, run `pytest` in the root directory of the repository.\n- **TypeScript:** To run the TypeScript tests, run `yarn run lint:check` in the root directory of the repository to run the `eslint` tests. Then run `yarn run test` to run the rest of the unit tests.\n\n## Releasing your initial packages:\n\n- Add tests\n- Ensure tests pass locally and on CI. Check that the coverage is reasonable.\n- Make a release commit, where you remove the `, 'dev'` entry in `_version.py`.\n- Update the version in `package.json`\n- Relase the npm packages:\n  ```bash\n  npm login\n  npm publish\n  ```\n- Install publish dependencies:\n\n```bash\npip install build twine\n```\n\n- Build the assets and publish\n  ```bash\n  python -m build .\n  twine check dist/*\n  twine upload dist/*\n  ```\n- Tag the release commit (`git tag <python package version identifier>`)\n- Update the version in `_version.py`, and put it back to dev (e.g. 0.1.0 -> 0.2.0.dev).\n  Update the versions of the npm packages (without publishing).\n- Commit the changes.\n- `git push` and `git push --tags`.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A Custom Jupyter Widget Library",
    "version": "0.6.0",
    "project_urls": {
        "Homepage": "https://github.com/deephaven/deephaven-ipywidgets"
    },
    "split_keywords": [
        "jupyter",
        "widgets",
        "ipython"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30c3ecc991527206471327eed850d6bf1df24afd8511dedc298cb684cb5b6793",
                "md5": "113bcad45874a0f2bf869abc0026005d",
                "sha256": "7a0a619aecf488773741ccaef256f20b7361a21a375f9620fc3a7b8d30a7f597"
            },
            "downloads": -1,
            "filename": "deephaven_ipywidgets-0.6.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "113bcad45874a0f2bf869abc0026005d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.6",
            "size": 291208,
            "upload_time": "2024-02-28T22:25:12",
            "upload_time_iso_8601": "2024-02-28T22:25:12.874649Z",
            "url": "https://files.pythonhosted.org/packages/30/c3/ecc991527206471327eed850d6bf1df24afd8511dedc298cb684cb5b6793/deephaven_ipywidgets-0.6.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6b9a83f3a908fbc44eff81559336bb6a62f6f2502d634fb6fb00c4ce28520ee",
                "md5": "b64223ed01af13f243575f6fc220c293",
                "sha256": "a5f4e3efb5674675fecc29ff3d694d291c43fc201748c9efbcd14ba36a3d553e"
            },
            "downloads": -1,
            "filename": "deephaven_ipywidgets-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b64223ed01af13f243575f6fc220c293",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 257798,
            "upload_time": "2024-02-28T22:25:15",
            "upload_time_iso_8601": "2024-02-28T22:25:15.575946Z",
            "url": "https://files.pythonhosted.org/packages/b6/b9/a83f3a908fbc44eff81559336bb6a62f6f2502d634fb6fb00c4ce28520ee/deephaven_ipywidgets-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 22:25:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "deephaven",
    "github_project": "deephaven-ipywidgets",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "deephaven-ipywidgets"
}
        
Elapsed time: 0.19498s