Module mls_lib.data_collection.json_loader
JSON Loader
Classes
class JSONLoader (path: str)-
JSON Loader
Expand source code
class JSONLoader(DataCollectionStep): """ JSON Loader """ def __init__(self, path : str): super().__init__() self.path = path def execute(self): df = DataFrame() data = pd.read_json(self.path) df.set_data(data) self._set_output("resulting_table", df) self._finish_execution()Ancestors
Inherited members