QUERY · ISSUE
Timeout support for websocket/webrepl
enhancement
Reported here: https://github.com/orgs/micropython/discussions/10444
Webrepl constructs a websocket with BLOCKING_WRITE set. There's no timeout, so prints can hang.
CANDIDATE · ISSUE
More fully featured websockets
enhancementextmod
The websocket and websocket_helper included with the ESP8266 is a bit weird to use and doesn't work as a client with most servers it seems. Would it be useful to include a more versatile implementation of websockets? I have a pure-python implementation of the client that looks like the websockets module that could (a) expand to include the server handshake, (b) support the webrepl, and (c) be ported to C if needed (not sure it is, it should express quite well in Python).