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

class WidgetButton (text, **kwargs)

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

Methods

def render(self)
Expand source code
def render(self):
    return widgets.Button(text=self.content["text"])