Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to python and am writing some scripts to automate downloading files from FTP servers, etc. I want to show the progress of the download, but I want it to stay in the same position, such as:

output:

Downloading File FooFile.txt [47%]

I'm trying to avoid something like this:

     Downloading File FooFile.txt [47%]
     Downloading File FooFile.txt [48%]
     Downloading File FooFile.txt [49%]

How should I go about doing this?


Duplicate: http://stackoverflow.com/questions/465348/how-can-i-print-over-the-current-line-in-a-command-line-application/465360#465360

share|improve this question
you might be interested in this easy-to-use module, it's a text progress bar. pypi.python.org/pypi/progressbar/2.2 – wim Aug 16 '11 at 3:06

5 Answers

up vote 36 down vote accepted

You can also use the carriage return:

sys.stdout.write("Download progress: %d%%   \r" % (progress) )
sys.stdout.flush()
share|improve this answer
2  
Very common and simple solution. Note: if your line is longer than the width of your terminal, this gets ugly. – ephemient Feb 5 '09 at 18:24
2  
I also had to add a call to sys.stdout.flush() so the cursor didn't bounce around – scottm Feb 5 '09 at 19:40

Use a terminal-handling library like the curses module:

The curses module provides an interface to the curses library, the de-facto standard for portable advanced terminal handling.

share|improve this answer
+1 for introducing a new module – pylover Jan 2 at 0:26
Not available for Windows. – Diego Herranz Apr 17 at 12:06

I like the following:

print 'Downloading File FooFile.txt [%d%%]\r'%i,

Demo:

import time

for i in range(100):
    time.sleep(0.1)
    print 'Downloading File FooFile.txt [%d%%]\r'%i,
share|improve this answer

Print the backspace character \b several times, and then overwrite the old number with the new number.

share|improve this answer
interesting, I hadn't thought of doing it that way. – Chris Ballance Feb 5 '09 at 18:14
#kinda like the one above but better :P

from __future__ import print_function
from time import sleep

for i in range(101):
  str1="Downloading File FooFile.txt [{}%]".format(i)
  back="\b"*len(str1)
  print(str1, end="")
  sleep(0.1)
  print(back, end="")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.