I'd like to create 1 data frame/structure using Pandas from multiple CSV files from URL's, keeping the initial header line.
With a single URL everything works as expected:
df = pd.read_csv('http://www.URL1.csv')
I have attempted the following with multiple URL's:
df = pd.read_csv('http://www.URL1.csv', 'http://www.URL2.csv', ...)
However, when attempting to print for testing, the result is spaced out over thousands of lines and is far from the standard layout. Since I am new to Pandas, it is clear I am doing something wrong.
I'd expect the layout to be as followed:
Header1 Header2 Header3 ...
DATA DATA DATA ...