Module pandas_profiling.report.presentation.abstract.item_renderer

Expand source code
from abc import ABC

from pandas_profiling.report.presentation.abstract.renderable import Renderable


class ItemRenderer(Renderable, ABC):
    def __init__(self, item_type, content, name=None, anchor_id=None, classes=None):
        super().__init__(content, name, anchor_id, classes)
        self.item_type = item_type

Classes

class ItemRenderer (item_type, content, name=None, anchor_id=None, classes=None)

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

Expand source code
class ItemRenderer(Renderable, ABC):
    def __init__(self, item_type, content, name=None, anchor_id=None, classes=None):
        super().__init__(content, name, anchor_id, classes)
        self.item_type = item_type

Ancestors

Subclasses