File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,17 @@ class Exporter:
1616 """
1717 DEPRECATED: Use TXTExporter, JSONExporter, or CSVExporter instead.\n
1818 This class is kept for backward compatibility and will be removed in a future versions.
19+
20+ Parameters:
21+ channel_data (list[ChannelData]): The transcript and metadata to export.
22+ allowed_metadata_list (list): Metadata fields to include (e.g., ['title', 'description']).
23+ timing (bool): Whether to include start/duration timing in exports.
24+ filename (str): Output filename without extension.
25+ output_dir (str | None): Directory to export files into. Defaults to current working directory.
26+
27+ Raises:
28+ NoDataToExport: If no data is provided.
29+ OutputDirectoryNotFoundError: If specified path cannot found.
1930 """
2031 def __init__ (self , * args , ** kwargs ):
2132 warnings .warn (
You can’t perform that action at this time.
0 commit comments