!pip install tqdm
from tqdm import tqdm
for a in tqdm(range(len(df_work))):
for count in tqdm(range(len(extract_file_data_list)), desc="Extract meta", ncols=100)
- desc 파라미터 : 진행 중인 프로세스에 대한 설명 조정
>> 예, desc="Extract meta"
- ncols 파라미터: 프로세스 바의 가로 길이 조절
>> 예, ncols=100
매개변수 추가 필요
>> total=len(input_files)
매개변수 추가하지 않을 시, process bar가 노출되지 않음
for i, input_file in tqdm(enumerate(input_files)):
매개변수를 추가해야 process bar가 노출됨
for i, input_file in tqdm(enumerate(input_files), total=len(input_files))
for index, row in tqdm(list(df_work.iterrows())):
for row in tqdm(df_work.itertuples(index=True, name='Pandas')):