Exemplo n.º 1
0
def get_data():
    result = pandas.DataFrame()
    for file in Path(CLOUD).iterdir():
        location = CLOUD + '\\' + file.name
        if result.empty:
            result = Analysis.create_df(location)
        else:
            result = pandas.concat([result, Analysis.create_df(location)], ignore_index=True)
    return result