Posted By


ctmiller on 01/14/10

Tagged


Statistics


Viewed 402 times
Favorited by 0 user(s)

Related snippets


progress_bar.py


/ Published in: Python
Save to your folder(s)

Found on [Corey Goldberg's blog](http://coreygoldberg.blogspot.com/2010/01/python-command-line-progress-bar-with.html). Usage:

from progress_bar import ProgressBar
p = ProgressBar(60)
p.update_time(15)
print p
p.fill_char = '='
p.update_time(40)
print p

URL: http://code.google.com/p/corey-projects/source/browse/trunk/python2/progress_bar.py

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.