https://github.com/trungleduc/ipyflex
A WYSIWYG layout editor for Jupyter widgets
https://github.com/trungleduc/ipyflex
ipywidgets jupyter jupyter-widgets
Last synced: over 1 year ago
JSON representation
A WYSIWYG layout editor for Jupyter widgets
- Host: GitHub
- URL: https://github.com/trungleduc/ipyflex
- Owner: trungleduc
- License: bsd-3-clause
- Created: 2021-10-15T08:46:11.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-05T10:15:42.000Z (over 1 year ago)
- Last Synced: 2025-04-13T04:13:07.370Z (over 1 year ago)
- Topics: ipywidgets, jupyter, jupyter-widgets
- Language: TypeScript
- Homepage: https://ipyflex.readthedocs.io
- Size: 25.6 MB
- Stars: 121
- Watchers: 5
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
ipyflex
[](https://mybinder.org/v2/gh/trungleduc/ipyflex/main?urlpath=lab%2Ftree%2Fexamples)  [](http://ipyflex.readthedocs.io/?badge=latest) [](https://github.com/trungleduc/ipyflex/blob/main/LICENSE) [](https://badge.fury.io/py/ipyflex) [](https://anaconda.org/conda-forge/ipyflex)
A WYSIWYG layout editor for Jupyter widgets
Based on the React library [FlexLayout](https://github.com/caplin/FlexLayout), ipyflex allows you to compose the sophisticated dashboard layouts from existing Jupyter widgets without coding. It supports multiple tabs, resizable cards, drag-and-drop layout, save dashboard template to disk, and many more.
## Example
### Dynamic layout

### Widget factory

### Configurable header
https://user-images.githubusercontent.com/4451292/149482302-30579785-4d8e-4d50-9bcc-249bea4a9d95.mp4
### Stock indexes dashboard

## Documentation
You can read the documentation following this link: https://ipyflex.readthedocs.io
## Installation
You can install using `pip`:
```bash
pip install ipyflex
```
Or using `conda`:
```bash
conda install -c conda-forge ipyflex
```
And if you use jupyterlab <= 2:
```bash
mamba install -c conda-forge jlpm
jupyter labextension install @jupyter-widgets/jupyterlab-manager ipyflex
```
## Development Installation
Create a dev environment:
```bash
conda create -n ipyflex-dev -c conda-forge nodejs jlpm python jupyterlab
conda activate ipyflex-dev
```
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 .
jlpm run build
```
For classic notebook, you need to run:
```
jupyter nbextension install --sys-prefix --symlink --overwrite --py ipyflex
jupyter nbextension enable --sys-prefix --py ipyflex
```
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.
### 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
jlpm 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.
## Thanks
The following libraries / open-source projects were used or inspired in the development of ipyflex:
- [FlexLayout](https://github.com/caplin/FlexLayout)
- [CoSApp Lab](https://gitlab.com/cosapp/cosapp_lab)