Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to pass a command to a python child process and then get the result. I would use exec, but I want to keep the child process open so that I don't have to open it every time I do a new command. Here is my code that currently does nothing:

var connect = require('connect'),
    io = require("socket.io").listen(1032),
    util = require("util"),
    child = require('child_process'),
    python = child.spawn("python");

var app = connect()
    .use(connect.static(__dirname + '/www'))
    .use(connect.logger('dev'))
    .listen(3000);

io.sockets.on('connection', function (socket) {
    console.log("Socket " + socket.id + " opened");

    python.stdout.on('data', function (data) {
        console.log("computed", data.toString("utf-8"));
        socket.emit("python", { result : data.toString("utf-8") });
    });

    socket.on('python', function (data) {
        console.log("received data" + data.cmd);

        python.stdin.resume();

        python.stdin.write(data.cmd);

        python.stdin.end();
    });
});
share|improve this question

1 Answer

up vote 0 down vote accepted

Are your python code contains any non-ascii characters?

This is work fine:

var
    spawn = require('child_process').spawn,
    python  = spawn('python');

python.stdin.write('print ("a")');
python.stdin.end();

python.stdout.on('data', function (data) {
        console.log(data.toString());
});

But if i changing letter "a" to russian letter "п" it stop working. Event not fired.

But the same way works perfect with node interpreter (with any utf8 characters).

var
    spawn = require('child_process').spawn,
    node  = spawn('node');

node.stdin.write('console.log("п");');
node.stdin.end();

node.stdout.on('data', function (data) {
        console.log(data.toString());
});

I think you need to ask about it in python section.

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.