I need to control a program by sending commands in utf-8 encoding to its standard input. For this I run the program using subprocess.Popen():

proc = Popen("myexecutable.exe", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
proc.stdin.write(u'ééé'.encode('utf_8'))

If I run this from a cygwin utf-8 console, it works. If I run it from a windows console (encoding ='cp1252') this doesn't work. Is there a way to make this work without having to install a cygwin utf-8 console on each computer I want it to run from ? (NB: I don't need to output anything to console)

link|improve this question

50% accept rate
I'm not sure I understand. The Windows console can't handle Unicode. How do you expect to force it to handle it? – Tim Pietzcker Nov 26 '09 at 13:38
You are right, but since I don't need the Windows console, I'd like to know if I could run my programs outside the windows console and make them communicate together in utf-8. In effect, I don't need to output anything on the console. – Mapad Nov 26 '09 at 13:50
feedback

2 Answers

I wonder if this caveat, from the subprocess documentation, is relevant:

The only reason you would need to specify shell=True on Windows is where the command you wish to execute is actually built in to the shell, eg dir, copy. You don’t need shell=True to run a batch file, nor to run a console-based executable.

link|improve this answer
removing shell=True doesn't solve the issue – Mapad Nov 26 '09 at 13:53
feedback

Why do you need to force utf-8 pipes? Couldn't you do something like

import sys
current_encoding = sys.stdout.encoding
...
proc.stdin.write(u'ééé'.encode(current_encoding))

EDIT: I wrote this answer before you edited your question. I guess this is not what you're looking for, then, is it?

link|improve this answer
Thanks for your answer, but I want to force 'myexecutable.exe' to support utf-8 as standard input. I guess this is not possible – Mapad Nov 26 '09 at 14:10
feedback

Your Answer

 
or
required, but never shown

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