python from websocket import create_connection ws = create_connection("ws://localhost:8000/mywebsocket") ws.send("Hello, server!") result = ws.recv() print(f"Received: {result}") ws.close()