added dummy class for output
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user