I have to fetch csv-content from multiple web-sources and append it to one file. The number of web-sources is variant, it depends on an excel-file which contains all urls.
For this reason, I generated a list (named dataList) in python, each element contains one url from the excel file.
After that, to get the data from the urls, I used a for-loop:
for k in range(count_dataList):
dataContent.insert(k, pd.read_csv(dataList[k]))
Now, a list exists where each element contains the data from the source. I guess as a DataFrame.
At last, I have to append all elements to one DataFrame. But I can't find any way to append all datas.