I'm having a problem regarding Unicode in Python. I can print the output fine in a regular terminal, but if I redirect stdout elsewhere (or capture it with the subprocess module), I get a UnicodeEncodeError:

$ cat example.py 
print u'Example: \u00F1'
$ python example.py 
Example: ñ
$ python example.py > /dev/null
Traceback (most recent call last):
  File "example.py", line 1, in <module>
    print u'Example: \u00F1'
UnicodeEncodeError: 'ascii' codec can't encode character u'\xf1' in position 9: ordinal not in range(128)

Why is this? How can I fix it?

link|improve this question

1  
stackoverflow.com/questions/492483/… is essentially the same question, the answers solved the problem I was having (hopefully).. – dbr Feb 9 '10 at 1:17
feedback

1 Answer

up vote 4 down vote accepted

Pipes that don't lead to the terminal don't have an encoding, therefore you'll need to check sys.stdout.isatty() and encode if needed.

link|improve this answer
2  
Or (even better) just always encode. – Thomas Wouters Feb 8 '10 at 19:11
More info on how to define encoding: python.org/dev/peps/pep-0263 – jcoon Feb 8 '10 at 19:26
1  
No, PEP 263 is about specifying source encoding, and has nothing to do with output encodings. – Thomas Wouters Feb 8 '10 at 20:39
2  
Is there an easy way to "just always encode"? – eric.frederich Feb 8 '11 at 16:05
1  
@eric, print mystring.encode(encoding, 'ignore') – Cerin Dec 21 '11 at 17:25
feedback

Your Answer

 
or
required, but never shown

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