Module pandas_profiling.report.presentation.flavours.qt.html

Expand source code
from PyQt5.QtWidgets import QPushButton

from pandas_profiling.report.presentation.core import HTML


class QtHTML(HTML):
    def render(self):
        return QPushButton(self.content["html"])

Classes

class QtHTML (content, **kwargs)

Helper class that provides a standard way to create an ABC using inheritance.

Expand source code
class QtHTML(HTML):
    def render(self):
        return QPushButton(self.content["html"])

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return QPushButton(self.content["html"])