-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjsws.py
More file actions
29 lines (22 loc) · 687 Bytes
/
Copy pathjsws.py
File metadata and controls
29 lines (22 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ws = create_connection("ws://daniele.virtues.fi:8080")
import websocket
import 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):
ws.send('{"action":"addHomeClient"}')
thread.start_new_thread(run, ())
if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("ws://echo.websocket.org/",
on_message = on_message,
on_error = on_error,
on_close = on_close)
ws.on_open = on_open
ws.run_forever()