使用 Tornado Web 访问 HTTP 流并向 Web 客户端提供流数据
我想使用 Tornado Web 服务器连接到 HTTP 流,例如 Twitter Stream 并提供服务通过 websocket 将流数据传输到 Web 客户端。
我两个都单独工作,一个 Tornado 实例使用 twitstream ,另一个使用 tornado.websocket.WebSocketHandler,但我希望将这两种服务合并为一个龙卷风实例。
I would like to use the Tornado web server to connect to a HTTP stream like the Twitter Stream and serve the streamed data via websockets to a web client.
I've got both working seperatly, one Tornado instance using twitstream and the other using tornado.websocket.WebSocketHandler, but i would like both services combined in one Tornado instance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您启动一个单独的线程并使用该线程将消息推送到 WebSocket 侦听器,这将解决您的问题
If you start a separate thread and use that thread to push messages to the WebSocket listeners, that will solve your problem