Big downloads here!
#Python script
#This will load all data as a Pandas dataframe
#courtesy of Abyrint.com
#MIT license
import pandas as pd
ep = endpoint //get endpoint from the tab
#reads the index api
tableType = 'dbSomaliaFgsRevExp' #customize this to the type of table required
#reads the indexfile
idx = pd.read_csv(ep,sep='\t', header=0)
url_list =[]
for index, rows in idx.iterrows():
if rows.standardName == tableType: #change for alternative conditions
my_list =rows.tsv
url_list.append(my_list)
#loads all
dfs = [pd.read_csv(url,sep='\t', header=0) for url in url_list]
df = pd.concat(dfs, ignore_index=True)
#Do analysis with the compiled datatable here
print(df.shape)