为什么这个http流不能按预期工作?

时间:2012-05-01 14:31:12

标签: gevent python-requests

我有一台服务器正在尝试将一些内容流式传输到客户端(这是Kenneth Reitz优秀的requests库) - (对于下面的代码,转向toastdriven.com)。请注意,在浏览器中,它按预期工作。

from gevent import monkey
monkey.patch_all()

import datetime
import time
from gevent import Greenlet
from gevent import pywsgi
from gevent import queue

import json

def current_time(body):
    current = start = datetime.datetime.now()
    end = start + datetime.timedelta(seconds=60)

    while current < end:
        current = datetime.datetime.now()
        message = json.dumps({'time': current.strftime("%Y-%m-%d %I:%M:%S")})
        body.put(message)
        time.sleep(1)

    body.put('</body></html>')
    body.put(StopIteration)

def handle(environ, start_response):
    start_response('200 OK', [('Content-Type', 'text/html')])
    body = queue.Queue()
    g = Greenlet.spawn(current_time, body)
    return body

server = pywsgi.WSGIServer(('127.0.0.1', 1234), handle)
print "Serving on http://127.0.0.1:1234..."
server.serve_forever()

和客户:

import sys
import requests
import json

my_config = {'verbose': sys.stdout}
r = requests.get('http://127.0.0.1:1234/', config=my_config)

for line in r.iter_lines():
    print json.loads(line)

我不明白为什么json行不会出现在终端(OSX)中。当我按ctrl-c时,响应被转储到屏幕上。

如果我这样做:

for line in r.iter_content()

我得到json,每行上的一个字符,按预期流式传输。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您的客户端可能正在缓冲的终端窗口中运行。每次打印后,尝试添加sys.stdout.flush()以刷新输出缓冲区。