websockets icon indicating copy to clipboard operation
websockets copied to clipboard

Library for building WebSocket servers and clients in Python

Results 92 websockets issues
Sort by recently updated
recently updated
newest added

In the `__init__.py` the function `lazy_import` is used to import local modules. The problem with this is that typehints are not showing up which makes coding the project a lot...

documentation

By default, asyncio.loop.create_server should be setting SO_REUSEADDR (if reuse_address is not set, it will be set to True on Unix, which I'm on). But it seems not to be active....

question
documentation

I am using python `3.10.4` and `websockets` `10.3`. As part of my shutdown during a `SystemExit`, I call `close` followed by `wait_close` on my `WebSocketServer` object. There are active client...

bug

Hello, thanks for your work ;) I'm using websockets as a client and would like to keep an eye on latency. Your documentation says this: https://websockets.readthedocs.io/en/stable/topics/timeouts.html?highlight=timeout#latency-issues So clients should directly...

enhancement

Websocket Library adds default header a `Server: Python/3.10 websockets/10.3` when no server header is passed. There is no API as such to not add this header. Is it possible to...

enhancement

If I run it over the network it twise slower than sync client. But it faster if I run it on the same machine. Sync client has same throughput on...

documentation

Yesterday, while trying to type check my code using the `websockets` library, I was getting quite frustrated. All of the example code seemed to show `import websockets` and then accessing...

This is more of a question than an issue but I'm stuck with this and wanted to ask if you had to face similar situations already. Your library works well,...

Fix the test failures reported in #1175.

Hi !!!, i just started to use your module, everything is okey but when i try to close the server connection nothing happens, no error menssajes or output logs..., is...