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 72 WebSocket-for-Python issues
Sort by recently updated
recently updated
newest added

https://github.com/Lawouach/WebSocket-for-Python/blob/961c07ce16ce4eedc34ca1fdacd29442870feccc/ws4py/client/__init__.py#L214 adding server_hostname in ssl_options returns an argument type error we have to switch to SSLContext.wrap_socket or ssl.SSLSocket

Fixes install error on setuptools 58.5.0-58.5.2 ```shell python -m venv /tmp/testvenv && source /tmp/testvenv/bin/activate && pip install --no-cache -U pip setuptools wheel && pip install --no-cache ws4py==0.5.1 ``` Error logs...

The following warning appears transiently from time to time while working with websockets: ```python3 /usr/lib/python3/dist-packages/ws4py/websocket.py:230: ResourceWarning: unclosed self.sock = None ResourceWarning: Enable tracemalloc to get the object allocation traceback ```...

**Overview** I am trying to connect to a simple test server running on my local machine. I tried running the sample code in `example\echo_client.py`, but receive an error when the...

Hi, so I've been trying to code a file transfer program in python and it worked preety well on my pc (for now I only tested it with a txt...

hello guys i just bought a app from a website its a genrator accounts thing it gen accounts what ever when i start it i get this errore the app...

ws4py==0.5.1 CherryPy==18.6.0 Python 3.9.5 / Mac OS 11.4 (M1) Messages are received as expected when I use WS. If I switch to WSS, messages sent by the client/browser are not...

In `WebSocketBaseClient`, there is a hardcoded `Host` header. This pull request will let it use `Host` in the passed in extra headers, and if it is not exists in extra...

If a client closes a connection without providing a status code, the WebSocket server will respond to the client with a close frame that has an invalid status code of...