0
試圖創建一個本地服務器來使用websocket
模塊在python中廣播消息。 (Mac OSX版)試圖創建一個本地服務器來廣播數據,但得到ConnectionRefusedError
from websocket import create_connection
url = 'ws://localhost:8888/'
ws = create_connection(url)
ws.send("helloworld")
ws.close()
看到這個錯誤:ConnectionRefusedError: [Errno 61] Connection refused