wsgi的Websocket,与werkzeug兼容

时间:2012-09-18 15:09:39

标签: websocket wsgi werkzeug

需要websocket wsgi库,它与werkzeug兼容。

3 个答案:

答案 0 :(得分:2)

Twisted提供了一个在Twisted Web下运行的WSGIResource。 Autobahn提供了一个在Twisted Web下运行的WebSocketResource。所以你可以将两者结合起来(我已经这样做了) - 如果你的意思是“websocket wsgi library”。

对于后者:https://github.com/tavendo/AutobahnPython/tree/master/examples/websocket/echo_site

免责声明:我是高速公路的主要作者,并为Tavendo工作。

答案 1 :(得分:0)

如果您刚入门,也可以选中gevent,尤其是gevent.socketio

http://gevent-socketio.readthedocs.org/en/latest/index.html

看看下面的教程,有点长,但它给你很好的方式。

http://blog.pythonisito.com/2012/07/realtime-web-chat-with-socketio-and.html

答案 2 :(得分:0)

我最近攻击了Werkzeug调试器,因此它可以很好地与gevent-socketio配合使用:

https://github.com/aldanor/SocketIO-Flask-Debug