티스토리 뷰

파이썬에서 프로그레스바를 처리하는 방법은 문자를 출력하고, 캐리지 리턴(/r) 문자를 이용하여 출력 커서를 다시 첫번째 라인으로 옮겨서 다시 출력하게 하는 것입니다.

 

* 이 소스는 터미널 환경에 따라서 개행이 될 수도 있습니다. 실제 환경에서 테스트를 해보시는 것이 좋습니다. 이클립스에서 실행하면 개행이 되고, 로컬 터미널에서 하면 개행이 되지 않습니다. 

 

원본 소스코드는 다음 페이지에서 확인이 가능합니다. 추가적으로 tqdm 라이브러리를 이용하면 좀 더 편리하게 프로그레스바를 출력할 수 있습니다.

 

https://stackoverflow.com/questions/3173320/text-progress-bar-in-the-console/34325723#34325723

 

Text Progress Bar in the Console

Is there a good way to do the following? I wrote a simple console app to upload and download files from an FTP server using the ftplib. Each time some data chunks are downloaded, I want to update a

stackoverflow.com

 

#!/usr/bin/env python
#-*- coding: utf-8 -*-
import sys
from time import sleep
# Print iterations progress
def print_progress(iteration, total, prefix='Progress:', suffix='Complete', decimals=1, bar_length=100):
"""
Call in a loop to create terminal progress bar
@params:
iteration - Required : 현재 위치 (Int)
total - Required : 전체 위치 (Int)
prefix - Optional : 전위 문자 (Str)
suffix - Optional : 후위 문자 (Str)
decimals - Optional : 소수점 이하 자리 표시 (Int)
bar_length - Optional : 프로그레스바 전체 길이 (Int)
"""
str_format = "{0:." + str(decimals) + "f}"
current_progress = iteration / float(total)
percents = str_format.format(100 * current_progress)
filled_length = int(round(bar_length * current_progress))
bar = "#" * filled_length + '-' * (bar_length - filled_length)
# 캐리지 리턴(\r) 문자를 이용해서 출력후 커서를 라인의 처음으로 옮김
sys.stdout.write('\r%s |%s| %s%s %s' % (prefix, bar, percents, '%', suffix)),
# 현재 위치가 전체 위치에 도달하면 개행문자 추가
if iteration == total:
sys.stdout.write('\n')
# 버퍼의 문자를 출력
sys.stdout.flush()
if __name__ == "__main__":
# 출력 리스트 샘플
items = list(range(0, 54))
items_length = len(items)
# 0%를 출력
print_progress(0, items_length)
for i, item in enumerate(items):
# 실제 처리할 작업
# 0.1초 sleep
sleep(0.1)
# 프로그레스바 변환
print_progress(i + 1, items_length)
반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/04   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
글 보관함