Module pandas_profiling.report.presentation.flavours.widget.button
Expand source code
from ipywidgets import widgets
from pandas_profiling.report.presentation.core.button import Button
class WidgetButton(Button):
def render(self):
return widgets.Button(text=self.content["text"])
Classes
-
Helper class that provides a standard way to create an ABC using inheritance.
Expand source code
class WidgetButton(Button): def render(self): return widgets.Button(text=self.content["text"])
Ancestors
- Button
- ItemRenderer
- Renderable
- abc.ABC
Methods
-
Expand source code
def render(self): return widgets.Button(text=self.content["text"])