Module pandas_profiling.report.presentation.flavours.html.variable

Expand source code
from pandas_profiling.report.presentation.core import Variable
from pandas_profiling.report.presentation.flavours.html import templates


class HTMLVariable(Variable):
    def render(self):
        return templates.template("variable.html").render(**self.content)

Classes

class HTMLVariable (top, bottom=None, ignore=False, **kwargs)

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

Expand source code
class HTMLVariable(Variable):
    def render(self):
        return templates.template("variable.html").render(**self.content)

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return templates.template("variable.html").render(**self.content)