Skip to content
Peter Andorfer edited this page Feb 16, 2022 · 2 revisions

Welcome to the abcd-db wiki!

get the data

save the data and use it to process/play/tryout

e.g. with pandas df

import pandas as pd

file_name = './path/to/the/download.csv`
df = pd.read_csv(file_name)

for i, row in df.iterrows():
    do something 
Clone this wiki locally