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

Is there a way to detect whether sys.stdout is attached to a console terminal or not? For example, I want to be able to detect if foo.py is run via:

$ python foo.py  # user types this on console

OR

$ python foo.py > output.txt # redirection
$ python foo.py | grep ....  # pipe

The reason I ask this question is that I want to make sure that my progressbar display happens only in the former case (real console).

share|improve this question
Duplicate: stackoverflow.com/questions/858623/… – S.Lott Jul 2 '09 at 23:14

1 Answer

up vote 50 down vote accepted
if sys.stdout.isatty():
    # You're running in a real terminal
else:
    # You're being piped or redirected
share|improve this answer
+1 good to know – zdmytriv Jul 2 '09 at 23:04

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.