asyncwebsockets
asyncwebsockets copied to clipboard
Asynchronous client websockets
I was looking to see if there was any websockets library available for curio. I saw this one, but upon further digging it seems anyio 3 drops support for curio....
Running the example in the 'Basic Usage' section of the readme raises the following exception: ``` AttributeError: 'Websocket' object has no attribute 'next_event' ```
It took me a while to find the documentation (duck duck go struggled - had to use google), so it'd be helpful to have a link to it in the...
My use case involves handling Ping from a server. Currently I create the Pong payload and use internal attributes of websocket to send the reply. ```python # code smell as...