jupyterlab-widgets


Namejupyterlab-widgets JSON
Version 3.0.10 PyPI version JSON
download
home_pagehttps://github.com/jupyter-widgets/ipywidgets
SummaryJupyter interactive widgets for JupyterLab
upload_time2024-02-08 15:25:42
maintainer
docs_urlNone
authorJupyter Development Team
requires_python>=3.7
licenseBSD-3-Clause
keywords interactive interpreter shell web notebook widgets jupyter jupyterlab jupyterlab3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Jupyter Widgets JupyterLab Extension

A JupyterLab 3.0 extension for Jupyter/IPython widgets.

## Installation

To enable ipywidgets support in JupyterLab 3.x:

```bash
pip install jupyterlab_widgets
```

### Version compatibility

Prior to JupyterLab 3.0, use the appropriate command from the following list
to install a compatible JupyterLab extension.

- For JupyterLab 0.30, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.31`
- For JupyterLab 0.31rc1, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.32`
- For JupyterLab 0.31rc2, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.33`
- For JupyterLab 0.31.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.34`
- For JupyterLab 0.32.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.35`
- For JupyterLab 0.33.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.36`
- For JupyterLab 0.34.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.37`
- For JupyterLab 0.35.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.38`
- For JupyterLab 1.0.x and 1.1.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0`
- For JupyterLab 1.2.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1`
- For JupyterLab 2.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@2`

## Contributing

### Development install

Note: You will need Node.js to build the extension package.

The `jlpm` command is JupyterLab's pinned version of
[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
`yarn` or `npm` in lieu of `jlpm` below.

```bash
# Clone the repo to your local environment
# Change directory to the jupyterlab_widgets directory
# Install package in development mode
pip install -e .
# Link your development version of the extension with JupyterLab
jupyter labextension develop . --overwrite
# Rebuild extension Typescript source after making changes
jlpm build
```

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 extension.

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

With the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).

### Uninstall

```bash
pip uninstall jupyterlab_widgets
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jupyter-widgets/ipywidgets",
    "name": "jupyterlab-widgets",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Interactive,Interpreter,Shell,Web,notebook,widgets,Jupyter,JupyterLab,JupyterLab3",
    "author": "Jupyter Development Team",
    "author_email": "jupyter@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/0b/71/3e9049f758510f0ceb729dbe19351c97713323acfff6062932a6b16c8baf/jupyterlab_widgets-3.0.10.tar.gz",
    "platform": "Linux",
    "description": "# Jupyter Widgets JupyterLab Extension\n\nA JupyterLab 3.0 extension for Jupyter/IPython widgets.\n\n## Installation\n\nTo enable ipywidgets support in JupyterLab 3.x:\n\n```bash\npip install jupyterlab_widgets\n```\n\n### Version compatibility\n\nPrior to JupyterLab 3.0, use the appropriate command from the following list\nto install a compatible JupyterLab extension.\n\n- For JupyterLab 0.30, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.31`\n- For JupyterLab 0.31rc1, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.32`\n- For JupyterLab 0.31rc2, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.33`\n- For JupyterLab 0.31.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.34`\n- For JupyterLab 0.32.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.35`\n- For JupyterLab 0.33.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.36`\n- For JupyterLab 0.34.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.37`\n- For JupyterLab 0.35.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@0.38`\n- For JupyterLab 1.0.x and 1.1.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0`\n- For JupyterLab 1.2.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1`\n- For JupyterLab 2.x, use `jupyter labextension install @jupyter-widgets/jupyterlab-manager@2`\n\n## Contributing\n\n### Development install\n\nNote: You will need Node.js to build the extension package.\n\nThe `jlpm` command is JupyterLab's pinned version of\n[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use\n`yarn` or `npm` in lieu of `jlpm` below.\n\n```bash\n# Clone the repo to your local environment\n# Change directory to the jupyterlab_widgets directory\n# Install package in development mode\npip install -e .\n# Link your development version of the extension with JupyterLab\njupyter labextension develop . --overwrite\n# Rebuild extension Typescript source after making changes\njlpm build\n```\n\nYou 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 extension.\n\n```bash\n# Watch the source directory in one terminal, automatically rebuilding when needed\njlpm watch\n# Run JupyterLab in another terminal\njupyter lab\n```\n\nWith the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).\n\n### Uninstall\n\n```bash\npip uninstall jupyterlab_widgets\n```\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Jupyter interactive widgets for JupyterLab",
    "version": "3.0.10",
    "project_urls": {
        "Homepage": "https://github.com/jupyter-widgets/ipywidgets"
    },
    "split_keywords": [
        "interactive",
        "interpreter",
        "shell",
        "web",
        "notebook",
        "widgets",
        "jupyter",
        "jupyterlab",
        "jupyterlab3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24dadb1cb0387a7e4086780aff137987ee924e953d7f91b2a870f994b9b1eeb8",
                "md5": "cd56f251df251e20b2ab8001d9b1152b",
                "sha256": "dd61f3ae7a5a7f80299e14585ce6cf3d6925a96c9103c978eda293197730cb64"
            },
            "downloads": -1,
            "filename": "jupyterlab_widgets-3.0.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "cd56f251df251e20b2ab8001d9b1152b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 215035,
            "upload_time": "2024-02-08T15:25:40",
            "upload_time_iso_8601": "2024-02-08T15:25:40.138344Z",
            "url": "https://files.pythonhosted.org/packages/24/da/db1cb0387a7e4086780aff137987ee924e953d7f91b2a870f994b9b1eeb8/jupyterlab_widgets-3.0.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b713e9049f758510f0ceb729dbe19351c97713323acfff6062932a6b16c8baf",
                "md5": "6c4f7e5f24c6166b330031647a27cc20",
                "sha256": "04f2ac04976727e4f9d0fa91cdc2f1ab860f965e504c29dbd6a65c882c9d04c0"
            },
            "downloads": -1,
            "filename": "jupyterlab_widgets-3.0.10.tar.gz",
            "has_sig": false,
            "md5_digest": "6c4f7e5f24c6166b330031647a27cc20",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 205549,
            "upload_time": "2024-02-08T15:25:42",
            "upload_time_iso_8601": "2024-02-08T15:25:42.971621Z",
            "url": "https://files.pythonhosted.org/packages/0b/71/3e9049f758510f0ceb729dbe19351c97713323acfff6062932a6b16c8baf/jupyterlab_widgets-3.0.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-08 15:25:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jupyter-widgets",
    "github_project": "ipywidgets",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jupyterlab-widgets"
}
        
Elapsed time: 0.24667s