This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Description
Hi, thanks for this awesome package.
I've tried to connect to the websocket server using Python client this and the code I've used is this:
import websocket
ws = websocket.WebSocket()
ws.connect("ws://localhost", http_proxy_host="::", http_proxy_port=6001)
I just want to connect and see if the connection was successful or not via the dashboard provided by this package. However, the error I've got is:
socket.error: [Errno 61] Connection refused
Are there any other settings I've to add in order to establish the connection?