File size: 197 Bytes
6b95d78
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import pandas as pd


class Preprocess:
    def __init__(self) -> None: pass

    @staticmethod
    def lst_dict_to_df(lst_dict) -> pd.DataFrame:
        return pd.DataFrame.from_records(lst_dict)