Module mls_lib.data_collection.excel_loader

Excel Loader

Classes

class ExcelLoader (path: str)

Excel Loader

Expand source code
class ExcelLoader(DataCollectionStep):
    """ Excel Loader """
    def __init__(self, path : str):
        super().__init__()
        self.path = path

    def execute(self):
        df = DataFrame()
        data = pd.read_excel(self.path)
        df.set_data(data)
        self._set_output("resulting_table", df)
        self._finish_execution()

Ancestors

Inherited members