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

When piping the output of a python program, the python interpreter gets confused about encoding and sets it to None. This means a program like this:

# -*- coding: utf-8 -*-
print "åäö"

will work fine when run normally, but fail with:

UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 0: ordinal not in range(128)

when used in a pipe sequence.

What is the best way to make this work when piping? Can I just tell it to use whatever encoding the shell/filesystem/whatever is using?

The suggestions I have seen thus far is to modify your site.py directly, or hardcoding the defaultencoding using this hack:

# -*- coding: utf-8 -*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
print "åäö"

Is there a better way to make piping work?

share|improve this question

6 Answers

up vote 39 down vote accepted

Your code works when run in an script because python encodes the output to whatever encoding your terminal application is using. If you are piping you must encode it yourself.

A rule of thumb is: Always use unicode internally. decode what you receive, encode what you send.

# -*- coding: utf-8 -*-
print u"åäö".encode('utf-8')

Another didactic example is a python program to convert between iso8859-1 and utf-8, making everything uppercase in between.

import sys
for line in sys.stdin:
    # decode what you receive:
    line = line.decode('iso8859-1')

    # work with unicode internally:
    line = line.upper()

    # encode what you send:
    line = line.encode('utf-8')
    sys.stdout.write(line)

Setting system default encoding is a bad idea because some modules and libraries you use can rely on the fact it is ascii. Don't do it.

share|improve this answer
2  
The problem is that the user doesn't want to specify encoding explicitly. He wants just use Unicode for IO. And the encoding he uses should be an encoding specified in locale settings, not in terminal application settings. AFAIK, Python 3 uses a locale encoding in this case. Changing sys.stdout seems like a more pleasant way. – Andrey Vlasovskikh Apr 2 '10 at 22:01
1  
Encoding / decoding every string excplictly is bound to cause bugs when a encode or decode call is missing or added once to much somewhere. The output encoding can be set when output is a terminal, so it can be set when output is not a terminal. There is even a standard LC_CTYPE environment to specify it. It is a but in python that it doesn't respect this. – Rasmus Kaj May 31 '10 at 15:34
@Rasmus Kaj: If you consistently use a defined function for output you can be sure that it won't be missing or duplicated. Output encoding can't be "set". Accepting only unicode on sys.stdout (by replacing it with codecs.getwriter) breaks a lot of libraries in practice. – nosklo May 31 '10 at 20:48
10  
This answer is wrong. You should not be manually converting on each input and output of your program; that's brittle and completely unmaintainable. – Glenn Maynard Apr 23 '12 at 23:29
3  
@Glenn Maynard : so what is IYO the right answer? It's more helpful to tell us than just say 'This answer is wrong' – smci Sep 18 '12 at 11:10
show 1 more comment

First, regarding this solution:

# -*- coding: utf-8 -*-
print u"åäö".encode('utf-8')

It's not practical to explicitly print with a given encoding every time. That would be repetitive and error-prone.

A better solution is to change sys.stdout at the start of your program, to encode with a selected encoding. Here is one solution I found on Python: How is sys.stdout.encoding chosen?, in particular a comment by "toka":

import sys
import codecs
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
share|improve this answer
unfortunately, changing sys.stdout to accept only unicode breaks a lot of libraries that expect it to accept encoded bytestrings. – nosklo Dec 4 '09 at 19:14
3  
nosklo: Then how can it work reliably and automaticly when output is a terminal? – Rasmus Kaj May 31 '10 at 15:36
@Rasmus Kaj: just define your own unicode printing function and use it every time you want to print unicode: def myprint(unicodeobj): print unicodeobj.encode('utf-8') -- you automatically detect terminal encoding by inspecting sys.stdout.encoding, but you should consider the case where it is None (i.e. when redirecting output to a file) so you need a separate function anyway. – nosklo May 31 '10 at 20:46
1  
@nosklo: This does not make sys.stdout accept only Unicode. You can pass both str and unicode to a StreamWriter. – Glenn Maynard Apr 23 '12 at 23:30

You may want to try changing the environment variable "PYTHONIOENCODING" to "utf_8." I have written a page on my ordeal with this problem.

share|improve this answer
Thanks. Now this solves from a user perspective. – Daniel Ribeiro Sep 23 '11 at 18:15
export PYTHONIOENCODING=utf-8

do the job, but can't set it on python itself ...

what we can do is verify if isn't setting and tell the user to set it before call script with :

if __name__ == '__main__':
    if (sys.stdout.encoding is None):
        print >> sys.stderr, "please set python env PYTHONIOENCODING=UTF-8, example: export PYTHONIOENCODING=UTF-8, when write to stdout."
        exit(1)
share|improve this answer

I could "automate" it with a call to:

def __fix_io_encoding(last_resort_default='UTF-8'):
  import sys
  if [x for x in (sys.stdin,sys.stdout,sys.stderr) if x.encoding is None] :
      import os
      defEnc = None
      if defEnc is None :
        try:
          import locale
          defEnc = locale.getpreferredencoding()
        except: pass
      if defEnc is None :
        try: defEnc = sys.getfilesystemencoding()
        except: pass
      if defEnc is None :
        try: defEnc = sys.stdin.encoding
        except: pass
      if defEnc is None :
        defEnc = last_resort_default
      os.environ['PYTHONIOENCODING'] = os.environ.get("PYTHONIOENCODING",defEnc)
      os.execvpe(sys.argv[0],sys.argv,os.environ)
__fix_io_encoding() ; del __fix_io_encoding

Yes, it's possible to get an infinite loop here if this "setenv" fails.

share|improve this answer
interesting, but a pipe doesn't seem to be happy about this – naxa Dec 15 '12 at 23:52

Since nobody has mentioned this, there's one simple answer: switch to Python 3!

share|improve this answer
IIRC, Python 3 is different enough from Python 2 that this could cause more problems than it solves. – cHao Mar 21 at 19:39
Does this really solve the problem? Does Python 3 assume UTF-8 rather than ASCII when no encoding is specified? – Mark Ransom Mar 21 at 21:08
@MarkRansom: It seems Python 3 uses UTF-8 encoding by default. (Well, to be fair, it treats strings as Unicode by default, and UTF-8 is one of the few sensible ways to bridge the gap on platforms that natively work with 8-bit char types.) – cHao Mar 22 at 21:10
@cHao, when I execute import sys;print(sys.stdout.encoding) in Python3.2 on Windows with the output redirected, I get cp1252. I doubt that's the desired result; it's certainly not utf-8 as much as that might make sense and as much as we might wish it to be so. – Mark Ransom Mar 23 at 2:21
@MarkRansom: Well, ain't that just annoying. You happen to know if it's the same in Linux? – cHao Mar 23 at 2:32
show 2 more comments

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.