Node.js的python子脚本在完成时输出,而不是实时

时间:2014-09-01 14:17:21

标签: python node.js socket.io buffer stdout

我是node.js和socket.io的新手,我正在尝试编写一个基于python输出更新网页的小型服务器。

最终这将用于温度传感器,所以现在我有一个虚拟脚本,每隔几秒打印一次温度值:

Thermostat.py

import random, time
for x in range(10):
    print(str(random.randint(23,28))+" C")
    time.sleep(random.uniform(0.4,5))

这是服务器的缩减版本:

Index.js

var sys   = require('sys'), 
    spawn = require('child_process').spawn, 
    thermostat = spawn('python', ["thermostat.py"]),
    app = require('express')(),
    http = require('http').Server(app),
    io = require('socket.io')(http);

thermostat.stdout.on('data', function (output) { 
    var temp = String(output);
    console.log(temp);
    io.sockets.emit('temp-update', { data: temp});
}); 

app.get('/', function(req, res){
    res.sendFile(__dirname + '/index.html');
    });

最后是网页:

的index.html

<!doctype html>
<html>
    <head>
        <title>Live temperature</title>
        <link rel="stylesheet" type="text/css" href="styles.css">
    </head>
    <body>
    <div id="liveTemp">Loading...</div>

    <script src="http://code.jquery.com/jquery-1.11.1.js"></script>
    <script src="/socket.io/socket.io.js"></script>
    <script>
        var socket = io();
        socket.on('temp-update', function (msg) {
        $('#liveTemp').html(msg.data)
    });
    </script>

    </body>
</html>

问题是nodejs似乎一次收到所有的温度值,而不是以随机的间隔得到10个温度值,我得到脚本之后的一个长字符串中的所有值完成:

lots of temp values console output

1 个答案:

答案 0 :(得分:7)

您需要在python中禁用输出缓冲。这可以通过许多不同的方式完成,包括:

  • 设置PYTHONUNBUFFERED环境变量
  • -u开关传递给python可执行文件
  • 每次写入后调用sys.stdout.flush()(或在您的情况下为print())到stdout
  • 对于Python 3.3+,您可以将flush=true传递给print()print('Hello World!', flush=True)

此外,在您的节点代码中,(即使您在python代码中睡眠并且现在正在刷新标准输出),您实际上不应该假设您的数据中有output个数据。 thermostat.stdout的处理程序总是只有一行。