Skip to content

A Python module which prints elapsed time and estimated time left with accordance to percentage

License

Notifications You must be signed in to change notification settings

yonghee12/progress_timer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Progress Timer

  • A Python module which prints elapsed time and estimated time left with accordance to percentage
  • 파이썬 반복문에서 인덱스를 기반으로 백분율에 맞추어 진행률을 표시해주는 모듈

Install

pip install progress_timer

Usage

from progress_timer import Timer

length = len(a_iterator)
timer = Timer(length)
for idx, item in enumerate(a_itertator):
    timer.time_check(idx)

Result

result

About

A Python module which prints elapsed time and estimated time left with accordance to percentage

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages