This is my first time programming in Python and needs help with using websocket. I'm using the example from here as the example. The project I'm working requires that I send update to the server constantly with the connection open. I'd used the extension for firefox to connect to the websocket and knows that it works and I can send data to it. However, I'm using having problem with modifying the code in main to keep the connection open so that I can keep sending data. The on_open runs only once at connection open
import websocket
try:
import thread
except ImportError:
import _thread as thread
import time
def on_message(ws, message):
print(message)
def on_error(ws, error):
print(error)
def on_close(ws):
print("### closed ###")
def on_open(ws):
def run(*args):
for i in range(3):
time.sleep(1)
ws.send("Hello %d" % i)
time.sleep(1)
ws.close()
print("thread terminating...")
thread.start_new_thread(run, ())
if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("ws://echo.websocket.org/",
on_open = on_open,
on_message = on_message,
on_error = on_error,
on_close = on_close)
ws.run_forever()