ipyvuetify 1.11.3


pip install ipyvuetify

  Latest version

Released: Jul 02, 2025

Project Links

Meta
Author: Mario Buikhuizen, Maarten Breddels
Requires Python: >=3.6

Classifiers

Development Status
  • 5 - Production/Stable

Framework
  • IPython

Intended Audience
  • Developers
  • Science/Research

Topic
  • Multimedia :: Graphics

License
  • OSI Approved :: MIT License

Programming Language
  • Python :: 3.6
  • Python :: 3.7
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11

ipyvuetify

Documentation Version Version Conda Version Binder Black badge conventional commit

Jupyter widgets based on vuetify UI components which implement Google's Material Design Spec with the Vue.js framework.

A small selection of widgets:

ipyvuetify

Installation

To install use pip:

$ pip install ipyvuetify

# for Jupyter Lab < 3
$ jupyter labextension install jupyter-vuetify

For a development installation (requires npm),

$ git clone https://github.com/mariobuikhuizen/ipyvuetify.git
$ cd ipyvuetify
$ pip install -e ".[dev]"
$ pre-commit install
$ jupyter nbextension install --py --symlink --sys-prefix ipyvuetify
$ jupyter nbextension enable --py --sys-prefix ipyvuetify

Documentation

To get started with using ipyvuetify, check out the full documentation

https://ipyvuetify.readthedocs.io/

Usage

For examples see the example notebook.

The Vuetify documentation can be used to find all available components and attributes (in the left side bar or use the search field). Ipyvuetify tries to stay close to the Vue.js and Vuetify template syntax, but there are some differences:

Description Vuetify ipyvuetify
Component names are in CamelCase and the v- prefix is stripped <v-list-tile .../> ListTile(...)
Child components and text are defined in the children traitlet <v-btn>text <v-icon .../></v-btn> Btn(children=['text', Icon(...)])
Flag attributes require a boolean value <v-btn round ... Btn(round=True ...
Attributes are snake_case <v-menu offset-y .. Menu(offset_y=True ...
The v_model attribute (value in ipywidgets) contains the value directly <v-slider v-model="some_property" ... Slider(v_model=25...
Event listeners are defined with on_event <v-btn @click='someMethod()' ... button.on_event('click', some_method)
def some_method(widget, event, data):
Regular HTML tags can made with the Html class <div>...</div> Html(tag='div', children=[...])
The attributes class and style need to be suffixed with an underscore <v-btn class="mr-3" style="..." > Btn(class_='mr-3', style_='...')

Advanced usage

.sync

The .sync property modifier functionality can be achieved by using an event named:
update:[propertyNameInCamelCase].

Vuetify:
<v-navigation-drawer :mini-variant.sync=...
ipyvuetify:
drawer = v.NavigationDrawer(mini_variant=True, ...)

def update_mini(widget, event, data):
    drawer.mini_variant = data`

drawer.on_event('update:miniVariant', update_mini)

(scoped) slots

Vuetify:
<v-menu>
  <template slot:activator="{ on }">
    <v-btn v-on="on">...</v-btn>
  </template>
  <v-list>
    ...
  </v-list>
</v-menu>
ipyvuetify:
Menu(v_slots=[{
    'name': 'activator',
    'variable': 'x',
    'children': Btn(v_on='x.on', children=[...])
}], children=[
    List(...)
])

For non scoped slots 'scope': 'x' and v_on can be omitted.

Icons

Available icons:

Alternate usage

For a more web development centric way of development and a closer match to the Vue/Vuetify api, VuetifyTemplate can be used. See the example or Binder.

Make a sub class of VuetifyTemplate, define your own traitlets and set a template string. The traitlets will be accessible from the template as if they were in a vue-model. Methods can be called by defining a method with a prefix vue_ e.g. def vue_button_click(self, data) and calling it from the template e.g. @click="button_click(e)".

Sponsors

Project ipyvuetify receives direct funding from the following sources:

MSD

3.0.0a3 Feb 28, 2025
3.0.0a2 Nov 28, 2023
3.0.0a1 Nov 20, 2023
3.0.0.dev0 Nov 17, 2023
1.11.3 Jul 02, 2025
1.11.2 Jun 03, 2025
1.11.1 Feb 27, 2025
1.11.0 Feb 20, 2025
1.10.0 Jul 31, 2024
1.9.4 Apr 08, 2024
1.9.3 Mar 22, 2024
1.9.2 Mar 14, 2024
1.9.1 Mar 01, 2024
1.9.0 Feb 23, 2024
1.8.10 Apr 18, 2023
1.8.9 Apr 04, 2023
1.8.8 Apr 04, 2023
1.8.7 Apr 04, 2023
1.8.6 Apr 03, 2023
1.8.5 Mar 21, 2023
1.8.4 Sep 02, 2022
1.8.3 Aug 26, 2022
1.8.2 Feb 07, 2022
1.8.1 Aug 06, 2021
1.8.0 Jul 13, 2021
1.7.0 Jun 15, 2021
1.6.2 Feb 22, 2021
1.6.1 Jan 12, 2021
1.6.0
1.5.1 Aug 21, 2020
1.5.0 Aug 09, 2020
1.4.1 Jul 20, 2020
1.4.0 Apr 29, 2020
1.3.0 Apr 23, 2020
1.2.2 Mar 30, 2020
1.2.1 Mar 20, 2020
1.2.0 Mar 17, 2020
1.1.1 Nov 04, 2019
1.1.0 Oct 29, 2019
1.0.4 Sep 25, 2019
1.0.3 Sep 24, 2019
1.0.2 Sep 18, 2019
1.0.1 Sep 18, 2019
1.0.0 Sep 18, 2019
0.1.11 Aug 07, 2019
0.1.10 Aug 06, 2019
0.1.9 Jul 25, 2019
0.1.8 Jul 25, 2019
0.1.7 Jul 18, 2019
0.1.6 Jul 16, 2019
0.1.5 Jul 09, 2019
0.1.4 Jul 09, 2019
0.1.3 Jul 05, 2019
0.1.2 Jul 04, 2019
0.1.1 Jul 01, 2019
0.1.0 Jul 01, 2019
0.0.1a201906211514 Jun 21, 2019
0.0.1a201906111055 Jun 11, 2019
0.0.1a201906031610 Jun 03, 2019
0.0.1a201905261658 May 26, 2019
0.0.1a201905222156 May 22, 2019
0.0.1a10 May 22, 2019
0.0.1a9 May 20, 2019
0.0.1a8 May 16, 2019
0.0.1a7 May 08, 2019
0.0.1a6 Apr 10, 2019
0.0.1a5 Apr 10, 2019
0.0.1a4 Apr 10, 2019
0.0.1a3 Apr 10, 2019
1.6.0.macosx Jan 12, 2021

Wheel compatibility matrix

Platform Python 2 Python 3
any

Files in release

Extras:
Dependencies:
ipyvue (<2,>=1.7)