Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Websocket library for python

Hi I need a websocket server in python which supports the protocol used in chrome 16(protocol version 13). Tornado and twisted are not working. Websockify works but i can't find any documentation for it. I need minimal setup means lesser imports. Please help me out here thanks in advance.

like image 692
Abhi Avatar asked Jan 02 '12 13:01

Abhi


1 Answers

  • Maybe you could take a look to pywebsocket, it claims to support protocol version 13 and is designed for :

    The pywebsocket project aims to provide a WebSocket standalone server and a WebSocket extension for Apache HTTP Server, mod_pywebsocket.

  • Autobahn is another implementation of websockets :

    Autobahn WebSockets for Python provides an implementation of the WebSockets protocol which can be used to build WebSockets clients and servers

  • ws4py : Websocket for python :

    Python library providing support for the WebSocket protocol defined in RFC 6455

like image 62
Cédric Julien Avatar answered Oct 01 '22 02:10

Cédric Julien