Miscellaneous¶
Why do I get the error: module 'websockets' has no attribute '...'?¶
Often, this is because you created a script called websockets.py in your
current working directory. Then import websockets imports this module
instead of the websockets library.
Why is websockets slower than another library in my benchmark?¶
Not all libraries are as feature-complete as websockets. For a fair benchmark, you should disable features that the other library doesn’t provide. Typically, you must disable:
Compression: set
compression=NoneKeepalive: set
ping_interval=NoneUTF-8 decoding: send
bytesrather thanstr
If websockets is still slower than another Python library, please file a bug.
Are there onopen, onmessage, onerror, and onclose callbacks?¶
No, there aren’t.
websockets provides high-level, coroutine-based APIs. Compared to callbacks, coroutines make it easier to manage control flow in concurrent code.
If you prefer callback-based APIs, you should use another library.