Files
scribe/autotranscript/transcript_exporter.py
T
2023-06-14 16:31:44 +02:00

23 lines
526 B
Python

class Transcript:
"""
Class for storing transcript data
and exporting it to files in different formats
"""
def __init__(self, transcript: str) -> None:
"""
:param transcript: formated transcript string
"""
self.transcript = transcript
def to_latex(self, path: str) -> None:
pass
def to_pdf(self, path: str) -> None:
pass
def to_txt(self, path: str) -> None:
pass
def to_json(self, path: str) -> None:
pass