from collections.abc import Iterable
from enum import Enum
from tommy.controller.file_import.metadata import Metadata
from tommy.controller.file_import.processed_file import ProcessedFile
# the data types of the input data for the visualizations. These correspond
# one-to-one to the entries in the VisInputData enumerator above.
type TopicID = int
type MetadataCorpus = list[Metadata]
type ProcessedCorpus = Iterable[ProcessedFile]
"""
This program has been developed by students from the bachelor Computer Science
at Utrecht University within the Software Project course.
© Copyright Utrecht University
(Department of Information and Computing Sciences)
"""