Skip to content

renderer

dandy.recorder.renderer.renderer

BaseRecordingRenderer

Bases: BaseModel, ABC

recording instance-attribute

name instance-attribute

file_extension instance-attribute

to_file abstractmethod

Source code in dandy/recorder/renderer/renderer.py
@abstractmethod
def to_file(
        self,
        path: Path | str,
):
    ...

to_str abstractmethod

Source code in dandy/recorder/renderer/renderer.py
@abstractmethod
def to_str(self) -> str:
    ...