티스토리 뷰
파이썬에서 프로그레스바를 처리하는 방법은 문자를 출력하고, 캐리지 리턴(/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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) |
반응형
'python > 코드조각' 카테고리의 다른 글
[python][bs4] BeautifulSoup 사용 예제 (0) | 2019.09.27 |
---|---|
[python] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed 오류 수정 (2) | 2019.06.25 |
[python] 데코레이터를 이용하여 파라미터의 값을 제한 하는 예제 (0) | 2018.09.07 |
[python] 파이썬의 데코레이터(Decorator) 간단 예제 (0) | 2018.09.07 |
[python] yyyymmdd 일자별 문자열 리스트 생성 방법 (0) | 2018.05.15 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- HIVE
- 오류
- Python
- error
- Tez
- bash
- Hadoop
- Linux
- hbase
- build
- 파이썬
- yarn
- 하둡
- 알고리즘
- 정올
- SQL
- oozie
- airflow
- emr
- nodejs
- mysql
- ubuntu
- S3
- 다이나믹
- AWS
- SPARK
- java
- 백준
- 하이브
- HDFS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함