WebSocket-for-Python icon indicating copy to clipboard operation
WebSocket-for-Python copied to clipboard

WebSocket client and server library for Python 2 and 3 as well as PyPy (ws4py 0.5.1)

Results 75 WebSocket-for-Python issues
Sort by recently updated
recently updated
newest added

It'd be quite desirable that ws4py move on to a PEP3156 backend along its more traditional ones. This shouldn't not prevent regular CherryPy and gevent backends from existing indeed.

enhancement

Hello! Thanks for the library. I have been using this library to interface with the [GDAX websocket feed](https://docs.gdax.com/#websocket-feed). While upgrading to their new websocket protocol, the size of the subscription...

When Frame.parser is given more data than expected, the next frame's header + contents can end up as part of the payload, causing a UTF-8 validation error, or ends up...

I'm running Windows 2008 virtual machine in my desktop and try running following python code to get process details running in virtual windows server. however it end with connection refuse...

When using cherrypy and ssl, for reasons I don't understand, the sock.shutdown call throws this error occasionally(When the source is modified to print tracebacks instead of silently pass). ``` Traceback...

With the CherryPy server, if you repeatedly refresh a page with websockets, then iterate the gc module's list of objects for SSLSockets, you might find an extra object for every...

Hi! I have used the ws4py in Kodi and works great without SSL. But it crash with SSL, like this: > File "C:\Kodi\addons\script.motr\resources\lib\ws4py\client\__init__.py", line 214, in connect > self.sock =...

from ws4py.client.threadedclient import WebSocketClient from ws4py.exc import HandshakeError class DummyClient(WebSocketClient): def opened(self): self.send(input('请输入你想说的话:')) def closed(self, code, reason=None): #print("Closed down", code, reason) print("Closed down") def received_message(self, m): print (m) if __name__...

```import json from ws4py.client.threadedclient import WebSocketClient class Client(WebSocketClient): def opened(self): print("Open") def closed(self, code, reason=None): print("Closed down:", code, reason) def received_message(self, resp): data = json.loads(str(resp)) print(data) if __name__ == '__main__':...

Travel CI test failed. https://travis-ci.org/Lawouach/WebSocket-for-Python/builds/409454320?utm_source=github_status&utm_medium=notification This test passed python2.7 and python3.5, failed python3.3. The Travel CI test use tornado-5.1.1, but not supported python-3.3. (tornado-5 require python3.4+) In my opinion, install...