diff --git a/autotranscript/transcript_exporter.py b/autotranscript/transcript_exporter.py new file mode 100644 index 0000000..956b398 --- /dev/null +++ b/autotranscript/transcript_exporter.py @@ -0,0 +1,23 @@ + +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 \ No newline at end of file