We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I like to use the uasyncio.websocket.server implementation but there is an import for websockets package defined. Where can I find this package?
The text was updated successfully, but these errors were encountered:
That is because server.py imports websocket instead of uwebsocket.
Fix: diff --git a/uasyncio.websocket.server/uasyncio/websocket/server.py b/uasyncio.websocket.server/uasyncio/websocket/server.py index 046b071..d721fb5 100644 --- a/uasyncio.websocket.server/uasyncio/websocket/server.py +++ b/uasyncio.websocket.server/uasyncio/websocket/server.py @@ -1,6 +1,6 @@ import uasyncio import uhashlib, ubinascii -import websocket +import uwebsocket as websocket
Sorry, something went wrong.
No branches or pull requests
I like to use the uasyncio.websocket.server implementation but there is an import for websockets package defined. Where can I find this package?
The text was updated successfully, but these errors were encountered: