I'm runing a python function to download some arquives, to do that I've to manually set some paramters (X,Y,Z). But I've to download several itens and I'm not in the mood to do that manually. How I set up my script to select a row in a DF execute my download function and when its complet move to the next one.
Ex:
df = df.csv
for n, row in df.iterrows():
X,Y,Z = row['X'], row['Y'],row['Z']
#where "n" is my first position, kinda index = 1
for n in n
download():
break
No clue how to do that.