log-progress
log-progress copied to clipboard
iterrows
Trying with iterrows to iterate through data frame rows:
for index, c in log_progress(df_search.iterrows(), every=1):
It doesn't seem to be able to identify the number of items.

Just use size=len(df) as an additional keyword when invoking. Because df.itertuple() returns an iterator, not a list.