Skip to content

Instantly share code, notes, and snippets.

@astagi
Created January 27, 2015 11:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astagi/45976ef20f3f729daad3 to your computer and use it in GitHub Desktop.
Save astagi/45976ef20f3f729daad3 to your computer and use it in GitHub Desktop.
Show progress in console with Python Add new snippet
import sys
def show_progress(actual, total):
percentage = actual / float(total)
done = int(50 * percentage)
sys.stdout.write("\r[%s%s] %d %%" % ('=' * done, ' ' * (50-done), percentage * 100))
sys.stdout.flush()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment