Metadata-Version: 2.4
Name: shinywidgets
Version: 0.8.1
Summary: Render ipywidgets in Shiny applications
Project-URL: Homepage, https://github.com/rstudio/py-shinywidgets
Project-URL: Documentation, https://github.com/rstudio/py-shinywidgets/
Project-URL: Source, https://github.com/rstudio/py-shinywidgets/
Project-URL: Issues, https://github.com/rstudio/py-shinywidgets/issues
Author-email: Carson Sievert <carson@posit.co>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Requires-Dist: anywidget
Requires-Dist: ipywidgets>=7.6.5
Requires-Dist: jupyter-core
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: shiny>=0.6.1.9005
Provides-Extra: dev
Requires-Dist: altair; extra == 'dev'
Requires-Dist: bokeh; extra == 'dev'
Requires-Dist: coverage>=7; extra == 'dev'
Requires-Dist: ipyleaflet>=0.20.0; extra == 'dev'
Requires-Dist: jupyter-bokeh; extra == 'dev'
Requires-Dist: playwright>=1.40.0; extra == 'dev'
Requires-Dist: plotly>=5.0.0; extra == 'dev'
Requires-Dist: pydeck; extra == 'dev'
Requires-Dist: pyright>=1.1.284; extra == 'dev'
Requires-Dist: pytest-playwright>=0.3.0; extra == 'dev'
Requires-Dist: pytest>=6.2.4; extra == 'dev'
Requires-Dist: ruff>=0.6.5; extra == 'dev'
Requires-Dist: tox-uv>=1; extra == 'dev'
Provides-Extra: test
Requires-Dist: altair; extra == 'test'
Requires-Dist: bokeh; extra == 'test'
Requires-Dist: coverage>=7; extra == 'test'
Requires-Dist: ipyleaflet>=0.20.0; extra == 'test'
Requires-Dist: jupyter-bokeh; extra == 'test'
Requires-Dist: playwright>=1.40.0; extra == 'test'
Requires-Dist: plotly>=5.0.0; extra == 'test'
Requires-Dist: pydeck; extra == 'test'
Requires-Dist: pyright>=1.1.284; extra == 'test'
Requires-Dist: pytest-playwright>=0.3.0; extra == 'test'
Requires-Dist: pytest>=6.2.4; extra == 'test'
Requires-Dist: tox-uv>=1; extra == 'test'
Description-Content-Type: text/markdown

shinywidgets
================

Render [ipywidgets](https://ipywidgets.readthedocs.io/en/stable/) inside a
[Shiny](https://shiny.rstudio.com/py) (for Python) app.

See the [Jupyter Widgets](https://shiny.posit.co/py/docs/jupyter-widgets.html) article on the Shiny for Python website for more details.

## Installation

```sh
pip install shinywidgets
```

## Development

If you want to do development on `{shinywidgets}`, run:

```sh
uv sync --all-groups
uv run pre-commit install
uv run playwright install chromium
cd js && yarn watch
```

If you need the older editable-install flow for tooling compatibility, this
also works:

```sh
pip install -e ".[dev]"
```

Common Python workflows:

```sh
make py-check
make test-playwright
make py-build
```
