pandas append new data to df code example
Example 1: add rows to dataframe pandas
df = df.append({'a':1, 'b':2}, ignore_index=True)
Example 2: how to append a dataframe to another dataframe in pandas
# all_res is list of DataFrames : [ dataframe, dataframe, ... ]
df_res = pd.concat(all_res)